助けが必要です。Google API Distance Matrix と Python 3.5 を使用して、別のポイントから最も近いポイントを見つけています。以下の辞書のリストがあり、次のような出力が必要です。
「出発地 1: 最も近い目的地は目的地 1 (1504 m) です」
「出発地 2: 最も近い目的地は目的地 1 (2703 m) です」
後で..
どうすればこの出力を取得できますか?
response=[{'rows': [{'elements': [{'distance': {'text': '1.5 km', 'value': 1504},\
'duration': {'text': '4 mins', 'value': 247}, 'status': 'OK'}]}],\
'origin_addresses': ['Origin 1'], 'destination_addresses': ['Destination 1'], 'status': 'OK'},\
{'rows': [{'elements': [{'distance': {'text': '2.7 km', 'value': 2703},\
'duration': {'text': '7 mins', 'value': 430}, 'status': 'OK'}]}],\
'origin_addresses': ['Origin 2'], 'destination_addresses': ['Destination 1'], 'status': 'OK'},\
{'rows': [{'elements': [{'distance': {'text': '4.8 km', 'value': 4753},\
'duration': {'text': '10 mins', 'value': 586}, 'status': 'OK'}]}],\
'origin_addresses': ['Origin 1'], 'destination_addresses': ['Destination 2'], 'status': 'OK'},\
{'rows': [{'elements': [{'distance': {'text': '6.0 km', 'value': 5952},\
'duration': {'text': '13 mins', 'value': 769}, 'status': 'OK'}]}],\
'origin_addresses': ['Origin 2'], 'destination_addresses': ['Destination 2'], 'status': 'OK'}]\