在jupyter中将geojson文件下载到folium中
downloading geojson file into folium in jupyter
我想要一张欧洲地图(作为 json 文件,这样我就可以使用 geojson)将其作为图层放在 Folium 地图上,这样我就可以将我的数据集嵌入到它显示欧洲哪个国家的酒量最高。我在从 GitHub 获取 json 文件以在 jyputer
中打开时遇到问题
这是我目前所拥有的 and i have the file of europe country in geojson from github https://github.com/Leaflet/Leaflet.VectorGrid/blob/master/docs/eu-countries.geo.json
您必须下载该文件。现在您将能够添加图层:
# geo_path is the path to your geojson file
map1.choropleth(geo_path=geo_path)
display(map1)
我想要一张欧洲地图(作为 json 文件,这样我就可以使用 geojson)将其作为图层放在 Folium 地图上,这样我就可以将我的数据集嵌入到它显示欧洲哪个国家的酒量最高。我在从 GitHub 获取 json 文件以在 jyputer
中打开时遇到问题这是我目前所拥有的
您必须下载该文件。现在您将能够添加图层:
# geo_path is the path to your geojson file
map1.choropleth(geo_path=geo_path)
display(map1)