├── .gitattributes ├── .github └── workflows │ ├── black.yml │ ├── docs.yml │ ├── flake8.yml │ ├── test-notebooks.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── .readthedocs.yaml ├── AUTHORS.rst ├── CHANGELOG.rst ├── CITATION.cff ├── CONTRIBUTING.rst ├── LICENSE.rst ├── MANIFEST.in ├── Makefile ├── README.rst ├── cmt └── __init__.py ├── conftest.py ├── deprecated ├── component_info.py ├── grids │ └── vtk_mixin.py ├── nsdict.py ├── ordered_task_status.py ├── plugin.py ├── portprinter │ └── tests │ │ ├── test_bov_port_printer.py │ │ └── test_vtk_port_printer.py ├── printers │ ├── bov │ │ ├── __init__.py │ │ ├── bov_io.py │ │ ├── database.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_database.py │ │ │ └── test_write.py │ └── vtk │ │ ├── __init__.py │ │ ├── encoders.py │ │ ├── rect.vti │ │ ├── rect.vts │ │ ├── tests │ │ ├── __init__.py │ │ └── test_vtk.py │ │ ├── vti.py │ │ ├── vtk.py │ │ ├── vtktypes.py │ │ ├── vtkxml.py │ │ ├── vtr.py │ │ ├── vts.py │ │ └── vtu.py ├── status.py ├── task_status.py ├── test_component_info.py ├── testing │ └── assertions.py ├── tests │ ├── test_nsdict.py │ ├── test_ordered_tasks.py │ └── test_task_status.py └── utils │ ├── decorators.py │ ├── run_dir.py │ ├── tests │ ├── test_run_dir.py │ └── test_which.py │ ├── verbose.py │ └── which.py ├── docs ├── Makefile ├── _static │ ├── apple.svg │ ├── hydrotrend-discharge.png │ ├── linux.svg │ ├── powered-by-logo-header.png │ ├── pymt-logo-header-text.png │ ├── pymt-logo-header.png │ └── windows.svg ├── _templates │ ├── links.html │ └── sidebarintro.html ├── api │ └── index.rst ├── authors.rst ├── conda-environments.rst ├── conf.py ├── contributing.rst ├── environment.yml ├── examples.rst ├── glossary.rst ├── history.rst ├── index.rst ├── install.rst ├── installation-check.rst ├── installation-environment.rst ├── license.rst ├── make.bat ├── models.rst ├── quickstart.rst ├── readme.rst ├── scripts │ └── make_table.py └── usage.rst ├── environment-docs.yml ├── environment.yml ├── news └── .gitignore ├── notebooks ├── Ganges │ ├── HYDRO.CLIMATE │ ├── HYDRO.IN │ ├── HYDRO0.HYPS │ └── hydro_config.txt ├── README.md ├── RhineBedload.csv ├── cem.ipynb ├── cem_and_waves.ipynb ├── child.ipynb ├── conftest.py ├── ecsimplesnow.ipynb ├── exclude.yml ├── frost_number.ipynb ├── gipl.ipynb ├── gipl_and_ecsimplesnow.ipynb ├── hydrotrend.ipynb ├── hydrotrend_Ganges.ipynb ├── ku.ipynb ├── sedflux3d.ipynb ├── sedflux3d_and_child.ipynb ├── subside.ipynb ├── test_notebooks.py └── welcome.ipynb ├── pymt ├── __init__.py ├── _version.py ├── bmi │ ├── __init__.py │ └── bmi.py ├── cmd │ ├── __init__.py │ └── cmt_config.py ├── component │ ├── __init__.py │ ├── component.py │ ├── grid.py │ └── model.py ├── errors.py ├── events │ ├── __init__.py │ ├── chain.py │ ├── empty.py │ ├── manager.py │ ├── port.py │ └── printer.py ├── framework │ ├── __init__.py │ ├── bmi_bridge.py │ ├── bmi_docstring.py │ ├── bmi_mapper.py │ ├── bmi_plot.py │ ├── bmi_setup.py │ ├── bmi_timeinterp.py │ ├── bmi_ugrid.py │ ├── services.py │ └── timeinterp.py ├── grids │ ├── __init__.py │ ├── assertions.py │ ├── connectivity.py │ ├── esmp.py │ ├── field.py │ ├── grid_type.py │ ├── igrid.py │ ├── map.py │ ├── meshgrid.py │ ├── raster.py │ ├── rectilinear.py │ ├── structured.py │ ├── unstructured.py │ └── utils.py ├── mappers │ ├── __init__.py │ ├── celltopoint.py │ ├── esmp.py │ ├── imapper.py │ ├── mapper.py │ ├── pointtocell.py │ └── pointtopoint.py ├── model_collection.py ├── models.py ├── portprinter │ ├── __init__.py │ ├── port_printer.py │ └── utils.py ├── printers │ ├── __init__.py │ └── nc │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── database.py │ │ ├── read.py │ │ ├── ugrid.py │ │ ├── ugrid_read.py │ │ └── write.py ├── services │ ├── __init__.py │ ├── constant │ │ ├── __init__.py │ │ ├── constant.py │ │ └── river.py │ └── gridreader │ │ ├── __init__.py │ │ ├── gridreader.py │ │ ├── interpolate.py │ │ └── time_series_names.py ├── testing │ ├── __init__.py │ ├── ports.py │ └── services.py ├── timeline.py ├── units.py └── utils │ ├── __init__.py │ ├── prefix.py │ └── utils.py ├── pyproject.toml ├── requirements-dev.txt ├── requirements-docs.txt ├── requirements-notebooks.txt ├── requirements-testing.txt ├── requirements.txt ├── scripts ├── changelog.py ├── prm2input.py ├── prm2template.py ├── prmscan.py ├── quickstart.py └── vtu2ncu.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── component ├── __init__.py ├── conftest.py ├── test_grid_mixin.py ├── test_map_component.py ├── test_model.py ├── test_one_component.py ├── test_recursive.py └── test_two_components.py ├── events ├── __init__.py ├── conftest.py ├── test_chain_events.py ├── test_port_events.py ├── test_port_map_events.py └── test_print_events.py ├── framework ├── __init__.py ├── test_bmi_docstring.py ├── test_bmi_time_units.py ├── test_bmi_ugrid.py ├── test_bmi_var_units.py ├── test_setup.py └── test_timeinterp.py ├── grids ├── __init__.py ├── test_assertions.py ├── test_esmp.py ├── test_field.py ├── test_grid_type.py ├── test_raster.py ├── test_rectilinear.py ├── test_structured.py ├── test_unstructured.py └── test_utils.py ├── mappers ├── __init__.py ├── test_mapper.py └── test_pointtopoint.py ├── portprinter ├── __init__.py ├── conftest.py ├── test_nc_port_printer.py ├── test_port_printer_queue.py └── test_utils.py ├── printers └── nc │ ├── __init__.py │ ├── test_database.py │ ├── test_nc.py │ ├── test_nc_examples.py │ ├── test_ugrid.py │ ├── test_ugrid_read.py │ └── test_ugrid_read │ ├── rectilinear.1d.nc │ ├── rectilinear.2d.nc │ ├── rectilinear.3d.nc │ └── unstructured.2d.nc ├── services ├── constant │ ├── __init__.py │ └── test_constant_scalar.py └── gridreader │ └── test_time_series_names.py ├── test_models.py ├── test_timeline.py └── test_units.py /.gitattributes: -------------------------------------------------------------------------------- 1 | pymt/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.github/workflows/black.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/.github/workflows/black.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/flake8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/.github/workflows/flake8.yml -------------------------------------------------------------------------------- /.github/workflows/test-notebooks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/.github/workflows/test-notebooks.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/.gitmodules -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/README.rst -------------------------------------------------------------------------------- /cmt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/cmt/__init__.py -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/conftest.py -------------------------------------------------------------------------------- /deprecated/component_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/component_info.py -------------------------------------------------------------------------------- /deprecated/grids/vtk_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/grids/vtk_mixin.py -------------------------------------------------------------------------------- /deprecated/nsdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/nsdict.py -------------------------------------------------------------------------------- /deprecated/ordered_task_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/ordered_task_status.py -------------------------------------------------------------------------------- /deprecated/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/plugin.py -------------------------------------------------------------------------------- /deprecated/portprinter/tests/test_bov_port_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/portprinter/tests/test_bov_port_printer.py -------------------------------------------------------------------------------- /deprecated/portprinter/tests/test_vtk_port_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/portprinter/tests/test_vtk_port_printer.py -------------------------------------------------------------------------------- /deprecated/printers/bov/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deprecated/printers/bov/bov_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/printers/bov/bov_io.py -------------------------------------------------------------------------------- /deprecated/printers/bov/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/printers/bov/database.py -------------------------------------------------------------------------------- /deprecated/printers/bov/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deprecated/printers/bov/tests/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/printers/bov/tests/test_database.py -------------------------------------------------------------------------------- /deprecated/printers/bov/tests/test_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/printers/bov/tests/test_write.py -------------------------------------------------------------------------------- /deprecated/printers/vtk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/printers/vtk/__init__.py -------------------------------------------------------------------------------- /deprecated/printers/vtk/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/printers/vtk/encoders.py -------------------------------------------------------------------------------- /deprecated/printers/vtk/rect.vti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/printers/vtk/rect.vti -------------------------------------------------------------------------------- /deprecated/printers/vtk/rect.vts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/printers/vtk/rect.vts -------------------------------------------------------------------------------- /deprecated/printers/vtk/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deprecated/printers/vtk/tests/test_vtk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/printers/vtk/tests/test_vtk.py -------------------------------------------------------------------------------- /deprecated/printers/vtk/vti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/printers/vtk/vti.py -------------------------------------------------------------------------------- /deprecated/printers/vtk/vtk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/printers/vtk/vtk.py -------------------------------------------------------------------------------- /deprecated/printers/vtk/vtktypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/printers/vtk/vtktypes.py -------------------------------------------------------------------------------- /deprecated/printers/vtk/vtkxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/printers/vtk/vtkxml.py -------------------------------------------------------------------------------- /deprecated/printers/vtk/vtr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/printers/vtk/vtr.py -------------------------------------------------------------------------------- /deprecated/printers/vtk/vts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/printers/vtk/vts.py -------------------------------------------------------------------------------- /deprecated/printers/vtk/vtu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/printers/vtk/vtu.py -------------------------------------------------------------------------------- /deprecated/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/status.py -------------------------------------------------------------------------------- /deprecated/task_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/task_status.py -------------------------------------------------------------------------------- /deprecated/test_component_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/test_component_info.py -------------------------------------------------------------------------------- /deprecated/testing/assertions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/testing/assertions.py -------------------------------------------------------------------------------- /deprecated/tests/test_nsdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/tests/test_nsdict.py -------------------------------------------------------------------------------- /deprecated/tests/test_ordered_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/tests/test_ordered_tasks.py -------------------------------------------------------------------------------- /deprecated/tests/test_task_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/tests/test_task_status.py -------------------------------------------------------------------------------- /deprecated/utils/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/utils/decorators.py -------------------------------------------------------------------------------- /deprecated/utils/run_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/utils/run_dir.py -------------------------------------------------------------------------------- /deprecated/utils/tests/test_run_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/utils/tests/test_run_dir.py -------------------------------------------------------------------------------- /deprecated/utils/tests/test_which.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/utils/tests/test_which.py -------------------------------------------------------------------------------- /deprecated/utils/verbose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/utils/verbose.py -------------------------------------------------------------------------------- /deprecated/utils/which.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/deprecated/utils/which.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/_static/apple.svg -------------------------------------------------------------------------------- /docs/_static/hydrotrend-discharge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/_static/hydrotrend-discharge.png -------------------------------------------------------------------------------- /docs/_static/linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/_static/linux.svg -------------------------------------------------------------------------------- /docs/_static/powered-by-logo-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/_static/powered-by-logo-header.png -------------------------------------------------------------------------------- /docs/_static/pymt-logo-header-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/_static/pymt-logo-header-text.png -------------------------------------------------------------------------------- /docs/_static/pymt-logo-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/_static/pymt-logo-header.png -------------------------------------------------------------------------------- /docs/_static/windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/_static/windows.svg -------------------------------------------------------------------------------- /docs/_templates/links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/_templates/links.html -------------------------------------------------------------------------------- /docs/_templates/sidebarintro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/_templates/sidebarintro.html -------------------------------------------------------------------------------- /docs/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/api/index.rst -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conda-environments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/conda-environments.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/environment.yml -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/examples.rst -------------------------------------------------------------------------------- /docs/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/glossary.rst -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGELOG.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/installation-check.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/installation-check.rst -------------------------------------------------------------------------------- /docs/installation-environment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/installation-environment.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/models.rst -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. title:: Summary 2 | 3 | .. include:: ../README.rst 4 | -------------------------------------------------------------------------------- /docs/scripts/make_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/scripts/make_table.py -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /environment-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/environment-docs.yml -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/environment.yml -------------------------------------------------------------------------------- /news/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /notebooks/Ganges/HYDRO.CLIMATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/notebooks/Ganges/HYDRO.CLIMATE -------------------------------------------------------------------------------- /notebooks/Ganges/HYDRO.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/notebooks/Ganges/HYDRO.IN -------------------------------------------------------------------------------- /notebooks/Ganges/HYDRO0.HYPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/notebooks/Ganges/HYDRO0.HYPS -------------------------------------------------------------------------------- /notebooks/Ganges/hydro_config.txt: -------------------------------------------------------------------------------- 1 | . 2 | HYDRO 3 | . -------------------------------------------------------------------------------- /notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/notebooks/README.md -------------------------------------------------------------------------------- /notebooks/RhineBedload.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/notebooks/RhineBedload.csv -------------------------------------------------------------------------------- /notebooks/cem.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/notebooks/cem.ipynb -------------------------------------------------------------------------------- /notebooks/cem_and_waves.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/notebooks/cem_and_waves.ipynb -------------------------------------------------------------------------------- /notebooks/child.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/notebooks/child.ipynb -------------------------------------------------------------------------------- /notebooks/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/notebooks/conftest.py -------------------------------------------------------------------------------- /notebooks/ecsimplesnow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/notebooks/ecsimplesnow.ipynb -------------------------------------------------------------------------------- /notebooks/exclude.yml: -------------------------------------------------------------------------------- 1 | - file: cem.ipynb 2 | reason: "incomplete notebook" 3 | -------------------------------------------------------------------------------- /notebooks/frost_number.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/notebooks/frost_number.ipynb -------------------------------------------------------------------------------- /notebooks/gipl.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/notebooks/gipl.ipynb -------------------------------------------------------------------------------- /notebooks/gipl_and_ecsimplesnow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/notebooks/gipl_and_ecsimplesnow.ipynb -------------------------------------------------------------------------------- /notebooks/hydrotrend.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/notebooks/hydrotrend.ipynb -------------------------------------------------------------------------------- /notebooks/hydrotrend_Ganges.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/notebooks/hydrotrend_Ganges.ipynb -------------------------------------------------------------------------------- /notebooks/ku.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/notebooks/ku.ipynb -------------------------------------------------------------------------------- /notebooks/sedflux3d.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/notebooks/sedflux3d.ipynb -------------------------------------------------------------------------------- /notebooks/sedflux3d_and_child.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/notebooks/sedflux3d_and_child.ipynb -------------------------------------------------------------------------------- /notebooks/subside.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/notebooks/subside.ipynb -------------------------------------------------------------------------------- /notebooks/test_notebooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/notebooks/test_notebooks.py -------------------------------------------------------------------------------- /notebooks/welcome.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/notebooks/welcome.ipynb -------------------------------------------------------------------------------- /pymt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/__init__.py -------------------------------------------------------------------------------- /pymt/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.3.3.dev0" 2 | -------------------------------------------------------------------------------- /pymt/bmi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pymt/bmi/bmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/bmi/bmi.py -------------------------------------------------------------------------------- /pymt/cmd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pymt/cmd/cmt_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/cmd/cmt_config.py -------------------------------------------------------------------------------- /pymt/component/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pymt/component/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/component/component.py -------------------------------------------------------------------------------- /pymt/component/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/component/grid.py -------------------------------------------------------------------------------- /pymt/component/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/component/model.py -------------------------------------------------------------------------------- /pymt/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/errors.py -------------------------------------------------------------------------------- /pymt/events/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pymt/events/chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/events/chain.py -------------------------------------------------------------------------------- /pymt/events/empty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/events/empty.py -------------------------------------------------------------------------------- /pymt/events/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/events/manager.py -------------------------------------------------------------------------------- /pymt/events/port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/events/port.py -------------------------------------------------------------------------------- /pymt/events/printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/events/printer.py -------------------------------------------------------------------------------- /pymt/framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pymt/framework/bmi_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/framework/bmi_bridge.py -------------------------------------------------------------------------------- /pymt/framework/bmi_docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/framework/bmi_docstring.py -------------------------------------------------------------------------------- /pymt/framework/bmi_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/framework/bmi_mapper.py -------------------------------------------------------------------------------- /pymt/framework/bmi_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/framework/bmi_plot.py -------------------------------------------------------------------------------- /pymt/framework/bmi_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/framework/bmi_setup.py -------------------------------------------------------------------------------- /pymt/framework/bmi_timeinterp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/framework/bmi_timeinterp.py -------------------------------------------------------------------------------- /pymt/framework/bmi_ugrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/framework/bmi_ugrid.py -------------------------------------------------------------------------------- /pymt/framework/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/framework/services.py -------------------------------------------------------------------------------- /pymt/framework/timeinterp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/framework/timeinterp.py -------------------------------------------------------------------------------- /pymt/grids/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/grids/__init__.py -------------------------------------------------------------------------------- /pymt/grids/assertions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/grids/assertions.py -------------------------------------------------------------------------------- /pymt/grids/connectivity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/grids/connectivity.py -------------------------------------------------------------------------------- /pymt/grids/esmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/grids/esmp.py -------------------------------------------------------------------------------- /pymt/grids/field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/grids/field.py -------------------------------------------------------------------------------- /pymt/grids/grid_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/grids/grid_type.py -------------------------------------------------------------------------------- /pymt/grids/igrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/grids/igrid.py -------------------------------------------------------------------------------- /pymt/grids/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/grids/map.py -------------------------------------------------------------------------------- /pymt/grids/meshgrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/grids/meshgrid.py -------------------------------------------------------------------------------- /pymt/grids/raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/grids/raster.py -------------------------------------------------------------------------------- /pymt/grids/rectilinear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/grids/rectilinear.py -------------------------------------------------------------------------------- /pymt/grids/structured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/grids/structured.py -------------------------------------------------------------------------------- /pymt/grids/unstructured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/grids/unstructured.py -------------------------------------------------------------------------------- /pymt/grids/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/grids/utils.py -------------------------------------------------------------------------------- /pymt/mappers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/mappers/__init__.py -------------------------------------------------------------------------------- /pymt/mappers/celltopoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/mappers/celltopoint.py -------------------------------------------------------------------------------- /pymt/mappers/esmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/mappers/esmp.py -------------------------------------------------------------------------------- /pymt/mappers/imapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/mappers/imapper.py -------------------------------------------------------------------------------- /pymt/mappers/mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/mappers/mapper.py -------------------------------------------------------------------------------- /pymt/mappers/pointtocell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/mappers/pointtocell.py -------------------------------------------------------------------------------- /pymt/mappers/pointtopoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/mappers/pointtopoint.py -------------------------------------------------------------------------------- /pymt/model_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/model_collection.py -------------------------------------------------------------------------------- /pymt/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/models.py -------------------------------------------------------------------------------- /pymt/portprinter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pymt/portprinter/port_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/portprinter/port_printer.py -------------------------------------------------------------------------------- /pymt/portprinter/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/portprinter/utils.py -------------------------------------------------------------------------------- /pymt/printers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pymt/printers/nc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pymt/printers/nc/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/printers/nc/constants.py -------------------------------------------------------------------------------- /pymt/printers/nc/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/printers/nc/database.py -------------------------------------------------------------------------------- /pymt/printers/nc/read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/printers/nc/read.py -------------------------------------------------------------------------------- /pymt/printers/nc/ugrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/printers/nc/ugrid.py -------------------------------------------------------------------------------- /pymt/printers/nc/ugrid_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/printers/nc/ugrid_read.py -------------------------------------------------------------------------------- /pymt/printers/nc/write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/printers/nc/write.py -------------------------------------------------------------------------------- /pymt/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pymt/services/constant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pymt/services/constant/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/services/constant/constant.py -------------------------------------------------------------------------------- /pymt/services/constant/river.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/services/constant/river.py -------------------------------------------------------------------------------- /pymt/services/gridreader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pymt/services/gridreader/gridreader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/services/gridreader/gridreader.py -------------------------------------------------------------------------------- /pymt/services/gridreader/interpolate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/services/gridreader/interpolate.py -------------------------------------------------------------------------------- /pymt/services/gridreader/time_series_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/services/gridreader/time_series_names.py -------------------------------------------------------------------------------- /pymt/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pymt/testing/ports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/testing/ports.py -------------------------------------------------------------------------------- /pymt/testing/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/testing/services.py -------------------------------------------------------------------------------- /pymt/timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/timeline.py -------------------------------------------------------------------------------- /pymt/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/units.py -------------------------------------------------------------------------------- /pymt/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/utils/__init__.py -------------------------------------------------------------------------------- /pymt/utils/prefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/utils/prefix.py -------------------------------------------------------------------------------- /pymt/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pymt/utils/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | black 2 | flake8 3 | isort 4 | -------------------------------------------------------------------------------- /requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/requirements-docs.txt -------------------------------------------------------------------------------- /requirements-notebooks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/requirements-notebooks.txt -------------------------------------------------------------------------------- /requirements-testing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/requirements-testing.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/scripts/changelog.py -------------------------------------------------------------------------------- /scripts/prm2input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/scripts/prm2input.py -------------------------------------------------------------------------------- /scripts/prm2template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/scripts/prm2template.py -------------------------------------------------------------------------------- /scripts/prmscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/scripts/prmscan.py -------------------------------------------------------------------------------- /scripts/quickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/scripts/quickstart.py -------------------------------------------------------------------------------- /scripts/vtu2ncu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/scripts/vtu2ncu.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/component/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/component/__init__.py -------------------------------------------------------------------------------- /tests/component/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/component/conftest.py -------------------------------------------------------------------------------- /tests/component/test_grid_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/component/test_grid_mixin.py -------------------------------------------------------------------------------- /tests/component/test_map_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/component/test_map_component.py -------------------------------------------------------------------------------- /tests/component/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/component/test_model.py -------------------------------------------------------------------------------- /tests/component/test_one_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/component/test_one_component.py -------------------------------------------------------------------------------- /tests/component/test_recursive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/component/test_recursive.py -------------------------------------------------------------------------------- /tests/component/test_two_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/component/test_two_components.py -------------------------------------------------------------------------------- /tests/events/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/events/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/events/conftest.py -------------------------------------------------------------------------------- /tests/events/test_chain_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/events/test_chain_events.py -------------------------------------------------------------------------------- /tests/events/test_port_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/events/test_port_events.py -------------------------------------------------------------------------------- /tests/events/test_port_map_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/events/test_port_map_events.py -------------------------------------------------------------------------------- /tests/events/test_print_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/events/test_print_events.py -------------------------------------------------------------------------------- /tests/framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/framework/test_bmi_docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/framework/test_bmi_docstring.py -------------------------------------------------------------------------------- /tests/framework/test_bmi_time_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/framework/test_bmi_time_units.py -------------------------------------------------------------------------------- /tests/framework/test_bmi_ugrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/framework/test_bmi_ugrid.py -------------------------------------------------------------------------------- /tests/framework/test_bmi_var_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/framework/test_bmi_var_units.py -------------------------------------------------------------------------------- /tests/framework/test_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/framework/test_setup.py -------------------------------------------------------------------------------- /tests/framework/test_timeinterp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/framework/test_timeinterp.py -------------------------------------------------------------------------------- /tests/grids/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/grids/test_assertions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/grids/test_assertions.py -------------------------------------------------------------------------------- /tests/grids/test_esmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/grids/test_esmp.py -------------------------------------------------------------------------------- /tests/grids/test_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/grids/test_field.py -------------------------------------------------------------------------------- /tests/grids/test_grid_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/grids/test_grid_type.py -------------------------------------------------------------------------------- /tests/grids/test_raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/grids/test_raster.py -------------------------------------------------------------------------------- /tests/grids/test_rectilinear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/grids/test_rectilinear.py -------------------------------------------------------------------------------- /tests/grids/test_structured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/grids/test_structured.py -------------------------------------------------------------------------------- /tests/grids/test_unstructured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/grids/test_unstructured.py -------------------------------------------------------------------------------- /tests/grids/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/grids/test_utils.py -------------------------------------------------------------------------------- /tests/mappers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mappers/test_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/mappers/test_mapper.py -------------------------------------------------------------------------------- /tests/mappers/test_pointtopoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/mappers/test_pointtopoint.py -------------------------------------------------------------------------------- /tests/portprinter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/portprinter/__init__.py -------------------------------------------------------------------------------- /tests/portprinter/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/portprinter/conftest.py -------------------------------------------------------------------------------- /tests/portprinter/test_nc_port_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/portprinter/test_nc_port_printer.py -------------------------------------------------------------------------------- /tests/portprinter/test_port_printer_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/portprinter/test_port_printer_queue.py -------------------------------------------------------------------------------- /tests/portprinter/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/portprinter/test_utils.py -------------------------------------------------------------------------------- /tests/printers/nc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/printers/nc/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/printers/nc/test_database.py -------------------------------------------------------------------------------- /tests/printers/nc/test_nc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/printers/nc/test_nc.py -------------------------------------------------------------------------------- /tests/printers/nc/test_nc_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/printers/nc/test_nc_examples.py -------------------------------------------------------------------------------- /tests/printers/nc/test_ugrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/printers/nc/test_ugrid.py -------------------------------------------------------------------------------- /tests/printers/nc/test_ugrid_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/printers/nc/test_ugrid_read.py -------------------------------------------------------------------------------- /tests/printers/nc/test_ugrid_read/rectilinear.1d.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/printers/nc/test_ugrid_read/rectilinear.1d.nc -------------------------------------------------------------------------------- /tests/printers/nc/test_ugrid_read/rectilinear.2d.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/printers/nc/test_ugrid_read/rectilinear.2d.nc -------------------------------------------------------------------------------- /tests/printers/nc/test_ugrid_read/rectilinear.3d.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/printers/nc/test_ugrid_read/rectilinear.3d.nc -------------------------------------------------------------------------------- /tests/printers/nc/test_ugrid_read/unstructured.2d.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/printers/nc/test_ugrid_read/unstructured.2d.nc -------------------------------------------------------------------------------- /tests/services/constant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/services/constant/test_constant_scalar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/services/constant/test_constant_scalar.py -------------------------------------------------------------------------------- /tests/services/gridreader/test_time_series_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/services/gridreader/test_time_series_names.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/test_timeline.py -------------------------------------------------------------------------------- /tests/test_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csdms/pymt/HEAD/tests/test_units.py --------------------------------------------------------------------------------