我制作此Choroepth贴图时遇到问题。该区域是正确的,我的数字正确,但是它用相同的颜色填充了我的区域。我的假设是我弄错了key_on。我的代码基于本教程:https://blog.dominodatalab.com/creating-interactive-crime-maps-with-folium/ 代码:
[district_geo = r'C:/1/sfpddists.geojson'
SF = (37.783087441092704, -122.46120747577555)
crimedata2 = pd.DataFrame(df\['Police District'\].value_counts().astype(float))
crimedata2.to_json('crimeagg.json')
crimedata2 = crimedata2.reset_index()
crimedata2.columns = \['District', 'Number'\]
m = folium.Map(location=SF, zoom_start=12)
folium.GeoJson(
district_geo,
name='geojson'
).add_to(m)
m.choropleth(geo_data=r'C:/1/sfpddists.geojson', data=crimedata2,
columns=\['District', 'Number'\],
key_on=None,
fill_color = 'PuBu',
fill_opacity = 0.7,
line_opacity = 0.2,
highlight=True,
legend_name = 'Number of incidents per district')
m][1]
答案 0 :(得分:0)
key_on
参数需要在GeoJSON数据中链接到数字数据的字段名称。在您的代码段中,它设置为None
,因此它不起作用。在本教程中,他们使用key_on = 'feature.properties.DISTRICT'
。
这意味着在GeoJSON数据中,每个要素都将具有一个名为“ DISTRICT”的属性,我认为其中将包含一个地区的名称。然后,在您的数据框中,有一个名为“ District”的列,其中的字符串与GeoJSON“ DISTRICT”字段中的值匹配。如果存在匹配项,“数字”列中的值将用于确定颜色。