在 Folium 中突出显示一个特定国家
Highlight one specific country in Folium
我有一张folium绘制的地图如下:
m = folium.Map(location = [51.1657,10.4515], zoom_start=6, min_zoom = 5, max_zoom = 7)
如何摆脱邻国而只保留德国?
或者邻国变得褪色、模糊、苍白或类似的东西。
只要您有包含感兴趣国家/地区的几何(坐标)的 [=20=] 文件,您就可以添加 GeoJson
图层:
import folium
import json
with open('datasets/world-countries.json') as handle:
country_geo = json.loads(handle.read())
for i in country_geo['features']:
if i['properties']['name'] == 'Germany':
country = i
break
m = folium.Map(location = [51.1657,10.4515],
zoom_start=6,
min_zoom = 5,
max_zoom = 7)
folium.GeoJson(country,
name='germany').add_to(m)
folium.LayerControl().add_to(m)
m
你得到:
我有一张folium绘制的地图如下:
m = folium.Map(location = [51.1657,10.4515], zoom_start=6, min_zoom = 5, max_zoom = 7)
如何摆脱邻国而只保留德国? 或者邻国变得褪色、模糊、苍白或类似的东西。
只要您有包含感兴趣国家/地区的几何(坐标)的 [=20=] 文件,您就可以添加 GeoJson
图层:
import folium
import json
with open('datasets/world-countries.json') as handle:
country_geo = json.loads(handle.read())
for i in country_geo['features']:
if i['properties']['name'] == 'Germany':
country = i
break
m = folium.Map(location = [51.1657,10.4515],
zoom_start=6,
min_zoom = 5,
max_zoom = 7)
folium.GeoJson(country,
name='germany').add_to(m)
folium.LayerControl().add_to(m)
m
你得到: