├── LICENSE ├── ModelDescription.pdf ├── README.md ├── _config.yml ├── data ├── evapConowingo_1932-2001.csv ├── evapMuddyRun_1932-2001.csv ├── qLateral_1932-2001.csv ├── qMarietta_1932-2001.csv └── qMuddyRun_1932-2001.csv ├── monsoonal_rescaling ├── LHsamples.txt ├── MonsoonalRescaling.py ├── README.md ├── fitHarmonics.py ├── sample_parameters.sh └── uncertain_params.txt ├── stationary_generator ├── KNN_identification.m ├── KNN_sampling.m ├── README.md ├── chol_corr.m ├── clean_data.m ├── combined_generator.m ├── convert_data_to_monthly.m ├── monthly_gen.m ├── monthly_main.m └── script_example.m └── validation ├── README.md ├── autocorr.py ├── monthly-moments.py ├── plotFDCrange.py └── spatial-corr.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/LICENSE -------------------------------------------------------------------------------- /ModelDescription.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/ModelDescription.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/_config.yml -------------------------------------------------------------------------------- /data/evapConowingo_1932-2001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/data/evapConowingo_1932-2001.csv -------------------------------------------------------------------------------- /data/evapMuddyRun_1932-2001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/data/evapMuddyRun_1932-2001.csv -------------------------------------------------------------------------------- /data/qLateral_1932-2001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/data/qLateral_1932-2001.csv -------------------------------------------------------------------------------- /data/qMarietta_1932-2001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/data/qMarietta_1932-2001.csv -------------------------------------------------------------------------------- /data/qMuddyRun_1932-2001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/data/qMuddyRun_1932-2001.csv -------------------------------------------------------------------------------- /monsoonal_rescaling/LHsamples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/monsoonal_rescaling/LHsamples.txt -------------------------------------------------------------------------------- /monsoonal_rescaling/MonsoonalRescaling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/monsoonal_rescaling/MonsoonalRescaling.py -------------------------------------------------------------------------------- /monsoonal_rescaling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/monsoonal_rescaling/README.md -------------------------------------------------------------------------------- /monsoonal_rescaling/fitHarmonics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/monsoonal_rescaling/fitHarmonics.py -------------------------------------------------------------------------------- /monsoonal_rescaling/sample_parameters.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/monsoonal_rescaling/sample_parameters.sh -------------------------------------------------------------------------------- /monsoonal_rescaling/uncertain_params.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/monsoonal_rescaling/uncertain_params.txt -------------------------------------------------------------------------------- /stationary_generator/KNN_identification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/stationary_generator/KNN_identification.m -------------------------------------------------------------------------------- /stationary_generator/KNN_sampling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/stationary_generator/KNN_sampling.m -------------------------------------------------------------------------------- /stationary_generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/stationary_generator/README.md -------------------------------------------------------------------------------- /stationary_generator/chol_corr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/stationary_generator/chol_corr.m -------------------------------------------------------------------------------- /stationary_generator/clean_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/stationary_generator/clean_data.m -------------------------------------------------------------------------------- /stationary_generator/combined_generator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/stationary_generator/combined_generator.m -------------------------------------------------------------------------------- /stationary_generator/convert_data_to_monthly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/stationary_generator/convert_data_to_monthly.m -------------------------------------------------------------------------------- /stationary_generator/monthly_gen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/stationary_generator/monthly_gen.m -------------------------------------------------------------------------------- /stationary_generator/monthly_main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/stationary_generator/monthly_main.m -------------------------------------------------------------------------------- /stationary_generator/script_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/stationary_generator/script_example.m -------------------------------------------------------------------------------- /validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/validation/README.md -------------------------------------------------------------------------------- /validation/autocorr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/validation/autocorr.py -------------------------------------------------------------------------------- /validation/monthly-moments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/validation/monthly-moments.py -------------------------------------------------------------------------------- /validation/plotFDCrange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/validation/plotFDCrange.py -------------------------------------------------------------------------------- /validation/spatial-corr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianneq/Kirsch-Nowak_Streamflow_Generator/HEAD/validation/spatial-corr.py --------------------------------------------------------------------------------