├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── Makefile ├── README.rst ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── readme.rst └── usage.rst ├── observational_large_ensemble ├── __init__.py ├── cli.py ├── main.py ├── params │ ├── __init__.py │ ├── karen_params_cesm.py │ └── karen_params_obs.py ├── run_main_example.sbatch ├── scripts │ ├── CO_river_precip.py │ ├── __init__.py │ ├── download_data.sh │ ├── get_forced.py │ ├── lfca.py │ ├── model_components.py │ ├── sst_mode_plots.py │ ├── validation_metrics_cesm.py │ └── validation_metrics_cesm_synth.py ├── shapefiles │ ├── CO_river_basin.json │ └── Upper_Colorado_River_Basin_Boundary.json └── utils.py ├── requirements.txt ├── setup.cfg ├── setup.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /observational_large_ensemble/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/observational_large_ensemble/__init__.py -------------------------------------------------------------------------------- /observational_large_ensemble/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/observational_large_ensemble/cli.py -------------------------------------------------------------------------------- /observational_large_ensemble/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/observational_large_ensemble/main.py -------------------------------------------------------------------------------- /observational_large_ensemble/params/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/observational_large_ensemble/params/__init__.py -------------------------------------------------------------------------------- /observational_large_ensemble/params/karen_params_cesm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/observational_large_ensemble/params/karen_params_cesm.py -------------------------------------------------------------------------------- /observational_large_ensemble/params/karen_params_obs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/observational_large_ensemble/params/karen_params_obs.py -------------------------------------------------------------------------------- /observational_large_ensemble/run_main_example.sbatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/observational_large_ensemble/run_main_example.sbatch -------------------------------------------------------------------------------- /observational_large_ensemble/scripts/CO_river_precip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/observational_large_ensemble/scripts/CO_river_precip.py -------------------------------------------------------------------------------- /observational_large_ensemble/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/observational_large_ensemble/scripts/__init__.py -------------------------------------------------------------------------------- /observational_large_ensemble/scripts/download_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/observational_large_ensemble/scripts/download_data.sh -------------------------------------------------------------------------------- /observational_large_ensemble/scripts/get_forced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/observational_large_ensemble/scripts/get_forced.py -------------------------------------------------------------------------------- /observational_large_ensemble/scripts/lfca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/observational_large_ensemble/scripts/lfca.py -------------------------------------------------------------------------------- /observational_large_ensemble/scripts/model_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/observational_large_ensemble/scripts/model_components.py -------------------------------------------------------------------------------- /observational_large_ensemble/scripts/sst_mode_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/observational_large_ensemble/scripts/sst_mode_plots.py -------------------------------------------------------------------------------- /observational_large_ensemble/scripts/validation_metrics_cesm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/observational_large_ensemble/scripts/validation_metrics_cesm.py -------------------------------------------------------------------------------- /observational_large_ensemble/scripts/validation_metrics_cesm_synth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/observational_large_ensemble/scripts/validation_metrics_cesm_synth.py -------------------------------------------------------------------------------- /observational_large_ensemble/shapefiles/CO_river_basin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/observational_large_ensemble/shapefiles/CO_river_basin.json -------------------------------------------------------------------------------- /observational_large_ensemble/shapefiles/Upper_Colorado_River_Basin_Boundary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/observational_large_ensemble/shapefiles/Upper_Colorado_River_Basin_Boundary.json -------------------------------------------------------------------------------- /observational_large_ensemble/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/observational_large_ensemble/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenamckinnon/observational_large_ensemble/HEAD/tox.ini --------------------------------------------------------------------------------