如何从python中获取值json的位置?

如何在Python中使用文件json中lat / lng的Reverse Geocoding。 之后,打印文件json的位置名称。

import json

Json_data=[{"lat":"3.160","lng":"101.710"},
           {"lat":"2.350","lng":"102.030"},
           {"lat":"6.120","lng":"102.130"}]

#Json_data=[{"lat":3.160,"lng":101.710},
#           {"lat":2.350,"lng":102.030},
#           {"lat":6.120,"lng":102.130}]

def revrseGeocode(latlng):
    result={}
    url ='https://maps.googleapis.com/maps/api/geocode/json?latlng={0} &key={1}'
    apikey='AIzaSyC6gSdW2pWz9QgaBY2ZlZcYRTKva9-x74w'
    request= url.format(latlng,apikey)
    data= json.loads(request)
    if len(data['results'])>0:
        result=data['results'][0]
        return result

for i,row in Json_data:
    Json_data[i]= revrseGeocode(Json_data[1][i]+','+Json_data[1][i])

for i,row in Json_data:
    if 'address_components' in row['geocode_data']:
        for component in row['geocode_data']['address_components']:
            if 'country' in component['types']:
                Json_data['country'][i]= component['long_name']
        for component in row['geocode_data']['address_components']:
            if 'locality' in component['types']:
                Json_data['city'][i]=component['long_name']
                break
            elif 'postal_town' in component['types']:
                Json_data['city'][i] = component['long_name']
                break
            elif 'administrative_area_level_2' in component['types']:
                Json_data['city'][i]=component['long_name']
                break
            elif 'administrative_area_level_1' in component['types']:
                Json_data['city'][i]= component['long_name']
                break

#错误:

在Json_data [i] = revrseGeocode(Json_data [1] [i] +','+ Json_data [1] [i])中的文件“/home/magic/Desktop/python/test1.py”,第22行

文件“/home/magic/Desktop/python/test1.py”,第16行,在revrseGeocode data = json.loads(request)

文件“/usr/lib/python2.7/json/ 初始化的.py”,线路338,在负荷返回_default_decoder.decode(S)

文件“/usr/lib/python2.7/json/decoder.py”,第366行,在decode obj中,end = self.raw_decode(s,idx = _w(s,0).end())

文件“/usr/lib/python2.7/json/decoder.py”,第384行,在raw_decode中raise ValueError(“没有JSON对象可以被解码”)ValueError:没有JSON对象可以被解码


首先你的Json_data是一个列表。 您可以通过Jason_data [index]访问它,其中索引可以是0到len(Jason_data)之间的任何数字。

您正尝试以字典的形式访问它。 因此错误。

链接地址: http://www.djcxy.com/p/48679.html

上一篇: How to get location from get value json in python?

下一篇: Python parsing JSON with escaped double quotes