pymt_nwis is a package that converts bmi_nwis package into a reusable, plug-and-play data component for PyMT modeling framework. This allows the National Water Information System (NWIS) data to be easily coupled with other data or models that expose a Basic Model Interface.
Installing pymt from the conda-forge channel can be achieved by adding conda-forge to your channels with:
conda config --add channels conda-forge
Note: Before installing pymt, you may want to create a separate environment into which to install it. This can be done with,
conda create -n pymt python=3 conda activate pymt
Once the conda-forge channel has been enabled, pymt can be installed with:
conda install pymt
It is possible to list all of the versions of pymt available on your platform with:
conda search pymt --channel conda-forge
To install pymt_nwis, use pip
pip install pymt_nwis
or conda
conda install -c conda-forge pymt_nwis
You can learn more details about the coding example from the tutorial notebook.