├── .gitignore ├── GEE scripts ├── Download_landsat_river_ice_data_with_era_temp.py ├── Future annual river ice extent.js ├── Future river ice extent comparing two periods.js ├── climate model SAT biases.js └── functions.py ├── Ice extent evaluation ├── 01_import_NWS_ice_data.Rmd ├── 01_import_WSC_ice_data.Rmd ├── 01_merge_site_metadata.Rmd ├── 02_import_landsat_ice_merged.Rmd ├── 03_validation_merged_sites.Rmd ├── README.md ├── calculate_river_ice_for_validation.js └── data │ └── NWS Alaska │ ├── alaska_sites.csv │ ├── nws_breakup_nogeo.csv │ └── nws_freezeup_nogeo.csv ├── README.md ├── license └── river ice analysis.Rmd /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GEE scripts/Download_landsat_river_ice_data_with_era_temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanyx/global-river-ice-dataset-from-Landsat/HEAD/GEE scripts/Download_landsat_river_ice_data_with_era_temp.py -------------------------------------------------------------------------------- /GEE scripts/Future annual river ice extent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanyx/global-river-ice-dataset-from-Landsat/HEAD/GEE scripts/Future annual river ice extent.js -------------------------------------------------------------------------------- /GEE scripts/Future river ice extent comparing two periods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanyx/global-river-ice-dataset-from-Landsat/HEAD/GEE scripts/Future river ice extent comparing two periods.js -------------------------------------------------------------------------------- /GEE scripts/climate model SAT biases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanyx/global-river-ice-dataset-from-Landsat/HEAD/GEE scripts/climate model SAT biases.js -------------------------------------------------------------------------------- /GEE scripts/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanyx/global-river-ice-dataset-from-Landsat/HEAD/GEE scripts/functions.py -------------------------------------------------------------------------------- /Ice extent evaluation/01_import_NWS_ice_data.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanyx/global-river-ice-dataset-from-Landsat/HEAD/Ice extent evaluation/01_import_NWS_ice_data.Rmd -------------------------------------------------------------------------------- /Ice extent evaluation/01_import_WSC_ice_data.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanyx/global-river-ice-dataset-from-Landsat/HEAD/Ice extent evaluation/01_import_WSC_ice_data.Rmd -------------------------------------------------------------------------------- /Ice extent evaluation/01_merge_site_metadata.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanyx/global-river-ice-dataset-from-Landsat/HEAD/Ice extent evaluation/01_merge_site_metadata.Rmd -------------------------------------------------------------------------------- /Ice extent evaluation/02_import_landsat_ice_merged.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanyx/global-river-ice-dataset-from-Landsat/HEAD/Ice extent evaluation/02_import_landsat_ice_merged.Rmd -------------------------------------------------------------------------------- /Ice extent evaluation/03_validation_merged_sites.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanyx/global-river-ice-dataset-from-Landsat/HEAD/Ice extent evaluation/03_validation_merged_sites.Rmd -------------------------------------------------------------------------------- /Ice extent evaluation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanyx/global-river-ice-dataset-from-Landsat/HEAD/Ice extent evaluation/README.md -------------------------------------------------------------------------------- /Ice extent evaluation/calculate_river_ice_for_validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanyx/global-river-ice-dataset-from-Landsat/HEAD/Ice extent evaluation/calculate_river_ice_for_validation.js -------------------------------------------------------------------------------- /Ice extent evaluation/data/NWS Alaska/alaska_sites.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanyx/global-river-ice-dataset-from-Landsat/HEAD/Ice extent evaluation/data/NWS Alaska/alaska_sites.csv -------------------------------------------------------------------------------- /Ice extent evaluation/data/NWS Alaska/nws_breakup_nogeo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanyx/global-river-ice-dataset-from-Landsat/HEAD/Ice extent evaluation/data/NWS Alaska/nws_breakup_nogeo.csv -------------------------------------------------------------------------------- /Ice extent evaluation/data/NWS Alaska/nws_freezeup_nogeo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanyx/global-river-ice-dataset-from-Landsat/HEAD/Ice extent evaluation/data/NWS Alaska/nws_freezeup_nogeo.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanyx/global-river-ice-dataset-from-Landsat/HEAD/README.md -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /river ice analysis.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanyx/global-river-ice-dataset-from-Landsat/HEAD/river ice analysis.Rmd --------------------------------------------------------------------------------