没有返回Choropleth映射...
我的数据集中的代码中的“ Fylker_with_count_rest”只是https://www.eriksmistad.no/upload/fylker.json的下载 除了下载之后,我在其中添加了一个整数列(Nummer_Restauranter)。
我想做的是制作一个Choropleth地图,其中显示每个Fylker的Nummer_Restauranter。
我使用的代码是
map_Oslo_center = folium.Map(location=[59.9139, 10.7522],
zoom_start = 11)
map_Oslo_center.choropleth(
geo_data=Fylker_with_count_rest,
name='geometry',
data=Fylker_with_count_rest,
columns=['fylkesnummer', 'Nummer_Restauranter'],
key_on='feature.properties.navn',
fill_color='Reds',
fill_opacity=0.5,
line_opacity=1.0,
legend_name='Number of Restuarnt per Fylker'
)
folium.LayerControl().add_to(map_Oslo_center)
display(map_Oslo_center)
我所得到的只是一张以奥斯陆为中心的地图,上面有图例,但没有曲折。而且没有错误消息。
任何人都可以帮忙吗?
谢谢!