tjansson60 / geospatial

Example notebooks on geospatial visualizations used for the talk at the Pydata Copenhagen on 27th of February 2020
https://www.meetup.com/PyData-Copenhagen/events/268779346/
7 stars 2 forks source link

Visualizing Geospatial Data in Python

This is the example notebooks on geospatial visualizations in python from the talk at the PyData Copenhagen meetup on the 27th of February 2020: https://www.meetup.com/PyData-Copenhagen/events/268779346/

Environment

Assuming you have a basic conda environment set up (such as miniconda) you can then create the correct enviroment using:

conda env create -n geospatial -f environment.yml

Activate the environment

conda activate geospatial

Remove the environment

conda remove --name geospatial --all