У меня есть файл geojson, показывающий границы полиции Великобритании
В моем информационном блоке перечислены эти полицейские силы - я проверил, что они имеют одинаковый формат (т. Е. Написание и формулировка)
Когда я загружаю свою карту фолиевого хороплета, она не считывает информацию df на карту
m1 = folium.Map(location=[50, 3], zoom_start=6.5, tiles='Mapbox Bright')
m1.choropleth(
geo_data=forces_json, #this is reading the geographical data from the json file
data=dfForces1, #this is reading my df
columns=['Police force sent NRM referral for Crime Recording', 'Total'], #which columns do I want it to read
key_on='feature.properties.objectid',
fill_color='YlGn',
fill_opacity=0.8,
line_opacity=0.3,
nan_fill_color = 'white',
legend_name='Number of NRM Referrals',
highlight=True)
так выглядит файл geojson