Metadata-Version: 2.4
Name: pymt_topography
Version: 0.2.1
Summary: PyMT plugin for Topography data component
Keywords: bmi,csdms,pymt,topography,dem
Author: Mark Piper
Author-Email: Unknown <mark.piper@colorado.edu>
License-Expression: MIT
License-File: LICENSE.md
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Scientific/Engineering :: Physics
Project-URL: homepage, https://csdms.colorado.edu
Project-URL: documentation, https://pymt.readthedocs.io
Project-URL: repository, https://github.com/pymt-lab/pymt_topography
Project-URL: changelog, https://github.com/pymt-lab/pymt_topography/blob/main/CHANGES.rst
Requires-Python: >=3.12
Requires-Dist: bmi-topography
Requires-Dist: numpy
Provides-Extra: editable-install
Requires-Dist: meson; extra == "editable-install"
Requires-Dist: meson-python; extra == "editable-install"
Requires-Dist: ninja; extra == "editable-install"
Provides-Extra: dev
Requires-Dist: black; extra == "dev"
Requires-Dist: ruff; extra == "dev"
Requires-Dist: isort; extra == "dev"
Provides-Extra: docs
Requires-Dist: sphinx; extra == "docs"
Provides-Extra: build
Requires-Dist: build; extra == "build"
Requires-Dist: twine; extra == "build"
Requires-Dist: zest.releaser; extra == "build"
Provides-Extra: testing
Requires-Dist: bmi-tester>=0.5.5; extra == "testing"
Description-Content-Type: text/x-rst

===============
pymt_topography
===============


.. image:: https://img.shields.io/badge/CSDMS-Basic%20Model%20Interface-green.svg
        :target: https://bmi.readthedocs.io/
        :alt: Basic Model Interface

.. image:: https://img.shields.io/pypi/v/pymt_topography
        :target: https://pypi.org/project/pymt_topography
        :alt: PyPI

.. image:: https://img.shields.io/conda/vn/conda-forge/pymt_topography.svg
        :target: https://anaconda.org/conda-forge/pymt_topography
        :alt: conda-forge

.. image:: https://img.shields.io/badge/recipe-pymt_topography-green.svg
        :target: https://anaconda.org/conda-forge/pymt_topography

.. image:: https://github.com/pymt-lab/pymt_topography/actions/workflows/test.yml/badge.svg
        :target: https://github.com/pymt-lab/pymt_topography/actions/workflows/test.yml
        :alt: Build/Test CI

.. image:: https://readthedocs.org/projects/pymt-topography/badge/?version=latest
        :target: https://pymt-topography.readthedocs.io/en/latest/?badge=latest
        :alt: Documentation Status


PyMT component for accessing land elevation data.


* Free software: MIT License
* Documentation: https://pymt-topography.readthedocs.io.




========== ====================================
Component  PyMT
========== ====================================
Topography `from pymt.models import Topography`
========== ====================================

---------------
Installing pymt
---------------

Installing `pymt` from the `conda-forge` channel can be achieved by adding
`conda-forge` to your channels with:

.. code::

  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,

.. code::

  conda create -n pymt python=3
  conda activate pymt

Once the `conda-forge` channel has been enabled, `pymt` can be installed with:

.. code::

  conda install pymt

It is possible to list all of the versions of `pymt` available on your platform with:

.. code::

  conda search pymt --channel conda-forge

--------------------------
Installing pymt_topography
--------------------------

Once `pymt` is installed, the dependencies of `pymt_topography` can
be installed with:

.. code::

  pip install bmi-topography

To install `pymt_topography`,

.. code::

  pip install pymt_topography
