gpt4 book ai didi

python - 在 folium map 上绘制数据框中的纬度经度点 - iPython

转载 作者:太空狗 更新时间:2023-10-30 00:29:16 25 4
gpt4 key购买 nike

我有一个带有纬度/经度坐标的数据框

latlon
(51.249443914705175, -0.13878830247011467)
(51.249443914705175, -0.13878830247011467)
(51.249768239976866, -2.8610415615063034)
...

我想将这些绘制到 Folium map 上,但我不确定如何遍历每一行。

任何帮助将不胜感激,提前致谢!

最佳答案

下面是我是如何做到的,我实际上是在尝试整理一个示例笔记本(添加颜色、弹出窗口等)。我仍在解决问题,但您可以在这里找到它:

https://github.com/collinreinking/longitude_latitude_dot_plots_in_python_with_folium

import folium
import pandas as pd

#create a map
this_map = folium.Map(prefer_canvas=True)

def plotDot(point):
'''input: series that contains a numeric named latitude and a numeric named longitude
this function creates a CircleMarker and adds it to your this_map'''
folium.CircleMarker(location=[point.latitude, point.longitude],
radius=2,
weight=5).add_to(this_map)

#use df.apply(,axis=1) to "iterate" through every row in your dataframe
data.apply(plotDot, axis = 1)


#Set the zoom to the maximum possible
this_map.fit_bounds(this_map.get_bounds())

#Save the map to an HTML file
this_map.save('html_map_output/simple_dot_plot.html')

this_map

关于python - 在 folium map 上绘制数据框中的纬度经度点 - iPython,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39401729/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com