├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── documentation_improvement.yml │ └── feature_request.yml ├── pull_request_template.md └── workflows │ ├── ci.yml │ ├── docs.yml │ ├── linting.yml │ └── publish.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .yamlfmt ├── LICENSE ├── README.rst ├── docs ├── Makefile ├── _static │ ├── deltares-blue.svg │ ├── deltares-white.svg │ ├── hydromt-icon.svg │ ├── logo_delft3dfm.png │ └── theme-deltares.css ├── _templates │ └── .gitignore ├── api.rst ├── changelog.rst ├── conf.py ├── dev_guide │ ├── contributors.rst │ ├── dev_install.rst │ ├── intro.rst │ ├── release.rst │ └── roadmap.rst ├── features 2023.png ├── getting_started │ ├── example_index.rst │ ├── faq.rst │ ├── installation.rst │ └── intro.rst ├── index.rst ├── make.bat └── user_guide │ ├── dflowfm.rst │ ├── dflowfm_build.rst │ ├── dflowfm_model_setup.rst │ ├── dflowfm_update.rst │ └── intro.rst ├── examples ├── README.rst ├── build_1d2dmodel.ipynb ├── build_1dmodel.ipynb ├── build_2dmodel.ipynb ├── data │ └── refine.geojson ├── dflowfm_build1d.yml ├── dflowfm_build2d.yml ├── dflowfm_build_local.yml ├── dflowfm_build_piave.yml ├── dflowfm_local │ ├── dflowfm │ │ ├── 0.pli │ │ ├── 1.pli │ │ ├── DFlowFM.mdu │ │ ├── bnd.ext │ │ ├── boundarycondition1d.bc │ │ ├── boundaryconditions2d_0.bc │ │ ├── boundaryconditions2d_1.bc │ │ ├── branches.gui │ │ ├── crsdef.ini │ │ ├── crsloc.ini │ │ ├── fieldFile.ini │ │ ├── fm_net.nc │ │ ├── lateral1d.bc │ │ ├── meteo_boundaryconditions.bc │ │ ├── nodeFile.ini │ │ ├── roughness_Manning_0.023.ini │ │ ├── roughness_WhiteColeBrook_0.003.ini │ │ └── structures.ini │ ├── dimr_config.xml │ ├── geoms │ │ ├── boundaries.geojson │ │ ├── branches.geojson │ │ ├── bridges.geojson │ │ ├── crosssections.geojson │ │ ├── culverts.geojson │ │ ├── manholes.geojson │ │ ├── mesh1d.geojson │ │ ├── mesh2d.geojson │ │ ├── network1d.geojson │ │ ├── pipe_nodes.geojson │ │ ├── pipes.geojson │ │ ├── region.geojson │ │ ├── rivers.geojson │ │ └── rivers_nodes.geojson │ ├── hydromt_data.yml │ └── maps │ │ └── bedlevel.tif ├── dflowfm_piave │ ├── dflowfm │ │ ├── DFlowFM.mdu │ │ ├── bnd.ext │ │ ├── boundarycondition1d.bc │ │ ├── branches.gui │ │ ├── crsdef.ini │ │ ├── crsloc.ini │ │ ├── fieldFile.ini │ │ ├── fm_net.nc │ │ ├── meteo_boundaryconditions.bc │ │ ├── nodeFile.ini │ │ ├── roughness_Manning_0.023.ini │ │ └── roughness_WhiteColeBrook_0.003.ini │ ├── dimr_config.xml │ ├── geoms │ │ ├── boundaries.geojson │ │ ├── branches.geojson │ │ ├── crosssections.geojson │ │ ├── manholes.geojson │ │ ├── mesh1d.geojson │ │ ├── mesh2d.geojson │ │ ├── network1d.geojson │ │ ├── pipe_nodes.geojson │ │ ├── pipes.geojson │ │ ├── region.geojson │ │ ├── rivers.geojson │ │ └── rivers_nodes.geojson │ ├── hydromt_data.yml │ └── maps │ │ ├── InfiltrationCapacity.tif │ │ ├── bedlevel.tif │ │ └── frictioncoefficient.tif ├── dflowfm_update_mesh2d_refine.yml ├── hydromt_tutorial.ipynb ├── plot_dflowfm_mesh.ipynb └── update_refine_2dgrid.ipynb ├── hydromt_delft3dfm ├── __init__.py ├── data │ ├── branches │ │ ├── channels_defaults.csv │ │ ├── pipes_defaults.csv │ │ └── rivers_defaults.csv │ ├── dflowfm │ │ └── DFlowFM.mdu │ ├── landuse │ │ ├── corine_mapping.csv │ │ └── vito_mapping.csv │ ├── parameters_data.yml │ ├── storages │ │ ├── manholes_defaults.csv │ │ └── retentions_defaults.csv │ └── structures │ │ ├── bridges_defaults.csv │ │ └── culverts_defaults.csv ├── dflowfm.py ├── gis_utils.py ├── graph_utils.py ├── mesh_utils.py ├── utils.py └── workflows │ ├── __init__.py │ ├── boundaries.py │ ├── branches.py │ ├── crosssections.py │ ├── dem.py │ ├── manholes.py │ ├── mesh.py │ ├── region.py │ ├── roughness.py │ └── structures.py ├── pyproject.toml └── tests ├── __init__.py ├── data ├── data_catalog_local.yaml ├── dflowfm_build_local.yml ├── dflowfm_build_piave.yml └── local_data │ ├── 1D_branches.geojson │ ├── 1D_extent.geojson │ ├── 1D_rivers.geojson │ ├── 1D_rivers_pointcrosssections.geojson │ ├── 1D_rivers_xyzcrosssections.geojson │ ├── 2D_grid_extent.geojson │ ├── 2d_boundary.geojson │ ├── 2dboundaries_series.csv │ ├── boundaries.geojson │ ├── boundaries_series.csv │ ├── bridges.geojson │ ├── citycenter.geojson │ ├── citycenter.qmd │ ├── compounds.geojson │ ├── culverts.geojson │ ├── dem.tif │ ├── frictioncoefficient.tif │ ├── gates.geojson │ ├── laterals_points.geojson │ ├── laterals_polygons.geojson │ ├── laterals_series.csv │ ├── manholes.geojson │ ├── manholes.qmd │ ├── orifices.geojson │ ├── outfalls.geojson │ ├── outfalls.qmd │ ├── pumps.geojson │ ├── rainfall_series.csv │ ├── region.geojson │ ├── retention_ponds.geojson │ ├── roads.tiff │ ├── smallextent.geojson │ ├── subcatchments.geojson │ ├── weirs.geojson │ └── xyz_crosssections.geojson ├── test_dflowfm.py ├── test_hydromt.py ├── test_workflows_crosssections.py └── test_workflows_mesh.py /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | blank_issues_enabled: false 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_improvement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/.github/ISSUE_TEMPLATE/documentation_improvement.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/.github/workflows/linting.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.yamlfmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/.yamlfmt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/deltares-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/_static/deltares-blue.svg -------------------------------------------------------------------------------- /docs/_static/deltares-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/_static/deltares-white.svg -------------------------------------------------------------------------------- /docs/_static/hydromt-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/_static/hydromt-icon.svg -------------------------------------------------------------------------------- /docs/_static/logo_delft3dfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/_static/logo_delft3dfm.png -------------------------------------------------------------------------------- /docs/_static/theme-deltares.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/_static/theme-deltares.css -------------------------------------------------------------------------------- /docs/_templates/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/dev_guide/contributors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/dev_guide/contributors.rst -------------------------------------------------------------------------------- /docs/dev_guide/dev_install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/dev_guide/dev_install.rst -------------------------------------------------------------------------------- /docs/dev_guide/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/dev_guide/intro.rst -------------------------------------------------------------------------------- /docs/dev_guide/release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/dev_guide/release.rst -------------------------------------------------------------------------------- /docs/dev_guide/roadmap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/dev_guide/roadmap.rst -------------------------------------------------------------------------------- /docs/features 2023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/features 2023.png -------------------------------------------------------------------------------- /docs/getting_started/example_index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/getting_started/example_index.rst -------------------------------------------------------------------------------- /docs/getting_started/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/getting_started/faq.rst -------------------------------------------------------------------------------- /docs/getting_started/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/getting_started/installation.rst -------------------------------------------------------------------------------- /docs/getting_started/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/getting_started/intro.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/user_guide/dflowfm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/user_guide/dflowfm.rst -------------------------------------------------------------------------------- /docs/user_guide/dflowfm_build.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/user_guide/dflowfm_build.rst -------------------------------------------------------------------------------- /docs/user_guide/dflowfm_model_setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/user_guide/dflowfm_model_setup.rst -------------------------------------------------------------------------------- /docs/user_guide/dflowfm_update.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/user_guide/dflowfm_update.rst -------------------------------------------------------------------------------- /docs/user_guide/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/docs/user_guide/intro.rst -------------------------------------------------------------------------------- /examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/README.rst -------------------------------------------------------------------------------- /examples/build_1d2dmodel.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/build_1d2dmodel.ipynb -------------------------------------------------------------------------------- /examples/build_1dmodel.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/build_1dmodel.ipynb -------------------------------------------------------------------------------- /examples/build_2dmodel.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/build_2dmodel.ipynb -------------------------------------------------------------------------------- /examples/data/refine.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/data/refine.geojson -------------------------------------------------------------------------------- /examples/dflowfm_build1d.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_build1d.yml -------------------------------------------------------------------------------- /examples/dflowfm_build2d.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_build2d.yml -------------------------------------------------------------------------------- /examples/dflowfm_build_local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_build_local.yml -------------------------------------------------------------------------------- /examples/dflowfm_build_piave.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_build_piave.yml -------------------------------------------------------------------------------- /examples/dflowfm_local/dflowfm/0.pli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/dflowfm/0.pli -------------------------------------------------------------------------------- /examples/dflowfm_local/dflowfm/1.pli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/dflowfm/1.pli -------------------------------------------------------------------------------- /examples/dflowfm_local/dflowfm/DFlowFM.mdu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/dflowfm/DFlowFM.mdu -------------------------------------------------------------------------------- /examples/dflowfm_local/dflowfm/bnd.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/dflowfm/bnd.ext -------------------------------------------------------------------------------- /examples/dflowfm_local/dflowfm/boundarycondition1d.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/dflowfm/boundarycondition1d.bc -------------------------------------------------------------------------------- /examples/dflowfm_local/dflowfm/boundaryconditions2d_0.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/dflowfm/boundaryconditions2d_0.bc -------------------------------------------------------------------------------- /examples/dflowfm_local/dflowfm/boundaryconditions2d_1.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/dflowfm/boundaryconditions2d_1.bc -------------------------------------------------------------------------------- /examples/dflowfm_local/dflowfm/branches.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/dflowfm/branches.gui -------------------------------------------------------------------------------- /examples/dflowfm_local/dflowfm/crsdef.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/dflowfm/crsdef.ini -------------------------------------------------------------------------------- /examples/dflowfm_local/dflowfm/crsloc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/dflowfm/crsloc.ini -------------------------------------------------------------------------------- /examples/dflowfm_local/dflowfm/fieldFile.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/dflowfm/fieldFile.ini -------------------------------------------------------------------------------- /examples/dflowfm_local/dflowfm/fm_net.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/dflowfm/fm_net.nc -------------------------------------------------------------------------------- /examples/dflowfm_local/dflowfm/lateral1d.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/dflowfm/lateral1d.bc -------------------------------------------------------------------------------- /examples/dflowfm_local/dflowfm/meteo_boundaryconditions.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/dflowfm/meteo_boundaryconditions.bc -------------------------------------------------------------------------------- /examples/dflowfm_local/dflowfm/nodeFile.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/dflowfm/nodeFile.ini -------------------------------------------------------------------------------- /examples/dflowfm_local/dflowfm/roughness_Manning_0.023.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/dflowfm/roughness_Manning_0.023.ini -------------------------------------------------------------------------------- /examples/dflowfm_local/dflowfm/roughness_WhiteColeBrook_0.003.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/dflowfm/roughness_WhiteColeBrook_0.003.ini -------------------------------------------------------------------------------- /examples/dflowfm_local/dflowfm/structures.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/dflowfm/structures.ini -------------------------------------------------------------------------------- /examples/dflowfm_local/dimr_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/dimr_config.xml -------------------------------------------------------------------------------- /examples/dflowfm_local/geoms/boundaries.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/geoms/boundaries.geojson -------------------------------------------------------------------------------- /examples/dflowfm_local/geoms/branches.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/geoms/branches.geojson -------------------------------------------------------------------------------- /examples/dflowfm_local/geoms/bridges.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/geoms/bridges.geojson -------------------------------------------------------------------------------- /examples/dflowfm_local/geoms/crosssections.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/geoms/crosssections.geojson -------------------------------------------------------------------------------- /examples/dflowfm_local/geoms/culverts.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/geoms/culverts.geojson -------------------------------------------------------------------------------- /examples/dflowfm_local/geoms/manholes.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/geoms/manholes.geojson -------------------------------------------------------------------------------- /examples/dflowfm_local/geoms/mesh1d.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/geoms/mesh1d.geojson -------------------------------------------------------------------------------- /examples/dflowfm_local/geoms/mesh2d.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/geoms/mesh2d.geojson -------------------------------------------------------------------------------- /examples/dflowfm_local/geoms/network1d.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/geoms/network1d.geojson -------------------------------------------------------------------------------- /examples/dflowfm_local/geoms/pipe_nodes.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/geoms/pipe_nodes.geojson -------------------------------------------------------------------------------- /examples/dflowfm_local/geoms/pipes.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/geoms/pipes.geojson -------------------------------------------------------------------------------- /examples/dflowfm_local/geoms/region.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/geoms/region.geojson -------------------------------------------------------------------------------- /examples/dflowfm_local/geoms/rivers.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/geoms/rivers.geojson -------------------------------------------------------------------------------- /examples/dflowfm_local/geoms/rivers_nodes.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/geoms/rivers_nodes.geojson -------------------------------------------------------------------------------- /examples/dflowfm_local/hydromt_data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/hydromt_data.yml -------------------------------------------------------------------------------- /examples/dflowfm_local/maps/bedlevel.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_local/maps/bedlevel.tif -------------------------------------------------------------------------------- /examples/dflowfm_piave/dflowfm/DFlowFM.mdu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/dflowfm/DFlowFM.mdu -------------------------------------------------------------------------------- /examples/dflowfm_piave/dflowfm/bnd.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/dflowfm/bnd.ext -------------------------------------------------------------------------------- /examples/dflowfm_piave/dflowfm/boundarycondition1d.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/dflowfm/boundarycondition1d.bc -------------------------------------------------------------------------------- /examples/dflowfm_piave/dflowfm/branches.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/dflowfm/branches.gui -------------------------------------------------------------------------------- /examples/dflowfm_piave/dflowfm/crsdef.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/dflowfm/crsdef.ini -------------------------------------------------------------------------------- /examples/dflowfm_piave/dflowfm/crsloc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/dflowfm/crsloc.ini -------------------------------------------------------------------------------- /examples/dflowfm_piave/dflowfm/fieldFile.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/dflowfm/fieldFile.ini -------------------------------------------------------------------------------- /examples/dflowfm_piave/dflowfm/fm_net.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/dflowfm/fm_net.nc -------------------------------------------------------------------------------- /examples/dflowfm_piave/dflowfm/meteo_boundaryconditions.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/dflowfm/meteo_boundaryconditions.bc -------------------------------------------------------------------------------- /examples/dflowfm_piave/dflowfm/nodeFile.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/dflowfm/nodeFile.ini -------------------------------------------------------------------------------- /examples/dflowfm_piave/dflowfm/roughness_Manning_0.023.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/dflowfm/roughness_Manning_0.023.ini -------------------------------------------------------------------------------- /examples/dflowfm_piave/dflowfm/roughness_WhiteColeBrook_0.003.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/dflowfm/roughness_WhiteColeBrook_0.003.ini -------------------------------------------------------------------------------- /examples/dflowfm_piave/dimr_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/dimr_config.xml -------------------------------------------------------------------------------- /examples/dflowfm_piave/geoms/boundaries.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/geoms/boundaries.geojson -------------------------------------------------------------------------------- /examples/dflowfm_piave/geoms/branches.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/geoms/branches.geojson -------------------------------------------------------------------------------- /examples/dflowfm_piave/geoms/crosssections.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/geoms/crosssections.geojson -------------------------------------------------------------------------------- /examples/dflowfm_piave/geoms/manholes.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/geoms/manholes.geojson -------------------------------------------------------------------------------- /examples/dflowfm_piave/geoms/mesh1d.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/geoms/mesh1d.geojson -------------------------------------------------------------------------------- /examples/dflowfm_piave/geoms/mesh2d.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/geoms/mesh2d.geojson -------------------------------------------------------------------------------- /examples/dflowfm_piave/geoms/network1d.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/geoms/network1d.geojson -------------------------------------------------------------------------------- /examples/dflowfm_piave/geoms/pipe_nodes.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/geoms/pipe_nodes.geojson -------------------------------------------------------------------------------- /examples/dflowfm_piave/geoms/pipes.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/geoms/pipes.geojson -------------------------------------------------------------------------------- /examples/dflowfm_piave/geoms/region.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/geoms/region.geojson -------------------------------------------------------------------------------- /examples/dflowfm_piave/geoms/rivers.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/geoms/rivers.geojson -------------------------------------------------------------------------------- /examples/dflowfm_piave/geoms/rivers_nodes.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/geoms/rivers_nodes.geojson -------------------------------------------------------------------------------- /examples/dflowfm_piave/hydromt_data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/hydromt_data.yml -------------------------------------------------------------------------------- /examples/dflowfm_piave/maps/InfiltrationCapacity.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/maps/InfiltrationCapacity.tif -------------------------------------------------------------------------------- /examples/dflowfm_piave/maps/bedlevel.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/maps/bedlevel.tif -------------------------------------------------------------------------------- /examples/dflowfm_piave/maps/frictioncoefficient.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_piave/maps/frictioncoefficient.tif -------------------------------------------------------------------------------- /examples/dflowfm_update_mesh2d_refine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/dflowfm_update_mesh2d_refine.yml -------------------------------------------------------------------------------- /examples/hydromt_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/hydromt_tutorial.ipynb -------------------------------------------------------------------------------- /examples/plot_dflowfm_mesh.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/plot_dflowfm_mesh.ipynb -------------------------------------------------------------------------------- /examples/update_refine_2dgrid.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/examples/update_refine_2dgrid.ipynb -------------------------------------------------------------------------------- /hydromt_delft3dfm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/__init__.py -------------------------------------------------------------------------------- /hydromt_delft3dfm/data/branches/channels_defaults.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/data/branches/channels_defaults.csv -------------------------------------------------------------------------------- /hydromt_delft3dfm/data/branches/pipes_defaults.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/data/branches/pipes_defaults.csv -------------------------------------------------------------------------------- /hydromt_delft3dfm/data/branches/rivers_defaults.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/data/branches/rivers_defaults.csv -------------------------------------------------------------------------------- /hydromt_delft3dfm/data/dflowfm/DFlowFM.mdu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/data/dflowfm/DFlowFM.mdu -------------------------------------------------------------------------------- /hydromt_delft3dfm/data/landuse/corine_mapping.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/data/landuse/corine_mapping.csv -------------------------------------------------------------------------------- /hydromt_delft3dfm/data/landuse/vito_mapping.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/data/landuse/vito_mapping.csv -------------------------------------------------------------------------------- /hydromt_delft3dfm/data/parameters_data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/data/parameters_data.yml -------------------------------------------------------------------------------- /hydromt_delft3dfm/data/storages/manholes_defaults.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/data/storages/manholes_defaults.csv -------------------------------------------------------------------------------- /hydromt_delft3dfm/data/storages/retentions_defaults.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/data/storages/retentions_defaults.csv -------------------------------------------------------------------------------- /hydromt_delft3dfm/data/structures/bridges_defaults.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/data/structures/bridges_defaults.csv -------------------------------------------------------------------------------- /hydromt_delft3dfm/data/structures/culverts_defaults.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/data/structures/culverts_defaults.csv -------------------------------------------------------------------------------- /hydromt_delft3dfm/dflowfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/dflowfm.py -------------------------------------------------------------------------------- /hydromt_delft3dfm/gis_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/gis_utils.py -------------------------------------------------------------------------------- /hydromt_delft3dfm/graph_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/graph_utils.py -------------------------------------------------------------------------------- /hydromt_delft3dfm/mesh_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/mesh_utils.py -------------------------------------------------------------------------------- /hydromt_delft3dfm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/utils.py -------------------------------------------------------------------------------- /hydromt_delft3dfm/workflows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/workflows/__init__.py -------------------------------------------------------------------------------- /hydromt_delft3dfm/workflows/boundaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/workflows/boundaries.py -------------------------------------------------------------------------------- /hydromt_delft3dfm/workflows/branches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/workflows/branches.py -------------------------------------------------------------------------------- /hydromt_delft3dfm/workflows/crosssections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/workflows/crosssections.py -------------------------------------------------------------------------------- /hydromt_delft3dfm/workflows/dem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/workflows/dem.py -------------------------------------------------------------------------------- /hydromt_delft3dfm/workflows/manholes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/workflows/manholes.py -------------------------------------------------------------------------------- /hydromt_delft3dfm/workflows/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/workflows/mesh.py -------------------------------------------------------------------------------- /hydromt_delft3dfm/workflows/region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/workflows/region.py -------------------------------------------------------------------------------- /hydromt_delft3dfm/workflows/roughness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/workflows/roughness.py -------------------------------------------------------------------------------- /hydromt_delft3dfm/workflows/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/hydromt_delft3dfm/workflows/structures.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/data_catalog_local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/data_catalog_local.yaml -------------------------------------------------------------------------------- /tests/data/dflowfm_build_local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/dflowfm_build_local.yml -------------------------------------------------------------------------------- /tests/data/dflowfm_build_piave.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/dflowfm_build_piave.yml -------------------------------------------------------------------------------- /tests/data/local_data/1D_branches.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/1D_branches.geojson -------------------------------------------------------------------------------- /tests/data/local_data/1D_extent.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/1D_extent.geojson -------------------------------------------------------------------------------- /tests/data/local_data/1D_rivers.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/1D_rivers.geojson -------------------------------------------------------------------------------- /tests/data/local_data/1D_rivers_pointcrosssections.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/1D_rivers_pointcrosssections.geojson -------------------------------------------------------------------------------- /tests/data/local_data/1D_rivers_xyzcrosssections.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/1D_rivers_xyzcrosssections.geojson -------------------------------------------------------------------------------- /tests/data/local_data/2D_grid_extent.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/2D_grid_extent.geojson -------------------------------------------------------------------------------- /tests/data/local_data/2d_boundary.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/2d_boundary.geojson -------------------------------------------------------------------------------- /tests/data/local_data/2dboundaries_series.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/2dboundaries_series.csv -------------------------------------------------------------------------------- /tests/data/local_data/boundaries.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/boundaries.geojson -------------------------------------------------------------------------------- /tests/data/local_data/boundaries_series.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/boundaries_series.csv -------------------------------------------------------------------------------- /tests/data/local_data/bridges.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/bridges.geojson -------------------------------------------------------------------------------- /tests/data/local_data/citycenter.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/citycenter.geojson -------------------------------------------------------------------------------- /tests/data/local_data/citycenter.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/citycenter.qmd -------------------------------------------------------------------------------- /tests/data/local_data/compounds.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/compounds.geojson -------------------------------------------------------------------------------- /tests/data/local_data/culverts.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/culverts.geojson -------------------------------------------------------------------------------- /tests/data/local_data/dem.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/dem.tif -------------------------------------------------------------------------------- /tests/data/local_data/frictioncoefficient.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/frictioncoefficient.tif -------------------------------------------------------------------------------- /tests/data/local_data/gates.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/gates.geojson -------------------------------------------------------------------------------- /tests/data/local_data/laterals_points.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/laterals_points.geojson -------------------------------------------------------------------------------- /tests/data/local_data/laterals_polygons.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/laterals_polygons.geojson -------------------------------------------------------------------------------- /tests/data/local_data/laterals_series.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/laterals_series.csv -------------------------------------------------------------------------------- /tests/data/local_data/manholes.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/manholes.geojson -------------------------------------------------------------------------------- /tests/data/local_data/manholes.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/manholes.qmd -------------------------------------------------------------------------------- /tests/data/local_data/orifices.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/orifices.geojson -------------------------------------------------------------------------------- /tests/data/local_data/outfalls.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/outfalls.geojson -------------------------------------------------------------------------------- /tests/data/local_data/outfalls.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/outfalls.qmd -------------------------------------------------------------------------------- /tests/data/local_data/pumps.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/pumps.geojson -------------------------------------------------------------------------------- /tests/data/local_data/rainfall_series.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/rainfall_series.csv -------------------------------------------------------------------------------- /tests/data/local_data/region.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/region.geojson -------------------------------------------------------------------------------- /tests/data/local_data/retention_ponds.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/retention_ponds.geojson -------------------------------------------------------------------------------- /tests/data/local_data/roads.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/roads.tiff -------------------------------------------------------------------------------- /tests/data/local_data/smallextent.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/smallextent.geojson -------------------------------------------------------------------------------- /tests/data/local_data/subcatchments.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/subcatchments.geojson -------------------------------------------------------------------------------- /tests/data/local_data/weirs.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/weirs.geojson -------------------------------------------------------------------------------- /tests/data/local_data/xyz_crosssections.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/data/local_data/xyz_crosssections.geojson -------------------------------------------------------------------------------- /tests/test_dflowfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/test_dflowfm.py -------------------------------------------------------------------------------- /tests/test_hydromt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/test_hydromt.py -------------------------------------------------------------------------------- /tests/test_workflows_crosssections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/test_workflows_crosssections.py -------------------------------------------------------------------------------- /tests/test_workflows_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deltares/hydromt_delft3dfm/HEAD/tests/test_workflows_mesh.py --------------------------------------------------------------------------------