Hello Colab - Mapping and Data Visualization with Python

Поділитися
Вставка
  • Опубліковано 16 жов 2024
  • This video is part of our Mapping and Data Visualization with Python course. Access the full course material at courses.spatia...
    Access the Google Colab Notebook shown in the video at colab.research...
    Note: Certification and Support are only available for participants in our paid instructor-led classes.

КОМЕНТАРІ • 5

  • @maryla4GIS
    @maryla4GIS 15 годин тому +1

    Very good introduction.
    I would like to give some tips for users:
    1. If you want to see more columns in a dataframe, you can add a line of code: *pd.set_option('display.max_columns', 50)* - as a second parameter write a number of visible columns.
    2. If you encounter an error when trying to download data using requests library due to ssl certificates, you can write another parameter to the get method *verify=False*, but be careful with it in your production code.

  • @muhmmmadsulaiman946
    @muhmmmadsulaiman946 День тому

    Keep it up sir need complete playlist about this course
    Or sir also makes vedio related to webGIS through python

    • @SpatialThoughts
      @SpatialThoughts  День тому

      WE cover making webgis in this course, but to do that, you need to learn the basics first. So I suggest you keep following the videos to learn about matplotlib, leafmap, folium and in the last section, we will cover streamlit for making app like this interactive-mapping-dashboard.streamlit.app/ using just Python. The videos are released one by one everyday and the full playlist will be available at the end of the month.

  • @Suchitra-18h
    @Suchitra-18h День тому +1

    Thank you for starting this course. When I tried to download the data, it downloaded the file "ne_10m_populated_places.zip". But I am facing issues to open the data inside the zipfile. I used the code shown in this tutorial, but it throws an error saying:" BadZipFile: File is not a zip file". How can I solve it..

    • @SpatialThoughts
      @SpatialThoughts  21 годину тому

      You need to download the 'capitals.gpkg' from the output folder. This is a GeoPackage file that can be viewed in QGIS.
      The input data "ne_10m_populated_places.zip" is used in the notebook by GeoPandas as a zip file, you don't need to unzip it. If that cell gave you an error, go to 'Runtime --> Disconnect and delete runtime' and run the notebook again.