pandas - 如何将数据从两列传递到使用 folium 制作的等值线图标记的弹出标签?

标签 pandas markers folium

enter link description here

我希望每个弹出窗口都有柱的名称和 WB100 列表中的位置,列:柱,wb_pos。这是我的代码,由于某些原因每个标记的弹出窗口都相同 =“东京”请参阅随附的数据框和输出。

请看下面的部分数据框:

data = {'Bar': {0: 'Connaught Bar', 1: 'Dante', 2: 'The Clumsies', 3: 'Atlas', 4: 'Tayēr + Elementary'}, 'City': {0: 'London', 1: 'New York', 2: 'Athens', 3: 'Singapore', 4: 'London'}, 'Country': {0: 'UK', 1: 'USA', 2: 'Greece', 3: 'Singapore', 4: 'UK'}, 'Delivery': {0: 0, 1: 1, 2: 1, 3: 1, 4: 1}, 'Latitude': {0: 51.507351, 1: 40.7128, 2: 37.9838, 3: 1.3521, 4: 23.7275}, 'Longitude': {0: 0.1278, 1: 74.006, 2: 23.7275, 3: 103.8198, 4: 0.1278}, 'Region': {0: 'Europe', 1: 'North America', 2: 'Europe', 3: 'Asia', 4: 'Europe'}, 'Shop': {0: 1, 1: 1, 2: 0, 3: 1, 4: 1}, 'Takeway': {0: 0, 1: 1, 2: 0, 3: 0, 4: 1}, 'Virtual Events': {0: 0, 1: 0, 2: 0, 3: 0, 4: 0}, 'first_submission': {0: 0, 1: 0, 2: 0, 3: 0, 4: 0}, 'wb_pos': {0: 1, 1: 2, 2: 3, 3: 4, 4: 5}}
dfcv = pd.DataFrame(data)
import pandas as pd
import folium 
import branca
from folium.plugins import MarkerCluster

world_geo = r'world_countries.json' # geojson file

world_map=folium.Map(location=[0, 0], zoom_start=3, width=1100, height=800, tiles='cartodb positron', max_bounds=True)
world_map.choropleth( 
    name='choropleth WB100', 
    geo_data=world_geo, 
    data=dfcv, 
    columns=['Country', 'Total'], 
    key_on='feature.properties.name', 
    nan_fill_color='white', 
    nan_fill_opacity=0.1, 
    fill_color='Blues', 
    fill_opacity=0.7, 
    line_opacity=0.2,
legend_name='Worlds Best 100 Bars'
)

world_map

mapa = folium.map.FeatureGroup()
# loop through the WB100 and add each Bar location, name and WB100 position
for lat, lng, bar, pos in zip(df.Latitude, 
                          df.Longitude, 
                          df.Bar,
                          df.wb_pos):
    mapa.add_child(
        folium.CircleMarker(
            [lat,lng],
            label='{}, {}'.format(bar, pos),
            popup=label,
            radius=5, # define how big you want the circle markers to be
            color='yellow',
            fill=True,
            fill_color='blue',
            fill_opacity=0.6
        ).add_to(mapa)
    )
world_map.add_child(mapa)

This is my output

最佳答案

您的代码中存在一些错误,这是一个基于输入数据的“wb_pos”字段的工作示例,因为您实际上没有任何 Total 字段。

import pandas as pd

df = pd.DataFrame(df) # Needed to convert your dict to an actual DataFrame

world_geo = 'https://raw.githubusercontent.com/jdamiani27/Data-Visualization-and-D3/master/lesson4/world_countries.json' # geojson file

world_map = folium.Map(
    location = [0, 0],
    zoom_start = 3,
    width = 1100,
    height = 800,
    tiles = 'cartodb positron',
    max_bounds = True
)
world_map.choropleth( 
    name = 'choropleth WB100', 
    geo_data = world_geo, 
    data = df, # Replaced dfcv because it was not defined in your input data
    columns = ['Country', 'wb_pos'], # Replaced the 'Total' by another random column, here 'wb_pos'
    key_on = 'feature.properties.name',  
    nan_fill_color = 'white', 
    nan_fill_opacity = 0.1, 
    fill_color = 'Blues', 
    fill_opacity = 0.7, 
    line_opacity = 0.2,
    legend_name = 'Worlds Best 100 Bars'
)

world_map

mapa = folium.map.FeatureGroup()
# loop through the WB100 and add each Bar location, name and WB100 position
for lat, lng, bar, pos in zip(
    df.Latitude, 
    df.Longitude, 
    df.Bar,
    df.wb_pos):
    
    label= '{}, {}'.format(bar, pos) # Define label here to reuse after
    
    mapa.add_child(
        folium.CircleMarker(
            [lat,lng],
            label = label,
            popup = label,
            radius = 5, # define how big you want the circle markers to be
            color = 'yellow',
            fill = True,
            fill_color = 'blue',
            fill_opacity = 0.6
        ).add_to(mapa)
    )

# Build a CircleMarker for each row based on the lat long of the record
df.apply(lambda row: folium.CircleMarker(
    location=[row["Latitude"],
    row["Longitude"]],
    radius=10,).add_to(world_map), axis=1)

world_map.add_child(mapa)

我还必须修复你的 label ,它引发了一个错误,因为当它们被传递给一个函数时你不能在同一个参数列表中重用一个参数,你需要在 之前定义它.

这是相应的结果:

Resulting map 数字将在“总计”字段可用时固定。

请同时注意 https://gis.stackexchange.com/ 的存在对于所有具有地理性质的问题。

关于pandas - 如何将数据从两列传递到使用 folium 制作的等值线图标记的弹出标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65999015/

相关文章:

python - 如何将多个 .xls 文件与 python 中的超链接合并?

python - 有条件地将数据分为训练和测试(Pandas)

css - 如何设置<details>和<summary>的样式?

java - 了解 Eclipse 编辑器中的注释

python - 如何在 folium.circle map python 中的每个圆上添加标签

pandas - 在seabornfacetGrid上绘制艺术家

pandas - '<' not supported between instances of ' 日期时间.日期' 和 'str'

javascript - 在 Google map Api Javascript 中创建自己的标记

python - 在 map 上可视化饼图

python - Folium:如何更改半圆插件中的填充颜色?