Mapping with Python & Folium - Creating Maps from Raw CSV/JSON Data

Поділитися
Вставка
  • Опубліковано 11 гру 2024

КОМЕНТАРІ • 34

  • @Chris_Woodruff
    @Chris_Woodruff Рік тому +3

    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!

    • @bugbytes3923
      @bugbytes3923  Рік тому

      Thanks very much, hope you had a good holiday too!

  • @ricoflores428
    @ricoflores428 Рік тому +4

    Great content! Direct, concise, clear! Kudos!

  • @bgrantcooper
    @bgrantcooper Рік тому

    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.

    • @bugbytes3923
      @bugbytes3923  Рік тому

      Hey - thank you very much for that, it's great to hear it! I'm glad the videos have been useful for you.

  • @arunima2916
    @arunima2916 Рік тому +2

    As usual Great content!! Thanks a lot

  • @abdolkarimmehrparvar6583
    @abdolkarimmehrparvar6583 2 місяці тому +1

    Super awsome Thanks for the tutorial

    • @bugbytes3923
      @bugbytes3923  2 місяці тому

      @@abdolkarimmehrparvar6583 thank you for watching!

  • @SadafMahmoudi
    @SadafMahmoudi 7 місяців тому +1

    Thank you! Really helpful.

  • @robmonkriedlinger
    @robmonkriedlinger Рік тому +1

    very cool - thanks dude

  • @jankaatz6631
    @jankaatz6631 Рік тому +1

    Very nicke, please more linke that!

  • @saugat_lm10
    @saugat_lm10 Рік тому +1

    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.

  • @alifadl386
    @alifadl386 5 місяців тому

    Thanks

  • @seththunder2077
    @seththunder2077 2 місяці тому

    Hello! I was wondering if its possible to extract latitude and longtitude using googles CID and then plot those with folium

  • @vivaldi-qo7xj
    @vivaldi-qo7xj Рік тому +1

    nice. thnx.

  • @tet1patsstudent670
    @tet1patsstudent670 Рік тому

    How can we plot live marker's coordinates? in my case the csv file updates the lat and lon every 1 minute

  • @BlueSkyGoldSun
    @BlueSkyGoldSun Рік тому +1

    Can we add or show statistics on a specific area?

    • @bugbytes3923
      @bugbytes3923  Рік тому +1

      You can certainly group data within certain boundaries to calculate area-specific statistics, yes!

  • @oliveselow-bw3py
    @oliveselow-bw3py Рік тому

    Like it python.!!!

  • @ilyaafanasev3083
    @ilyaafanasev3083 Рік тому

    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?

  • @sphelelentilane3166
    @sphelelentilane3166 Рік тому

    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'

  • @sourab_garg
    @sourab_garg Рік тому

    when i add tiles in folium maps i am getting "these basemap maps will no longer available from 31 oct 2023 in python"

  • @PKX1167
    @PKX1167 Рік тому

    Hello nice video and excelent explanation.
    How can i get in contact you you?

    • @bugbytes3923
      @bugbytes3923  Рік тому

      Thank you!
      There's a contact form here: bugbytes.io/contact/

  • @kavustock
    @kavustock Рік тому

    Okay, how do we add the Station Name as the popup when using FastMarkerCluster?

    • @bugbytes3923
      @bugbytes3923  Рік тому

      Ah, that's a good question. I'll need to look into it though.

    • @kavustock
      @kavustock Рік тому

      @@bugbytes3923 Seems like there is a callback function available to FastMarkerCluster