├── .DS_Store ├── .idea ├── .gitignore ├── droughtIndices.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── .travis.yml ├── Data ├── .DS_Store ├── GLDAScomp_P.mp4 ├── GLDAScomp_T.mp4 └── readme.md ├── DataTransformation ├── README.md ├── environment.yml └── regrid_to_csv.py ├── DepricatedVersions ├── DroughtIndexViz.py ├── WM_climate_indices_0.0.1.py └── WM_climate_indices_1.0.0.py ├── Dockerfile ├── Docs └── SimulationMatrix.xlsx ├── ExampleResults ├── .DS_Store ├── SPI_MINT_GLDAS_2000-01-01_2017-12-01_2cd00af4-3ec8-4c46-a867-43d510fb5c3b.nc └── spi_2cd00af4-3ec8-4c46-a867-43d510fb5c3b.mp4 ├── LICENSE ├── README.md ├── Utils ├── FLDASprep.py ├── GLDASprep.py └── README.MD ├── VERSION ├── WM_climate_indices.py ├── config.json ├── docker-push.sh ├── environment.yaml └── notebooks ├── .ipynb_checkpoints └── DroughtDemo-checkpoint.ipynb ├── DroughtDemo.ipynb ├── DroughtDemo.pdf ├── calibperiod.png ├── data.png ├── index.png └── timescales.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/.DS_Store -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml 3 | -------------------------------------------------------------------------------- /.idea/droughtIndices.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/.idea/droughtIndices.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/.travis.yml -------------------------------------------------------------------------------- /Data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/Data/.DS_Store -------------------------------------------------------------------------------- /Data/GLDAScomp_P.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/Data/GLDAScomp_P.mp4 -------------------------------------------------------------------------------- /Data/GLDAScomp_T.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/Data/GLDAScomp_T.mp4 -------------------------------------------------------------------------------- /Data/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/Data/readme.md -------------------------------------------------------------------------------- /DataTransformation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/DataTransformation/README.md -------------------------------------------------------------------------------- /DataTransformation/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/DataTransformation/environment.yml -------------------------------------------------------------------------------- /DataTransformation/regrid_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/DataTransformation/regrid_to_csv.py -------------------------------------------------------------------------------- /DepricatedVersions/DroughtIndexViz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/DepricatedVersions/DroughtIndexViz.py -------------------------------------------------------------------------------- /DepricatedVersions/WM_climate_indices_0.0.1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/DepricatedVersions/WM_climate_indices_0.0.1.py -------------------------------------------------------------------------------- /DepricatedVersions/WM_climate_indices_1.0.0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/DepricatedVersions/WM_climate_indices_1.0.0.py -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/Dockerfile -------------------------------------------------------------------------------- /Docs/SimulationMatrix.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/Docs/SimulationMatrix.xlsx -------------------------------------------------------------------------------- /ExampleResults/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/ExampleResults/.DS_Store -------------------------------------------------------------------------------- /ExampleResults/SPI_MINT_GLDAS_2000-01-01_2017-12-01_2cd00af4-3ec8-4c46-a867-43d510fb5c3b.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/ExampleResults/SPI_MINT_GLDAS_2000-01-01_2017-12-01_2cd00af4-3ec8-4c46-a867-43d510fb5c3b.nc -------------------------------------------------------------------------------- /ExampleResults/spi_2cd00af4-3ec8-4c46-a867-43d510fb5c3b.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/ExampleResults/spi_2cd00af4-3ec8-4c46-a867-43d510fb5c3b.mp4 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/README.md -------------------------------------------------------------------------------- /Utils/FLDASprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/Utils/FLDASprep.py -------------------------------------------------------------------------------- /Utils/GLDASprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/Utils/GLDASprep.py -------------------------------------------------------------------------------- /Utils/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/Utils/README.MD -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0-0 2 | -------------------------------------------------------------------------------- /WM_climate_indices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/WM_climate_indices.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/config.json -------------------------------------------------------------------------------- /docker-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/docker-push.sh -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/environment.yaml -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/DroughtDemo-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/notebooks/.ipynb_checkpoints/DroughtDemo-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/DroughtDemo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/notebooks/DroughtDemo.ipynb -------------------------------------------------------------------------------- /notebooks/DroughtDemo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/notebooks/DroughtDemo.pdf -------------------------------------------------------------------------------- /notebooks/calibperiod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/notebooks/calibperiod.png -------------------------------------------------------------------------------- /notebooks/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/notebooks/data.png -------------------------------------------------------------------------------- /notebooks/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/notebooks/index.png -------------------------------------------------------------------------------- /notebooks/timescales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mintproject/droughtIndices/HEAD/notebooks/timescales.png --------------------------------------------------------------------------------