├── .gitignore ├── Figure1.png ├── LICENSE ├── README.md ├── __pycache__ └── tclim.cpython-39.pyc ├── examples ├── cordex │ ├── MOHC-HadGEM2-ES_historical_r1i1p1_SMHI-RCA4_v1_SUB_SCAL.nc │ ├── MOHC-HadGEM2-ES_rcp26_r1i1p1_SMHI-RCA4_v1__TS_SUB_SCAL.nc │ ├── MOHC-HadGEM2-ES_rcp85_r1i1p1_SMHI-RCA4_v1__TS_SUB_SCAL.nc │ ├── NCC-NorESM1-M_historical_r1i1p1_SMHI-RCA4_v1_SUB_SCAL.nc │ ├── NCC-NorESM1-M_rcp26_r1i1p1_SMHI-RCA4_v1__TS_SUB_SCAL.nc │ └── NCC-NorESM1-M_rcp85_r1i1p1_SMHI-RCA4_v1__TS_SUB_SCAL.nc └── tscale │ ├── listpoints.txt │ ├── tscale_1.csv │ ├── tscale_1_1D.csv │ └── tscale_1_1H.csv ├── requirements.txt ├── rsrc ├── aggregate_qmap_results.R └── qmap_hour.R └── tclim ├── __pycache__ ├── calendar3.cpython-38.pyc ├── calendar3.cpython-39.pyc ├── esgf_get.cpython-39.pyc ├── tclim.cpython-39.pyc ├── tclim_disagg.cpython-38.pyc ├── tclim_disagg.cpython-39.pyc ├── tclim_src.cpython-38.pyc └── tclim_src.cpython-39.pyc ├── calendar3.py ├── config.ini ├── esgf_get.py ├── esgf_post.py ├── tclim_disagg.py ├── tclim_disagg.pyc ├── tclim_run.py └── tclim_src.py /.gitignore: -------------------------------------------------------------------------------- 1 | examples/stscale_1_1D 2 | -------------------------------------------------------------------------------- /Figure1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/Figure1.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/tclim.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/__pycache__/tclim.cpython-39.pyc -------------------------------------------------------------------------------- /examples/cordex/MOHC-HadGEM2-ES_historical_r1i1p1_SMHI-RCA4_v1_SUB_SCAL.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/examples/cordex/MOHC-HadGEM2-ES_historical_r1i1p1_SMHI-RCA4_v1_SUB_SCAL.nc -------------------------------------------------------------------------------- /examples/cordex/MOHC-HadGEM2-ES_rcp26_r1i1p1_SMHI-RCA4_v1__TS_SUB_SCAL.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/examples/cordex/MOHC-HadGEM2-ES_rcp26_r1i1p1_SMHI-RCA4_v1__TS_SUB_SCAL.nc -------------------------------------------------------------------------------- /examples/cordex/MOHC-HadGEM2-ES_rcp85_r1i1p1_SMHI-RCA4_v1__TS_SUB_SCAL.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/examples/cordex/MOHC-HadGEM2-ES_rcp85_r1i1p1_SMHI-RCA4_v1__TS_SUB_SCAL.nc -------------------------------------------------------------------------------- /examples/cordex/NCC-NorESM1-M_historical_r1i1p1_SMHI-RCA4_v1_SUB_SCAL.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/examples/cordex/NCC-NorESM1-M_historical_r1i1p1_SMHI-RCA4_v1_SUB_SCAL.nc -------------------------------------------------------------------------------- /examples/cordex/NCC-NorESM1-M_rcp26_r1i1p1_SMHI-RCA4_v1__TS_SUB_SCAL.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/examples/cordex/NCC-NorESM1-M_rcp26_r1i1p1_SMHI-RCA4_v1__TS_SUB_SCAL.nc -------------------------------------------------------------------------------- /examples/cordex/NCC-NorESM1-M_rcp85_r1i1p1_SMHI-RCA4_v1__TS_SUB_SCAL.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/examples/cordex/NCC-NorESM1-M_rcp85_r1i1p1_SMHI-RCA4_v1__TS_SUB_SCAL.nc -------------------------------------------------------------------------------- /examples/tscale/listpoints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/examples/tscale/listpoints.txt -------------------------------------------------------------------------------- /examples/tscale/tscale_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/examples/tscale/tscale_1.csv -------------------------------------------------------------------------------- /examples/tscale/tscale_1_1D.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/examples/tscale/tscale_1_1D.csv -------------------------------------------------------------------------------- /examples/tscale/tscale_1_1H.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/examples/tscale/tscale_1_1H.csv -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/requirements.txt -------------------------------------------------------------------------------- /rsrc/aggregate_qmap_results.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/rsrc/aggregate_qmap_results.R -------------------------------------------------------------------------------- /rsrc/qmap_hour.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/rsrc/qmap_hour.R -------------------------------------------------------------------------------- /tclim/__pycache__/calendar3.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/tclim/__pycache__/calendar3.cpython-38.pyc -------------------------------------------------------------------------------- /tclim/__pycache__/calendar3.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/tclim/__pycache__/calendar3.cpython-39.pyc -------------------------------------------------------------------------------- /tclim/__pycache__/esgf_get.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/tclim/__pycache__/esgf_get.cpython-39.pyc -------------------------------------------------------------------------------- /tclim/__pycache__/tclim.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/tclim/__pycache__/tclim.cpython-39.pyc -------------------------------------------------------------------------------- /tclim/__pycache__/tclim_disagg.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/tclim/__pycache__/tclim_disagg.cpython-38.pyc -------------------------------------------------------------------------------- /tclim/__pycache__/tclim_disagg.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/tclim/__pycache__/tclim_disagg.cpython-39.pyc -------------------------------------------------------------------------------- /tclim/__pycache__/tclim_src.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/tclim/__pycache__/tclim_src.cpython-38.pyc -------------------------------------------------------------------------------- /tclim/__pycache__/tclim_src.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/tclim/__pycache__/tclim_src.cpython-39.pyc -------------------------------------------------------------------------------- /tclim/calendar3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/tclim/calendar3.py -------------------------------------------------------------------------------- /tclim/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/tclim/config.ini -------------------------------------------------------------------------------- /tclim/esgf_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/tclim/esgf_get.py -------------------------------------------------------------------------------- /tclim/esgf_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/tclim/esgf_post.py -------------------------------------------------------------------------------- /tclim/tclim_disagg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/tclim/tclim_disagg.py -------------------------------------------------------------------------------- /tclim/tclim_disagg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/tclim/tclim_disagg.pyc -------------------------------------------------------------------------------- /tclim/tclim_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/tclim/tclim_run.py -------------------------------------------------------------------------------- /tclim/tclim_src.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelfiddes/topoCLIM/HEAD/tclim/tclim_src.py --------------------------------------------------------------------------------