作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试使用 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 :
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)
关于python - 如何在大叶上使用基于颜色的 PolyLine,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57903223/
我是一名优秀的程序员,十分优秀!