I’ve used Plotly for previous projects but haven’t tried Folium yet but I will be checking this out now. Easy functions to create a dynamic map and clustering with a single line is a great bonus. The only real task may be formatting data which is still not bad. Thank you and hope you had a nice holiday!
You provide really good clear explanations that I learn from every time I watch your videos. So glad I stumbled across them one day and started watching. Thank you.
Is there a way to add a dropdown or an option in the produced map to just select a few stations and only display them? I am doing a similar project but I need to be able to filter the popups as there are too many of them to be shown together.
Hola, good... but, if you need update information in popup. popup=folium.Popup(folium.IFrame('Site_name: ' + str(row.site_name) + '' + 'Azimuth: ' + str(row.azimuth) + '' + 'Height: ' + str(row.height) + '' + 'Bands: ' + str(row.band)), min_width=400, max_width=1000) and height it takes different values and corresponds to different heights and bands. how to output such information for a single marker?
Hi I keep getting this error while trying to perform this code: KeyError Traceback (most recent call last) Input In [46], in () 2 reader = csv.DictReader(csvfile) 3 for row in reader: ----> 4 records.append({key: row[key] for key in keys}) Input In [46], in (.0) 2 reader = csv.DictReader(csvfile) 3 for row in reader: ----> 4 records.append({key: row[key] for key in keys}) KeyError: 'Station Name'
I’ve used Plotly for previous projects but haven’t tried Folium yet but I will be checking this out now. Easy functions to create a dynamic map and clustering with a single line is a great bonus. The only real task may be formatting data which is still not bad. Thank you and hope you had a nice holiday!
Thanks very much, hope you had a good holiday too!
Great content! Direct, concise, clear! Kudos!
Thanks very much for watching!
You provide really good clear explanations that I learn from every time I watch your videos. So glad I stumbled across them one day and started watching.
Thank you.
Hey - thank you very much for that, it's great to hear it! I'm glad the videos have been useful for you.
As usual Great content!! Thanks a lot
Many thanks!
Super awsome Thanks for the tutorial
@@abdolkarimmehrparvar6583 thank you for watching!
Thank you! Really helpful.
Thanks! Glad it helped.
very cool - thanks dude
Thanks!
Very nicke, please more linke that!
Thank you!
Is there a way to add a dropdown or an option in the produced map to just select a few stations and only display them? I am doing a similar project but I need to be able to filter the popups as there are too many of them to be shown together.
Thanks
Hello! I was wondering if its possible to extract latitude and longtitude using googles CID and then plot those with folium
nice. thnx.
you're welcome!
How can we plot live marker's coordinates? in my case the csv file updates the lat and lon every 1 minute
Can we add or show statistics on a specific area?
You can certainly group data within certain boundaries to calculate area-specific statistics, yes!
Like it python.!!!
Hola, good... but, if you need update information in popup.
popup=folium.Popup(folium.IFrame('Site_name: ' + str(row.site_name) + '' +
'Azimuth: ' + str(row.azimuth) + '' +
'Height: ' + str(row.height) + '' +
'Bands: ' + str(row.band)), min_width=400, max_width=1000)
and height it takes different values and corresponds to different heights and bands.
how to output such information for a single marker?
Hi I keep getting this error while trying to perform this code:
KeyError Traceback (most recent call last)
Input In [46], in ()
2 reader = csv.DictReader(csvfile)
3 for row in reader:
----> 4 records.append({key: row[key] for key in keys})
Input In [46], in (.0)
2 reader = csv.DictReader(csvfile)
3 for row in reader:
----> 4 records.append({key: row[key] for key in keys})
KeyError: 'Station Name'
when i add tiles in folium maps i am getting "these basemap maps will no longer available from 31 oct 2023 in python"
Hello nice video and excelent explanation.
How can i get in contact you you?
Thank you!
There's a contact form here: bugbytes.io/contact/
Okay, how do we add the Station Name as the popup when using FastMarkerCluster?
Ah, that's a good question. I'll need to look into it though.
@@bugbytes3923 Seems like there is a callback function available to FastMarkerCluster