├── .gitattributes ├── .github └── workflows │ ├── ats_user_container.yml │ ├── env.yml │ ├── main.yml │ └── user_container.yml ├── .gitignore ├── AUTHORS.rst ├── INSTALL.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── bin ├── condition_dem.py ├── extrude_mesh.py ├── mesh_hucs.py ├── mesh_shape.py ├── plot_hucs.py ├── plot_shape.py └── run_ww_lab.py ├── docker ├── ATS-User-Env.Dockerfile ├── CI-Env-FromFile.Dockerfile ├── CI-Env.Dockerfile ├── CI.Dockerfile ├── Create-Envs.Dockerfile ├── User-Env.Dockerfile ├── build_user_container.sh └── configure-seacas.sh ├── docs ├── Makefile ├── build │ └── doctrees │ │ └── gallery.doctree └── source │ ├── _static │ ├── images │ │ ├── gallery_sources_nhd.png │ │ ├── gallery_sources_nhdplus.png │ │ ├── gallery_sources_wbd.png │ │ └── watershed_workflow.png │ ├── main.js │ ├── styles │ │ └── custom_theme.css │ └── versions.json │ ├── _templates │ └── version.html │ ├── api.rst │ ├── concepts.rst │ ├── conf.py │ ├── data.rst │ ├── examples.rst │ ├── examples │ ├── comparison_of_soil_structure.ipynb │ ├── coweeta_ats.ipynb │ ├── coweeta_stream_aligned_mesh.ipynb │ ├── get_AORC_met_data.ipynb │ ├── get_MODIS_LAI.ipynb │ └── toy_problem_stream_aligned_mesh.ipynb │ ├── gallery.rst │ ├── geometry.rst │ ├── hilev.rst │ ├── index.rst │ ├── install.rst │ ├── intro.rst │ ├── mesh.rst │ ├── sources.rst │ └── utilities.rst ├── env.yml ├── environments ├── create_envs.py ├── create_linux_envs.sh ├── create_osx_envs.sh ├── exodus_py.patch └── recover_docker_envs.sh ├── examples ├── Coweeta │ ├── coweeta_ats.ipynb │ ├── input_data │ │ ├── coweeta_basin.dbf │ │ ├── coweeta_basin.prj │ │ ├── coweeta_basin.sbn │ │ ├── coweeta_basin.sbx │ │ ├── coweeta_basin.shp │ │ ├── coweeta_basin.shp.xml │ │ ├── coweeta_basin.shx │ │ ├── coweeta_simplified.cpg │ │ ├── coweeta_simplified.dbf │ │ ├── coweeta_simplified.prj │ │ ├── coweeta_simplified.shp │ │ ├── coweeta_simplified.shx │ │ ├── cyclic_steadystate-template.xml │ │ ├── land_cover │ │ │ ├── MODIS │ │ │ │ ├── modis_LAI_08-01-2010_08-01-2011_35.0782x-83.4826_35.0237x-83.4178.nc │ │ │ │ └── modis_LULC_08-01-2010_08-01-2011_35.0782x-83.4826_35.0237x-83.4178.nc │ │ │ └── land_cover.tif │ │ ├── soil_structure │ │ │ ├── DTB │ │ │ │ └── DTB.tif │ │ │ └── GLHYMPS │ │ │ │ ├── GLHYMPS.cpg │ │ │ │ ├── GLHYMPS.dbf │ │ │ │ ├── GLHYMPS.prj │ │ │ │ ├── GLHYMPS.qpj │ │ │ │ ├── GLHYMPS.shp │ │ │ │ └── GLHYMPS.shx │ │ ├── steadystate-template.xml │ │ └── transient-template.xml │ └── output_data │ │ └── .empty ├── comparison_of_soil_structure.ipynb ├── coweeta_stream_aligned_mesh.ipynb ├── get_AORC_met_data.ipynb ├── get_Daymet.ipynb ├── get_MODIS_LAI.ipynb ├── river_tree.ipynb ├── taylor_upstream_stream_aligned_mesh.ipynb └── toy_problem_stream_aligned_mesh.ipynb ├── pyproject.toml ├── requirements.txt ├── setup.cfg ├── setup.py ├── versioneer.py ├── watershed_workflow ├── __init__.py ├── _version.py ├── angles.py ├── bin_utils.py ├── colors.py ├── condition.py ├── config.py ├── crs.py ├── data.py ├── hydrography.py ├── io.py ├── land_cover_properties.py ├── mesh.py ├── meteorology.py ├── plot.py ├── regions.py ├── resampling.py ├── river_mesh.py ├── river_tree.py ├── scalebar.py ├── soil_properties.py ├── sources │ ├── __init__.py │ ├── filenames.py │ ├── manager_3dep.py │ ├── manager_aorc.py │ ├── manager_basin3d.py │ ├── manager_dataset.py │ ├── manager_daymet.py │ ├── manager_glhymps.py │ ├── manager_hyriver.py │ ├── manager_modis_appeears.py │ ├── manager_nhd.py │ ├── manager_nlcd.py │ ├── manager_nrcs.py │ ├── manager_pelletier_dtb.py │ ├── manager_raster.py │ ├── manager_shapefile.py │ ├── manager_shapes.py │ ├── manager_soilgrids_2017.py │ ├── manager_wbd.py │ ├── standard_names.py │ ├── test │ │ ├── fixtures.py │ │ ├── test_manager_3dep.py │ │ ├── test_manager_aorc.py │ │ ├── test_manager_appeears.py │ │ ├── test_manager_basin3d.py │ │ ├── test_manager_daymet.py │ │ ├── test_manager_glhymps.py │ │ ├── test_manager_nhd.py │ │ ├── test_manager_nlcd.py │ │ ├── test_manager_nrcs.py │ │ ├── test_manager_raster.py │ │ ├── test_manager_shapefile.py │ │ ├── test_manager_soilgrids.py │ │ ├── test_manager_wbd.py │ │ └── test_source_names.py │ └── utils.py ├── split_hucs.py ├── stream_light.py ├── test │ ├── FAIL_test_dem_interp.py │ ├── FAIL_test_hilev.py │ ├── crs_fixtures.py │ ├── data_test_streamlight │ │ ├── data_test_streamlight_parameters.csv │ │ └── data_test_streamlight_time_series.csv │ ├── fixture_data │ │ ├── hucs.cpg │ │ ├── hucs.dbf │ │ ├── hucs.prj │ │ ├── hucs.shp │ │ ├── hucs.shx │ │ ├── river_060102020103.cpg │ │ ├── river_060102020103.dbf │ │ ├── river_060102020103.prj │ │ ├── river_060102020103.shp │ │ └── river_060102020103.shx │ ├── shapes.py │ ├── source_fixture_helpers.py │ ├── source_fixtures.py │ ├── test_00_shapely.py │ ├── test_01_crs.py │ ├── test_02_utils.py │ ├── test_02b_data.py │ ├── test_03_river_tree.py │ ├── test_04_split_hucs.py │ ├── test_05_hydrography.py │ ├── test_06_resampling.py │ ├── test_07_angles.py │ ├── test_08_triangulate.py │ ├── test_09_mesh.py │ ├── test_10_mesh_mixed.py │ ├── test_11_condition.py │ ├── test_12_soil_properties.py │ ├── test_13_land_cover_properties.py │ ├── test_14_find_huc.py │ ├── test_14_find_huc │ │ ├── copper_creek.cpg │ │ ├── copper_creek.dbf │ │ ├── copper_creek.prj │ │ ├── copper_creek.shp │ │ ├── copper_creek.shx │ │ ├── test_polygon.dbf │ │ ├── test_polygon.prj │ │ ├── test_polygon.sbn │ │ ├── test_polygon.sbx │ │ ├── test_polygon.shp │ │ ├── test_polygon.shp.xml │ │ ├── test_polygon.shx │ │ ├── test_shapefile.cpg │ │ ├── test_shapefile.dbf │ │ ├── test_shapefile.prj │ │ ├── test_shapefile.shp │ │ └── test_shapefile.shx │ ├── test_15_stream_light.py │ └── test_plot_gold.pickle ├── tinytree.py ├── triangulation.py ├── ui.py ├── utils.py ├── vtk_io.py └── warp.py └── watershed_workflowrc /.gitattributes: -------------------------------------------------------------------------------- 1 | watershed_workflow/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.github/workflows/ats_user_container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/.github/workflows/ats_user_container.yml -------------------------------------------------------------------------------- /.github/workflows/env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/.github/workflows/env.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/user_container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/.github/workflows/user_container.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/README.md -------------------------------------------------------------------------------- /bin/condition_dem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/bin/condition_dem.py -------------------------------------------------------------------------------- /bin/extrude_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/bin/extrude_mesh.py -------------------------------------------------------------------------------- /bin/mesh_hucs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/bin/mesh_hucs.py -------------------------------------------------------------------------------- /bin/mesh_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/bin/mesh_shape.py -------------------------------------------------------------------------------- /bin/plot_hucs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/bin/plot_hucs.py -------------------------------------------------------------------------------- /bin/plot_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/bin/plot_shape.py -------------------------------------------------------------------------------- /bin/run_ww_lab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/bin/run_ww_lab.py -------------------------------------------------------------------------------- /docker/ATS-User-Env.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docker/ATS-User-Env.Dockerfile -------------------------------------------------------------------------------- /docker/CI-Env-FromFile.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docker/CI-Env-FromFile.Dockerfile -------------------------------------------------------------------------------- /docker/CI-Env.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docker/CI-Env.Dockerfile -------------------------------------------------------------------------------- /docker/CI.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docker/CI.Dockerfile -------------------------------------------------------------------------------- /docker/Create-Envs.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docker/Create-Envs.Dockerfile -------------------------------------------------------------------------------- /docker/User-Env.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docker/User-Env.Dockerfile -------------------------------------------------------------------------------- /docker/build_user_container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docker/build_user_container.sh -------------------------------------------------------------------------------- /docker/configure-seacas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docker/configure-seacas.sh -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/build/doctrees/gallery.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/build/doctrees/gallery.doctree -------------------------------------------------------------------------------- /docs/source/_static/images/gallery_sources_nhd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/source/_static/images/gallery_sources_nhd.png -------------------------------------------------------------------------------- /docs/source/_static/images/gallery_sources_nhdplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/source/_static/images/gallery_sources_nhdplus.png -------------------------------------------------------------------------------- /docs/source/_static/images/gallery_sources_wbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/source/_static/images/gallery_sources_wbd.png -------------------------------------------------------------------------------- /docs/source/_static/images/watershed_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/source/_static/images/watershed_workflow.png -------------------------------------------------------------------------------- /docs/source/_static/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/source/_static/main.js -------------------------------------------------------------------------------- /docs/source/_static/styles/custom_theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/source/_static/styles/custom_theme.css -------------------------------------------------------------------------------- /docs/source/_static/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/source/_static/versions.json -------------------------------------------------------------------------------- /docs/source/_templates/version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/source/_templates/version.html -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/concepts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/source/concepts.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/source/data.rst -------------------------------------------------------------------------------- /docs/source/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/source/examples.rst -------------------------------------------------------------------------------- /docs/source/examples/comparison_of_soil_structure.ipynb: -------------------------------------------------------------------------------- 1 | ../../../examples/comparison_of_soil_structure.ipynb -------------------------------------------------------------------------------- /docs/source/examples/coweeta_ats.ipynb: -------------------------------------------------------------------------------- 1 | ../../../examples/Coweeta/coweeta_ats.ipynb -------------------------------------------------------------------------------- /docs/source/examples/coweeta_stream_aligned_mesh.ipynb: -------------------------------------------------------------------------------- 1 | ../../../examples/coweeta_stream_aligned_mesh.ipynb -------------------------------------------------------------------------------- /docs/source/examples/get_AORC_met_data.ipynb: -------------------------------------------------------------------------------- 1 | ../../../examples/get_AORC_met_data.ipynb -------------------------------------------------------------------------------- /docs/source/examples/get_MODIS_LAI.ipynb: -------------------------------------------------------------------------------- 1 | ../../../examples/get_MODIS_LAI.ipynb -------------------------------------------------------------------------------- /docs/source/examples/toy_problem_stream_aligned_mesh.ipynb: -------------------------------------------------------------------------------- 1 | ../../../examples/toy_problem_stream_aligned_mesh.ipynb -------------------------------------------------------------------------------- /docs/source/gallery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/source/gallery.rst -------------------------------------------------------------------------------- /docs/source/geometry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/source/geometry.rst -------------------------------------------------------------------------------- /docs/source/hilev.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/source/hilev.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /docs/source/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/source/intro.rst -------------------------------------------------------------------------------- /docs/source/mesh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/source/mesh.rst -------------------------------------------------------------------------------- /docs/source/sources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/source/sources.rst -------------------------------------------------------------------------------- /docs/source/utilities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/docs/source/utilities.rst -------------------------------------------------------------------------------- /env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/env.yml -------------------------------------------------------------------------------- /environments/create_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/environments/create_envs.py -------------------------------------------------------------------------------- /environments/create_linux_envs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/environments/create_linux_envs.sh -------------------------------------------------------------------------------- /environments/create_osx_envs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/environments/create_osx_envs.sh -------------------------------------------------------------------------------- /environments/exodus_py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/environments/exodus_py.patch -------------------------------------------------------------------------------- /environments/recover_docker_envs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/environments/recover_docker_envs.sh -------------------------------------------------------------------------------- /examples/Coweeta/coweeta_ats.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/coweeta_ats.ipynb -------------------------------------------------------------------------------- /examples/Coweeta/input_data/coweeta_basin.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/input_data/coweeta_basin.dbf -------------------------------------------------------------------------------- /examples/Coweeta/input_data/coweeta_basin.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/input_data/coweeta_basin.prj -------------------------------------------------------------------------------- /examples/Coweeta/input_data/coweeta_basin.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/input_data/coweeta_basin.sbn -------------------------------------------------------------------------------- /examples/Coweeta/input_data/coweeta_basin.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/input_data/coweeta_basin.sbx -------------------------------------------------------------------------------- /examples/Coweeta/input_data/coweeta_basin.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/input_data/coweeta_basin.shp -------------------------------------------------------------------------------- /examples/Coweeta/input_data/coweeta_basin.shp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/input_data/coweeta_basin.shp.xml -------------------------------------------------------------------------------- /examples/Coweeta/input_data/coweeta_basin.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/input_data/coweeta_basin.shx -------------------------------------------------------------------------------- /examples/Coweeta/input_data/coweeta_simplified.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /examples/Coweeta/input_data/coweeta_simplified.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/input_data/coweeta_simplified.dbf -------------------------------------------------------------------------------- /examples/Coweeta/input_data/coweeta_simplified.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/input_data/coweeta_simplified.prj -------------------------------------------------------------------------------- /examples/Coweeta/input_data/coweeta_simplified.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/input_data/coweeta_simplified.shp -------------------------------------------------------------------------------- /examples/Coweeta/input_data/coweeta_simplified.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/input_data/coweeta_simplified.shx -------------------------------------------------------------------------------- /examples/Coweeta/input_data/cyclic_steadystate-template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/input_data/cyclic_steadystate-template.xml -------------------------------------------------------------------------------- /examples/Coweeta/input_data/land_cover/MODIS/modis_LAI_08-01-2010_08-01-2011_35.0782x-83.4826_35.0237x-83.4178.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/input_data/land_cover/MODIS/modis_LAI_08-01-2010_08-01-2011_35.0782x-83.4826_35.0237x-83.4178.nc -------------------------------------------------------------------------------- /examples/Coweeta/input_data/land_cover/MODIS/modis_LULC_08-01-2010_08-01-2011_35.0782x-83.4826_35.0237x-83.4178.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/input_data/land_cover/MODIS/modis_LULC_08-01-2010_08-01-2011_35.0782x-83.4826_35.0237x-83.4178.nc -------------------------------------------------------------------------------- /examples/Coweeta/input_data/land_cover/land_cover.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/input_data/land_cover/land_cover.tif -------------------------------------------------------------------------------- /examples/Coweeta/input_data/soil_structure/DTB/DTB.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/input_data/soil_structure/DTB/DTB.tif -------------------------------------------------------------------------------- /examples/Coweeta/input_data/soil_structure/GLHYMPS/GLHYMPS.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /examples/Coweeta/input_data/soil_structure/GLHYMPS/GLHYMPS.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/input_data/soil_structure/GLHYMPS/GLHYMPS.dbf -------------------------------------------------------------------------------- /examples/Coweeta/input_data/soil_structure/GLHYMPS/GLHYMPS.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/input_data/soil_structure/GLHYMPS/GLHYMPS.prj -------------------------------------------------------------------------------- /examples/Coweeta/input_data/soil_structure/GLHYMPS/GLHYMPS.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/input_data/soil_structure/GLHYMPS/GLHYMPS.qpj -------------------------------------------------------------------------------- /examples/Coweeta/input_data/soil_structure/GLHYMPS/GLHYMPS.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/input_data/soil_structure/GLHYMPS/GLHYMPS.shp -------------------------------------------------------------------------------- /examples/Coweeta/input_data/soil_structure/GLHYMPS/GLHYMPS.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/input_data/soil_structure/GLHYMPS/GLHYMPS.shx -------------------------------------------------------------------------------- /examples/Coweeta/input_data/steadystate-template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/input_data/steadystate-template.xml -------------------------------------------------------------------------------- /examples/Coweeta/input_data/transient-template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/Coweeta/input_data/transient-template.xml -------------------------------------------------------------------------------- /examples/Coweeta/output_data/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/comparison_of_soil_structure.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/comparison_of_soil_structure.ipynb -------------------------------------------------------------------------------- /examples/coweeta_stream_aligned_mesh.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/coweeta_stream_aligned_mesh.ipynb -------------------------------------------------------------------------------- /examples/get_AORC_met_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/get_AORC_met_data.ipynb -------------------------------------------------------------------------------- /examples/get_Daymet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/get_Daymet.ipynb -------------------------------------------------------------------------------- /examples/get_MODIS_LAI.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/get_MODIS_LAI.ipynb -------------------------------------------------------------------------------- /examples/river_tree.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/river_tree.ipynb -------------------------------------------------------------------------------- /examples/taylor_upstream_stream_aligned_mesh.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/taylor_upstream_stream_aligned_mesh.ipynb -------------------------------------------------------------------------------- /examples/toy_problem_stream_aligned_mesh.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/examples/toy_problem_stream_aligned_mesh.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/setup.py -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/versioneer.py -------------------------------------------------------------------------------- /watershed_workflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/__init__.py -------------------------------------------------------------------------------- /watershed_workflow/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/_version.py -------------------------------------------------------------------------------- /watershed_workflow/angles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/angles.py -------------------------------------------------------------------------------- /watershed_workflow/bin_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/bin_utils.py -------------------------------------------------------------------------------- /watershed_workflow/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/colors.py -------------------------------------------------------------------------------- /watershed_workflow/condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/condition.py -------------------------------------------------------------------------------- /watershed_workflow/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/config.py -------------------------------------------------------------------------------- /watershed_workflow/crs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/crs.py -------------------------------------------------------------------------------- /watershed_workflow/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/data.py -------------------------------------------------------------------------------- /watershed_workflow/hydrography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/hydrography.py -------------------------------------------------------------------------------- /watershed_workflow/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/io.py -------------------------------------------------------------------------------- /watershed_workflow/land_cover_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/land_cover_properties.py -------------------------------------------------------------------------------- /watershed_workflow/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/mesh.py -------------------------------------------------------------------------------- /watershed_workflow/meteorology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/meteorology.py -------------------------------------------------------------------------------- /watershed_workflow/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/plot.py -------------------------------------------------------------------------------- /watershed_workflow/regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/regions.py -------------------------------------------------------------------------------- /watershed_workflow/resampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/resampling.py -------------------------------------------------------------------------------- /watershed_workflow/river_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/river_mesh.py -------------------------------------------------------------------------------- /watershed_workflow/river_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/river_tree.py -------------------------------------------------------------------------------- /watershed_workflow/scalebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/scalebar.py -------------------------------------------------------------------------------- /watershed_workflow/soil_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/soil_properties.py -------------------------------------------------------------------------------- /watershed_workflow/sources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/__init__.py -------------------------------------------------------------------------------- /watershed_workflow/sources/filenames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/filenames.py -------------------------------------------------------------------------------- /watershed_workflow/sources/manager_3dep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/manager_3dep.py -------------------------------------------------------------------------------- /watershed_workflow/sources/manager_aorc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/manager_aorc.py -------------------------------------------------------------------------------- /watershed_workflow/sources/manager_basin3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/manager_basin3d.py -------------------------------------------------------------------------------- /watershed_workflow/sources/manager_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/manager_dataset.py -------------------------------------------------------------------------------- /watershed_workflow/sources/manager_daymet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/manager_daymet.py -------------------------------------------------------------------------------- /watershed_workflow/sources/manager_glhymps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/manager_glhymps.py -------------------------------------------------------------------------------- /watershed_workflow/sources/manager_hyriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/manager_hyriver.py -------------------------------------------------------------------------------- /watershed_workflow/sources/manager_modis_appeears.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/manager_modis_appeears.py -------------------------------------------------------------------------------- /watershed_workflow/sources/manager_nhd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/manager_nhd.py -------------------------------------------------------------------------------- /watershed_workflow/sources/manager_nlcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/manager_nlcd.py -------------------------------------------------------------------------------- /watershed_workflow/sources/manager_nrcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/manager_nrcs.py -------------------------------------------------------------------------------- /watershed_workflow/sources/manager_pelletier_dtb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/manager_pelletier_dtb.py -------------------------------------------------------------------------------- /watershed_workflow/sources/manager_raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/manager_raster.py -------------------------------------------------------------------------------- /watershed_workflow/sources/manager_shapefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/manager_shapefile.py -------------------------------------------------------------------------------- /watershed_workflow/sources/manager_shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/manager_shapes.py -------------------------------------------------------------------------------- /watershed_workflow/sources/manager_soilgrids_2017.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/manager_soilgrids_2017.py -------------------------------------------------------------------------------- /watershed_workflow/sources/manager_wbd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/manager_wbd.py -------------------------------------------------------------------------------- /watershed_workflow/sources/standard_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/standard_names.py -------------------------------------------------------------------------------- /watershed_workflow/sources/test/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/test/fixtures.py -------------------------------------------------------------------------------- /watershed_workflow/sources/test/test_manager_3dep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/test/test_manager_3dep.py -------------------------------------------------------------------------------- /watershed_workflow/sources/test/test_manager_aorc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/test/test_manager_aorc.py -------------------------------------------------------------------------------- /watershed_workflow/sources/test/test_manager_appeears.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/test/test_manager_appeears.py -------------------------------------------------------------------------------- /watershed_workflow/sources/test/test_manager_basin3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/test/test_manager_basin3d.py -------------------------------------------------------------------------------- /watershed_workflow/sources/test/test_manager_daymet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/test/test_manager_daymet.py -------------------------------------------------------------------------------- /watershed_workflow/sources/test/test_manager_glhymps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/test/test_manager_glhymps.py -------------------------------------------------------------------------------- /watershed_workflow/sources/test/test_manager_nhd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/test/test_manager_nhd.py -------------------------------------------------------------------------------- /watershed_workflow/sources/test/test_manager_nlcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/test/test_manager_nlcd.py -------------------------------------------------------------------------------- /watershed_workflow/sources/test/test_manager_nrcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/test/test_manager_nrcs.py -------------------------------------------------------------------------------- /watershed_workflow/sources/test/test_manager_raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/test/test_manager_raster.py -------------------------------------------------------------------------------- /watershed_workflow/sources/test/test_manager_shapefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/test/test_manager_shapefile.py -------------------------------------------------------------------------------- /watershed_workflow/sources/test/test_manager_soilgrids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/test/test_manager_soilgrids.py -------------------------------------------------------------------------------- /watershed_workflow/sources/test/test_manager_wbd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/test/test_manager_wbd.py -------------------------------------------------------------------------------- /watershed_workflow/sources/test/test_source_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/test/test_source_names.py -------------------------------------------------------------------------------- /watershed_workflow/sources/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/sources/utils.py -------------------------------------------------------------------------------- /watershed_workflow/split_hucs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/split_hucs.py -------------------------------------------------------------------------------- /watershed_workflow/stream_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/stream_light.py -------------------------------------------------------------------------------- /watershed_workflow/test/FAIL_test_dem_interp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/FAIL_test_dem_interp.py -------------------------------------------------------------------------------- /watershed_workflow/test/FAIL_test_hilev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/FAIL_test_hilev.py -------------------------------------------------------------------------------- /watershed_workflow/test/crs_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/crs_fixtures.py -------------------------------------------------------------------------------- /watershed_workflow/test/data_test_streamlight/data_test_streamlight_parameters.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/data_test_streamlight/data_test_streamlight_parameters.csv -------------------------------------------------------------------------------- /watershed_workflow/test/data_test_streamlight/data_test_streamlight_time_series.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/data_test_streamlight/data_test_streamlight_time_series.csv -------------------------------------------------------------------------------- /watershed_workflow/test/fixture_data/hucs.cpg: -------------------------------------------------------------------------------- 1 | ISO-8859-1 -------------------------------------------------------------------------------- /watershed_workflow/test/fixture_data/hucs.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/fixture_data/hucs.dbf -------------------------------------------------------------------------------- /watershed_workflow/test/fixture_data/hucs.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/fixture_data/hucs.prj -------------------------------------------------------------------------------- /watershed_workflow/test/fixture_data/hucs.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/fixture_data/hucs.shp -------------------------------------------------------------------------------- /watershed_workflow/test/fixture_data/hucs.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/fixture_data/hucs.shx -------------------------------------------------------------------------------- /watershed_workflow/test/fixture_data/river_060102020103.cpg: -------------------------------------------------------------------------------- 1 | ISO-8859-1 -------------------------------------------------------------------------------- /watershed_workflow/test/fixture_data/river_060102020103.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/fixture_data/river_060102020103.dbf -------------------------------------------------------------------------------- /watershed_workflow/test/fixture_data/river_060102020103.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/fixture_data/river_060102020103.prj -------------------------------------------------------------------------------- /watershed_workflow/test/fixture_data/river_060102020103.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/fixture_data/river_060102020103.shp -------------------------------------------------------------------------------- /watershed_workflow/test/fixture_data/river_060102020103.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/fixture_data/river_060102020103.shx -------------------------------------------------------------------------------- /watershed_workflow/test/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/shapes.py -------------------------------------------------------------------------------- /watershed_workflow/test/source_fixture_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/source_fixture_helpers.py -------------------------------------------------------------------------------- /watershed_workflow/test/source_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/source_fixtures.py -------------------------------------------------------------------------------- /watershed_workflow/test/test_00_shapely.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_00_shapely.py -------------------------------------------------------------------------------- /watershed_workflow/test/test_01_crs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_01_crs.py -------------------------------------------------------------------------------- /watershed_workflow/test/test_02_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_02_utils.py -------------------------------------------------------------------------------- /watershed_workflow/test/test_02b_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_02b_data.py -------------------------------------------------------------------------------- /watershed_workflow/test/test_03_river_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_03_river_tree.py -------------------------------------------------------------------------------- /watershed_workflow/test/test_04_split_hucs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_04_split_hucs.py -------------------------------------------------------------------------------- /watershed_workflow/test/test_05_hydrography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_05_hydrography.py -------------------------------------------------------------------------------- /watershed_workflow/test/test_06_resampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_06_resampling.py -------------------------------------------------------------------------------- /watershed_workflow/test/test_07_angles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_07_angles.py -------------------------------------------------------------------------------- /watershed_workflow/test/test_08_triangulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_08_triangulate.py -------------------------------------------------------------------------------- /watershed_workflow/test/test_09_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_09_mesh.py -------------------------------------------------------------------------------- /watershed_workflow/test/test_10_mesh_mixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_10_mesh_mixed.py -------------------------------------------------------------------------------- /watershed_workflow/test/test_11_condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_11_condition.py -------------------------------------------------------------------------------- /watershed_workflow/test/test_12_soil_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_12_soil_properties.py -------------------------------------------------------------------------------- /watershed_workflow/test/test_13_land_cover_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_13_land_cover_properties.py -------------------------------------------------------------------------------- /watershed_workflow/test/test_14_find_huc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_14_find_huc.py -------------------------------------------------------------------------------- /watershed_workflow/test/test_14_find_huc/copper_creek.cpg: -------------------------------------------------------------------------------- 1 | ISO-8859-1 -------------------------------------------------------------------------------- /watershed_workflow/test/test_14_find_huc/copper_creek.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_14_find_huc/copper_creek.dbf -------------------------------------------------------------------------------- /watershed_workflow/test/test_14_find_huc/copper_creek.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_14_find_huc/copper_creek.prj -------------------------------------------------------------------------------- /watershed_workflow/test/test_14_find_huc/copper_creek.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_14_find_huc/copper_creek.shp -------------------------------------------------------------------------------- /watershed_workflow/test/test_14_find_huc/copper_creek.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_14_find_huc/copper_creek.shx -------------------------------------------------------------------------------- /watershed_workflow/test/test_14_find_huc/test_polygon.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_14_find_huc/test_polygon.dbf -------------------------------------------------------------------------------- /watershed_workflow/test/test_14_find_huc/test_polygon.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_14_find_huc/test_polygon.prj -------------------------------------------------------------------------------- /watershed_workflow/test/test_14_find_huc/test_polygon.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_14_find_huc/test_polygon.sbn -------------------------------------------------------------------------------- /watershed_workflow/test/test_14_find_huc/test_polygon.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_14_find_huc/test_polygon.sbx -------------------------------------------------------------------------------- /watershed_workflow/test/test_14_find_huc/test_polygon.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_14_find_huc/test_polygon.shp -------------------------------------------------------------------------------- /watershed_workflow/test/test_14_find_huc/test_polygon.shp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_14_find_huc/test_polygon.shp.xml -------------------------------------------------------------------------------- /watershed_workflow/test/test_14_find_huc/test_polygon.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_14_find_huc/test_polygon.shx -------------------------------------------------------------------------------- /watershed_workflow/test/test_14_find_huc/test_shapefile.cpg: -------------------------------------------------------------------------------- 1 | ISO-8859-1 -------------------------------------------------------------------------------- /watershed_workflow/test/test_14_find_huc/test_shapefile.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_14_find_huc/test_shapefile.dbf -------------------------------------------------------------------------------- /watershed_workflow/test/test_14_find_huc/test_shapefile.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_14_find_huc/test_shapefile.prj -------------------------------------------------------------------------------- /watershed_workflow/test/test_14_find_huc/test_shapefile.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_14_find_huc/test_shapefile.shp -------------------------------------------------------------------------------- /watershed_workflow/test/test_14_find_huc/test_shapefile.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_14_find_huc/test_shapefile.shx -------------------------------------------------------------------------------- /watershed_workflow/test/test_15_stream_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_15_stream_light.py -------------------------------------------------------------------------------- /watershed_workflow/test/test_plot_gold.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/test/test_plot_gold.pickle -------------------------------------------------------------------------------- /watershed_workflow/tinytree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/tinytree.py -------------------------------------------------------------------------------- /watershed_workflow/triangulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/triangulation.py -------------------------------------------------------------------------------- /watershed_workflow/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/ui.py -------------------------------------------------------------------------------- /watershed_workflow/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/utils.py -------------------------------------------------------------------------------- /watershed_workflow/vtk_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/vtk_io.py -------------------------------------------------------------------------------- /watershed_workflow/warp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflow/warp.py -------------------------------------------------------------------------------- /watershed_workflowrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/environmental-modeling-workflows/watershed-workflow/HEAD/watershed_workflowrc --------------------------------------------------------------------------------