├── .gitignore ├── LICENSE ├── README.md ├── clusters_movie.gif └── src ├── 01_data_preprocessing.py ├── 02_calculate_drought_clusters_parallel.py ├── 03_process_drought_clusters.py ├── definitions.yaml └── drought_clusters_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julherest/drought_clusters/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julherest/drought_clusters/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julherest/drought_clusters/HEAD/README.md -------------------------------------------------------------------------------- /clusters_movie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julherest/drought_clusters/HEAD/clusters_movie.gif -------------------------------------------------------------------------------- /src/01_data_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julherest/drought_clusters/HEAD/src/01_data_preprocessing.py -------------------------------------------------------------------------------- /src/02_calculate_drought_clusters_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julherest/drought_clusters/HEAD/src/02_calculate_drought_clusters_parallel.py -------------------------------------------------------------------------------- /src/03_process_drought_clusters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julherest/drought_clusters/HEAD/src/03_process_drought_clusters.py -------------------------------------------------------------------------------- /src/definitions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julherest/drought_clusters/HEAD/src/definitions.yaml -------------------------------------------------------------------------------- /src/drought_clusters_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julherest/drought_clusters/HEAD/src/drought_clusters_utils.py --------------------------------------------------------------------------------