如何在叶子上使用基于颜色的多段线

2022-03-02 00:00:00 python data-visualization folium

问题描述

我尝试使用Folium根据速度(就像Strava这样的应用程序一样)使用不同颜色的比赛路径。

我看到您可以根据数据更改标记的颜色,但我不能用PolyLines调换它。

以下是我的可视化代码:

points = []
for track in gpx.tracks:
    for segment in track.segments:        
        for point in segment.points:
            points.append(tuple([point.latitude, point.longitude]))

ave_lat = sum(p[0] for p in points)/len(points)
ave_lon = sum(p[1] for p in points)/len(points)

my_map = folium.Map(location=[ave_lat, ave_lon], zoom_start=13)
folium.PolyLine(points, color="red", weight=2.5, opacity=1).add_to(my_map)

我还有一个包含经度、纬度和速度的数据帧,我希望线条根据速度更改颜色。


解决方案

叶有颜色线:

folium.ColorLine(
        positions = segments, # tuple of coordinates 
        colors = speed, # map each segment with the speed 
        colormap =  colormap, # map each value with a color 
        ).add_to(base)

相关文章