Metadata-Version: 2.1
Name: pytesmo
Version: 0.8
Summary: Python Toolbox for the evaluation of soil moisture observations
Home-page: http://rs.geo.tuwien.ac.at/validation_tool/pytesmo/
Author: pytesmo Developers
Author-email: christoph.paulik@geo.tuwien.ac.at
License: BSD 3 Clause
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: numpy (>=1.7.0)
Requires-Dist: scipy (>=0.12)
Requires-Dist: pandas (!=0.15.2,>=0.11.0)
Requires-Dist: matplotlib (>=1.2.0)
Requires-Dist: netCDF4 (>=1.0.1)
Requires-Dist: pygeogrids
Requires-Dist: pygeobase (>=0.3.15)
Requires-Dist: pynetcf (>=0.1.17)
Requires-Dist: ascat (>=1.0)
Requires-Dist: ismn (>=0.3)
Requires-Dist: configparser
Requires-Dist: pykdtree
Requires-Dist: repurpose (>=0.7.1)

=======
pytesmo
=======
.. image:: https://travis-ci.org/TUW-GEO/pytesmo.svg?branch=master
    :target: https://travis-ci.org/TUW-GEO/pytesmo

.. image:: https://coveralls.io/repos/TUW-GEO/pytesmo/badge.png?branch=master
  :target: https://coveralls.io/r/TUW-GEO/pytesmo?branch=master

.. image:: https://badge.fury.io/py/pytesmo.svg
    :target: https://badge.fury.io/py/pytesmo

.. image:: https://readthedocs.org/projects/pytesmo/badge/?version=latest
    :target: https://pytesmo.readthedocs.io/en/latest/?badge=latest

pytesmo, the Python Toolbox for the Evaluation of Soil Moisture Observations, is
a package/python toolbox which aims it is to provide a library that can be used
for the comparison and validation of geospatial time series datasets with a
(initial) focus on soil moisture.

Citation
========

.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.596422.svg
   :target: https://doi.org/10.5281/zenodo.596422

If you use the software in a publication then please cite it using the Zenodo DOI.
Be aware that this badge links to the latest package version.

Please select your specific version at https://doi.org/10.5281/zenodo.596422 to get the DOI of that version.
You should normally always use the DOI for the specific version of your record in citations.
This is to ensure that other researchers can access the exact research artefact you used for reproducibility.

You can find additional information regarding DOI versioning at http://help.zenodo.org/#versioning

Installation
============

This package should be installable through pip:

.. code::

    pip install pytesmo

Supported Products
==================

Soil moisture is observed using different methods and instruments, in this
version several satellite datasets as well as in situ and reanalysis data are supported:

- `ASCAT <https://github.com/TUW-GEO/ascat/>`_
- `SMAP <https://github.com/TUW-GEO/smap_io/>`_
- `GLDAS Noah <https://github.com/TUW-GEO/gldas/>`_
- `ERA5 and ERA5-Land <https://github.com/TUW-GEO/ecmwf_models/>`_
- `Data from the International Soil Moisture Network (ISMN) <https://github.com/TUW-GEO/ismn/>`_
- `SMOS <https://github.com/TUW-GEO/smos/>`_
- `C3S SM <https://github.com/TUW-GEO/c3s_sm/>`_
- `ESA CCI SM <https://github.com/TUW-GEO/esa_cci_sm/>`_
- `MERRA <https://github.com/TUW-GEO/merra/>`_
- H-SAF image products
- ERS


For more details visit the Documentation_.

.. _Documentation: https://pytesmo.readthedocs.io/en/latest/?badge=latest

Contribute
==========

We are happy if you want to contribute. Please raise an issue explaining what
is missing or if you find a bug. We will also gladly accept pull requests
against our master branch for new features or bug fixes.

Development setup
-----------------

For Development we recommend a ``conda`` environment.

Guidelines
----------

If you want to contribute please follow these steps:

- Fork the pytesmo repository to your account
- Clone the repository, make sure you use ``git clone --recursive`` to also get
  the test data repository.
- make a new feature branch from the pytesmo master branch
- Add your feature
- please include tests for your contributions in one of the test directories
  We use py.test so a simple function called test_my_feature is enough
- submit a pull request to our master branch

Release
-------

Windows
~~~~~~~

In order to make a working release for windows the ``whl`` files for windows
from appveyor CI have to be uploaded to PyPI. They can be found on the appveyor
CI run for the created tag under the ``jobs/Artifacts`` tab. All the ``.whl``
files should be downloaded into a folder. They can then be added to the release
on PyPI using e.g. ``twine upload pytesmo-0.7.1*whl``



