Lab 6#
Overview#
In this lab, you will extend your Python package by adding mapping functionalities. This package will be used throughout the rest of the semester, with new features added each week.
For this lab, you will:
Implement an interactive
Map
class using bothipyleaflet
andfolium
.Add essential methods for basemaps, layers, and controls.
Document the package with proper docstrings and a Jupyter Notebook tutorial.
Create a new release on GitHub Use GitHub Actions to publish your package on PyPI.
Task 1: Implement the Map Class (ipyleaflet)#
Enhance your package by adding a Map
class that inherits from ipyleaflet.Map
and provides the following functionalities:
Basemap Support: Implement an
add_basemap
method that allows users to add a basemap by specifying its name as a string (e.g.,"OpenStreetMap"
,"Esri.WorldImagery"
,"OpenTopoMap"
).Layer Control: Implement an
add_layer_control
method that adds a layer control widget for managing map layers.Vector Data Support: Implement an
add_vector
method to add vector data in any format supported byGeoPandas
(e.g., GeoJSON, Shapefile).
Ensure all methods include docstrings explaining their purpose, parameters, and return values.
Task 2: Implement the Map Class (folium)#
Repeat Task 1 but using folium.Map
instead of ipyleaflet.Map
. Ensure that the folium
-based map class includes similar methods (add_basemap
, add_layer_control
, and add_vector
).
Task 3: Documentation and Notebook Example#
Add a Jupyter Notebook to the package that demonstrates the functionalities of your
Map
class for bothipyleaflet
andfolium
.Ensure the notebook is included in the package documentation and accessible via an Open in Colab badge.
Task 4: Package Deployment and Release#
Bump your package version using bump-my-version.
Automate the package deployment process to PyPI.
Create a new release on GitHub with automatic deployment to PyPI.
Submission Requirements#
Submit the following:
Link to the package’s main module documentation (e.g., https://geodev.gishub.org/geodev).
Link to the package’s folium module documentation (e.g., https://geodev.gishub.org/foliumap`).
Link to the Jupyter Notebook example demonstrating the functionality (e.g.,https://geodev.gishub.org/examples/map/).
Link to the PyPI release of the package (e.g., giswqs/geodev).