https://github.com/jackdbd/sardinia-fires
Exploratory data analysis and visualization of fires in Sardinia from 2005 to 2016.
https://github.com/jackdbd/sardinia-fires
geopandas sardinia
Last synced: 2 months ago
JSON representation
Exploratory data analysis and visualization of fires in Sardinia from 2005 to 2016.
- Host: GitHub
- URL: https://github.com/jackdbd/sardinia-fires
- Owner: jackdbd
- License: mit
- Created: 2018-07-15T10:58:28.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-15T12:47:18.000Z (almost 8 years ago)
- Last Synced: 2025-03-11T06:49:20.298Z (over 1 year ago)
- Topics: geopandas, sardinia
- Language: Jupyter Notebook
- Homepage:
- Size: 1.25 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sardinia Fires
Exploratory data analysis and visualization of fires in Sardinia from 2005 to 2016.


## Data
You will need to download several datasets freely available on the [Opendata Sardegna](http://dati.regione.sardegna.it/dataset) portal. See to the notebook `sardinia-fires.ipynb`.
## Installation
Create a conda environment. You can use either [Miniconda](https://conda.io/miniconda.html) or [Anaconda](https://repo.continuum.io/).
```shell
conda create --name sardinia-fires python=3.6 --yes
```
Activate the environment.
```shell
source activate sardinia-fires
```
Install all the dependencies (this might take a while):
```shell
conda install -c conda-forge geopandas jupyter --yes
```
*Note*: there seem to be some issues with fiona (one of geopandas's dependencies). I had to downgrade to `fiona 1.7.9`.
```shell
conda install -c conda-forge fiona=1.7.9
```
When all dependencies have been installed, run the notebook:
```shell
jupyter notebook
```
## Other
You can freeze your environment with:
```shell
conda env export > environment.yml
```
To remove this conda environment, run:
```shell
conda env remove -n sardinia-fires
```
## Previous Art
Mauro Melis created a really cool "scrollytelling" data visualization using the same datasets: [Sardinia on Fire](https://mauromelis.gitlab.io/sardinia-on-fire/). His entry won the [Sardegna Open Data data visualization contest in 2018](http://contest.formez.it/tags/incendi).