地图json获取:
DATAV.GeoAtlas
http://datav.aliyun.com/tools/atlas/#&lat=30.332329214580188&lng=106.72278672066881&zoom=3.5
pythonimport requests
from geopandas import GeoDataFrame
from shapely.geometry import shape
import matplotlib.pyplot as plt
def get_bound_and_save_json():
url = "https://geo.datav.aliyun.com/areas_v2/bound/100000.json"
r = requests.get(url)
return r.json()['features'][0]['geometry']
b = shape(get_bound_and_save_json())
geodf = GeoDataFrame([{'geometry': b}])
geodf.plot()
plt.title("China")
plt.xlabel('lon')
plt.ylabel('lat')
plt.grid()
plt.show()
本文作者:Dong
本文链接:
版权声明:本博客所有文章除特别声明外,均采用 CC BY-NC。本作品采用《知识共享署名-非商业性使用 4.0 国际许可协议》进行许可。您可以在非商业用途下自由转载和修改,但必须注明出处并提供原作者链接。 许可协议。转载请注明出处!