├── README.md ├── attributes.py ├── climate_indicators.py ├── climate_interpolation.py ├── data ├── attribute_descriptions.xlsx ├── glim_cate_number_mapping.csv ├── glim_name_short_long.txt ├── river_network │ ├── as_streams_wgs.cpg │ ├── as_streams_wgs.dbf │ ├── as_streams_wgs.prj │ ├── as_streams_wgs.sbn │ ├── as_streams_wgs.sbx │ ├── as_streams_wgs.shp │ └── as_streams_wgs.shx └── root_depth_calculated.txt ├── elevation_slope.py ├── lai_time_series.py ├── land_cover.py ├── lithology.py ├── meteo_time_series_ccam.py ├── meteo_time_series_surf.py ├── ndvi_time_series.py ├── output ├── catchment_meteorological │ └── 18161.xlsx ├── elev_slope.xlsx ├── glhymps.xlsx ├── glim.xlsx ├── igbp.xlsx ├── lai │ └── 2002 │ │ └── 18161.xlsx └── shape_factor.xlsx ├── permeability_porosity.py ├── rooting_depth.py ├── shape_factors.py ├── shapefiles ├── basin_18161.dbf ├── basin_18161.prj ├── basin_18161.shp └── basin_18161.shx ├── soil.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/README.md -------------------------------------------------------------------------------- /attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/attributes.py -------------------------------------------------------------------------------- /climate_indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/climate_indicators.py -------------------------------------------------------------------------------- /climate_interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/climate_interpolation.py -------------------------------------------------------------------------------- /data/attribute_descriptions.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/data/attribute_descriptions.xlsx -------------------------------------------------------------------------------- /data/glim_cate_number_mapping.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/data/glim_cate_number_mapping.csv -------------------------------------------------------------------------------- /data/glim_name_short_long.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/data/glim_name_short_long.txt -------------------------------------------------------------------------------- /data/river_network/as_streams_wgs.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/river_network/as_streams_wgs.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/data/river_network/as_streams_wgs.dbf -------------------------------------------------------------------------------- /data/river_network/as_streams_wgs.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/data/river_network/as_streams_wgs.prj -------------------------------------------------------------------------------- /data/river_network/as_streams_wgs.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/data/river_network/as_streams_wgs.sbn -------------------------------------------------------------------------------- /data/river_network/as_streams_wgs.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/data/river_network/as_streams_wgs.sbx -------------------------------------------------------------------------------- /data/river_network/as_streams_wgs.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/data/river_network/as_streams_wgs.shp -------------------------------------------------------------------------------- /data/river_network/as_streams_wgs.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/data/river_network/as_streams_wgs.shx -------------------------------------------------------------------------------- /data/root_depth_calculated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/data/root_depth_calculated.txt -------------------------------------------------------------------------------- /elevation_slope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/elevation_slope.py -------------------------------------------------------------------------------- /lai_time_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/lai_time_series.py -------------------------------------------------------------------------------- /land_cover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/land_cover.py -------------------------------------------------------------------------------- /lithology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/lithology.py -------------------------------------------------------------------------------- /meteo_time_series_ccam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/meteo_time_series_ccam.py -------------------------------------------------------------------------------- /meteo_time_series_surf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/meteo_time_series_surf.py -------------------------------------------------------------------------------- /ndvi_time_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/ndvi_time_series.py -------------------------------------------------------------------------------- /output/catchment_meteorological/18161.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/output/catchment_meteorological/18161.xlsx -------------------------------------------------------------------------------- /output/elev_slope.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/output/elev_slope.xlsx -------------------------------------------------------------------------------- /output/glhymps.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/output/glhymps.xlsx -------------------------------------------------------------------------------- /output/glim.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/output/glim.xlsx -------------------------------------------------------------------------------- /output/igbp.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/output/igbp.xlsx -------------------------------------------------------------------------------- /output/lai/2002/18161.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/output/lai/2002/18161.xlsx -------------------------------------------------------------------------------- /output/shape_factor.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/output/shape_factor.xlsx -------------------------------------------------------------------------------- /permeability_porosity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/permeability_porosity.py -------------------------------------------------------------------------------- /rooting_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/rooting_depth.py -------------------------------------------------------------------------------- /shape_factors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/shape_factors.py -------------------------------------------------------------------------------- /shapefiles/basin_18161.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/shapefiles/basin_18161.dbf -------------------------------------------------------------------------------- /shapefiles/basin_18161.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/shapefiles/basin_18161.prj -------------------------------------------------------------------------------- /shapefiles/basin_18161.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/shapefiles/basin_18161.shp -------------------------------------------------------------------------------- /shapefiles/basin_18161.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/shapefiles/basin_18161.shx -------------------------------------------------------------------------------- /soil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/soil.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haozhen315/CCAM-China-Catchment-Attributes-and-Meteorology-dataset/HEAD/utils.py --------------------------------------------------------------------------------