https://github.com/undp-data/geo-visualization
A repo to hold leafmap based visualization notebooks
https://github.com/undp-data/geo-visualization
Last synced: 12 months ago
JSON representation
A repo to hold leafmap based visualization notebooks
- Host: GitHub
- URL: https://github.com/undp-data/geo-visualization
- Owner: UNDP-Data
- License: gpl-3.0
- Created: 2024-10-30T10:07:58.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-06T11:53:40.000Z (over 1 year ago)
- Last Synced: 2025-03-05T16:39:49.427Z (over 1 year ago)
- Language: Jupyter Notebook
- Size: 238 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Geospatial visualization
This repository contains several notebooks demonstrating geospatial visualziation using [leafmap](https://leafmap.org) a Python package for geospatial analysis and interactive mapping in a Jupyter environment.
## Data
The main data source is [GeoHub](https://geohub.data.undp.org/data).
## Installation
We recommend using a virtual environment because **leafmap** feature a large number of dependencies.
### using pipenv
Detailed instruction on how to install *pipenv* are available at [https://pipenv.pypa.io/en/latest/installation.html](https://pipenv.pypa.io/en/latest/installation.html)
1. clone the repository and change into the cretae folder
```shell
git clone https://github.com/UNDP-Data/geo-visualization.git
cd geo-visualization
```
2. create a virtual env
```shell
pipenv --python 3
```
3. install dependencies
```shell
pipenv run pip install -r requirements.txt
```
4. install jupyter lab
```shell
pipenv run pip install jupyterlab
```
5. start a session
```shell
piepnv run jupyter lab
```