Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 641 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 641 Bytes

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