Issue
I have a dataframe with lat/lon coordinates
latlon
(51.249443914705175, -0.13878830247011467)
(51.249443914705175, -0.13878830247011467)
(51.249768239976866, -2.8610415615063034)
...
I would like to plot these on to a Folium map but I'm not sure of how to iterate through each of the rows.
any help would be appreciated, Thanks in advance!
Solution
This can solve your issue
import folium
mapit = None
latlon = [ (51.249443914705175, -0.13878830247011467), (51.249443914705175, -0.13878830247011467), (51.249768239976866, -2.8610415615063034)]
for coord in latlon:
mapit = folium.Map( location=[ coord[0], coord[1] ] )
mapit.save( 'map.html')
Edit (using marker)
import folium
latlon = [ (51.249443914705175, -0.13878830247011467), (51.249443914705175, -0.13878830247011467), (51.249768239976866, -2.8610415615063034)]
mapit = folium.Map( location=[52.667989, -1.464582], zoom_start=6 )
for coord in latlon:
folium.Marker( location=[ coord[0], coord[1] ], fill_color='#43d9de', radius=8 ).add_to( mapit )
mapit.save( 'map.html')
It'd be great if you use this reference: https://github.com/python-visualization/folium
Answered By - stuartnox
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.