ismn


Nameismn JSON
Version 1.4.1 PyPI version JSON
download
home_pagehttp://ismn.geo.tuwien.ac.at
SummaryReaders for the data from the International Soil Moisture Database
upload_time2024-05-06 15:49:13
maintainerNone
docs_urlNone
authorTU Wien
requires_python>=3.6
licensemit
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ====
ismn
====

|ci| |cov| |pip| |doc|

.. |ci| image:: https://github.com/TUW-GEO/ismn/actions/workflows/build.yml/badge.svg?branch=master
   :target: https://github.com/TUW-GEO/ismn/actions

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

.. |pip| image:: https://badge.fury.io/py/ismn.svg
    :target: http://badge.fury.io/py/ismn

.. |doc| image:: https://readthedocs.org/projects/ismn/badge/?version=latest
   :target: http://ismn.readthedocs.org/

Readers for the data from the International Soil Moisture Database (ISMN).

Documentation
-------------
The full documentation is available at https://ismn.readthedocs.io and includes
a tutorial on reading ISMN data in python after downloading it from
https://ismn.earth

The following **tutorials** are also available as ipython notebooks in ``docs/examples``:

 #. `ISMN reader basic functionality <https://ismn.readthedocs.io/en/latest/examples/interface.html>`_
 #. `Adding custom metadata readers <https://ismn.readthedocs.io/en/latest/examples/custom_meta.html>`_

Data used in the tutorials is *not* provided in this package. Please create an account at `ismn.earth <https://ismn.earth/en/>`_
to download the required files.

For a general overview about the ISMN, technical data aspects (properties, coverage, etc.) and correct usage (applications), see

    W. Dorigo et al. **The International Soil Moisture Network: serving Earth system science for over a decade**,
    Hydrol. Earth Syst. Sci., 25, 5749–5804, https://doi.org/10.5194/hess-25-5749-2021, 2021.


Citation
========

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

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.855308 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 ismn

Optional dependencies
---------------------

The ``cartopy`` and ``matplotlib`` packages are only needed when creating data visualisations.
They can be installed separately with:

.. code::

    conda install -c conda-forge matplotlib cartopy

Example installation script
---------------------------

The following script will install miniconda and setup the environment on a UNIX
like system. Miniconda will be installed into ``$HOME/miniconda``.

.. code::

   wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
   bash miniconda.sh -b -p $HOME/miniconda
   export PATH="$HOME/miniconda/bin:$PATH"
   git clone git@github.com:TUW-GEO/ismn.git ismn
   cd ismn
   conda env create -f environment.yml
   conda activate ismn

This script adds ``$HOME/miniconda/bin`` temporarily to the ``PATH`` to do this
permanently add ``export PATH="$HOME/miniconda/bin:$PATH"`` to your ``.bashrc``
or ``.zshrc``. The second to last line in the example activates the ``ismn`` environment.

After that you should be able to run:

.. code::

    pytest

to run the test suite.

Description
===========

ISMN data can be downloaded for free after creating an account on the `ISMN Website
<http://ismn.geo.tuwien.ac.at/>`_

ISMN data can be downloaded in two different formats:

* Variables stored in separate files (CEOP formatted)
* Variables stored in separate files (Header+values) (default format)

Both formats are supported by this package.

If you downloaded ISMN data in one of the supported formats in the past it can
be that station names are not recognized correctly because they contained the
'_' character which is supposed to be the separator. If you experience problems
because of this please download new data from the ISMN since this issue should
be fixed.

Variables and Units
-------------------
The following variables are available in the ISMN. Note that not every station
measures all of the variables. You can use this package to read only data for
locations where one or multiple of the variables were measured.

.. list-table:: Temporally dynamic variables and their units in ISMN
   :widths: 25 15
   :header-rows: 1

   * - Variable
     - Units
   * - Soil Moisture
     - m\ :sup:`3`\ /m\ :sup:`3`\
   * - Soil Suction
     - kPa
   * - Soil Temperature
     - °C
   * - Air Temperature
     - °C
   * - Surface Temperature
     - °C
   * - Precipitation
     - mm
   * - Snow Depth
     - mm
   * - Snow Water Equivalent
     - mm

----

.. list-table:: Temporally static variables and their units in ISMN
   :widths: 35 35
   :header-rows: 1

   * - Variable
     - Units
   * - Climate classification
     - None
   * - Land cover classification
     - None
   * - Soil classification
     - None
   * - Bulk density
     - g/cm³
   * - Sand fraction
     - % weight
   * - Silt fraction
     - % weight
   * - Clay fraction
     - % weight
   * - Organic carbon
     - % weight
   * - Saturation
     - % vol
   * - Field capacity
     - % vol
   * - Potential plant available water
     - % vol
   * - Permanent wilting point
     - % vol

Landcover Classification
------------------------
The ISMN data comes with information about landcover classification from the
ESA CCI land cover project (years 2000, 2005 and 2010) as well as from in-situ
measurements. To use ESA CCI land cover variables for filtering the data in the get_dataset_ids
function, set the keyword parameters (landcover_2000, landcover_2005 or landcover_2010)
to the corresponding integer values (e.g. 10) in the list below. To get a list of
possible values for filtering by in-situ values (keyword parameter: "landcover_insitu"),
call the get_landcover_types method of your ISMN_Interface object and set landcover='landcover_insitu'.

.. list-table:: ISMN Landcover classes and meanings
   :widths: 5 50
   :header-rows: 1

   * - Value
     - Meaning
   * - 10
     - Cropland, rainfed
   * - 11
     - Cropland, rainfed / Herbaceous cover
   * - 12
     - Cropland, rainfed / Tree or shrub cover
   * - 20
     - Cropland, irrigated or post-flooding
   * - 30
     - Mosaic cropland (>50%) / natural vegetation (tree, shrub, herbaceous)
   * - 40
     - Mosaic natural vegetation (>50%) / cropland (<50%)
   * - 50
     - Tree cover, broadleaved, evergreen, Closed to open (>15%)
   * - 60
     - Tree cover, broadleaved, deciduous, Closed to open (>15%)
   * - 61
     - Tree cover, broadleaved, deciduous, Closed (>40%)
   * - 62
     - Tree cover, broadleaved, deciduous, Open (15-40%)
   * - 70
     - Tree cover, needleleaved, evergreen, Closed to open (>15%)
   * - 71
     - Tree cover, needleleaved, evergreen, Closed (>40%)
   * - 72
     - Tree cover, needleleaved, evergreen, Open (15-40%)
   * - 80
     - Tree cover, needleleaved, deciduous, Closed to open (>15%)
   * - 81
     - Tree cover, needleleaved, deciduous, Closed (>40%)
   * - 82
     - Tree cover, needleleaved, deciduous, Open (15-40%)
   * - 90
     - Tree cover, mixed leaf type (broadleaved and needleleaved)
   * - 100
     - Mosaic tree and shrub (>50%) / herbaceous cover (<50%)
   * - 110
     - Mosaic herbaceous cover (>50%) / tree and shrub (<50%)
   * - 120
     - Shrubland
   * - 121
     - Shrubland / Evergreen Shrubland
   * - 122
     - Shrubland / Deciduous Shrubland
   * - 130
     - Grassland
   * - 140
     - Lichens and mosses
   * - 150
     - Sparse vegetation (tree, shrub, herbaceous cover) (<15%)
   * - 152
     - Sparse vegetation (<15%) / Sparse shrub (<15%)
   * - 153
     - Sparse vegetation (<15%) / Sparse herbaceous cover (<15%)
   * - 160
     - Tree cover, flooded, fresh or brackish water
   * - 170
     - Tree cover, flooded, saline water
   * - 180
     - Shrub or herbaceous cover, flooded, fresh/saline/brackish water
   * - 190
     - Urban areas
   * - 200
     - Bare areas
   * - 201
     - Consolidated bare areas
   * - 202
     - Unconsolidated bare areas
   * - 210
     - Water
   * - 220
     - Permanent snow and ice

Climate Classification
----------------------
The ISMN data comes with information about climate classification from the Koeppen-Geiger
Climate Classification (2007) as well as in-situ measurements. To use
Koeppen-Geiger variable for filtering the data in the get_dataset_ids function, set the
keyword parameter "climate" to the corresponding keys (e.g. 'Af') in the list below. To get a list of
possible values for filtering by in-situ values (keyword parameter: "climate_insitu"), call the
get_climate_types method of your ISMN_Interface object and set climate='climate_insitu'.

.. list-table:: Climate Classes and Meanings
   :widths: 5 50
   :header-rows: 1

   * - Class
     - Meaning
   * - Af
     - Tropical Rainforest
   * - Am
     - Tropical Monsoon
   * - As
     - Tropical Savanna Dry
   * - Aw
     - Tropical Savanna Wet
   * - BWk
     - Arid Desert Cold
   * - BWh
     - Arid Desert Hot
   * - BWn
     - Arid Desert With Frequent Fog
   * - BSk
     - Arid Steppe Cold
   * - BSh
     - Arid Steppe Hot
   * - BSn
     - Arid Steppe With Frequent Fog
   * - Csa
     - Temperate Dry Hot Summer
   * - Csb
     - Temperate Dry Warm Summer
   * - Csc
     - Temperate Dry Cold Summer
   * - Cwa
     - Temperate Dry Winter, Hot Summer
   * - Cwb
     - Temperate Dry Winter, Warm Summer
   * - Cwc
     - Temperate Dry Winter, Cold Summer
   * - Cfa
     - Temperate Without Dry Season, Hot Summer
   * - Cfb
     - Temperate Without Dry Season, Warm Summer
   * - Cfc
     - Temperate Without Dry Season, Cold Summer
   * - Dsa
     - Cold Dry Summer, Hot Summer
   * - Dsb
     - Cold Dry Summer, Warm Summer
   * - Dsc
     - Cold Dry Summer, Cold Summer
   * - Dsd
     - Cold Dry Summer, Very Cold Winter
   * - Dwa
     - Cold Dry Winter, Hot Summer
   * - Dwb
     - Cold Dry Winter, Warm Summer
   * - Dwc
     - Cold Dry Winter, Cold Summer
   * - Dwd
     - Cold Dry Winter, Very Cold Winter
   * - Dfa
     - Cold Dry Without Dry Season, Hot Summer
   * - Dfb
     - Cold Dry Without Dry Season, Warm Summer
   * - Dfc
     - Cold Dry Without Dry Season, Cold Summer
   * - Dfd
     - Cold Dry Without Dry Season, Very Cold Winter
   * - ET
     - Polar Tundra
   * - EF
     - Polar Eternal Winter
   * - W
     - Water


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 also recommend a ``conda`` environment. You can create one
including test dependencies and debugger by running
``conda env create -f environment.yml``. This will create a new
``ismn`` environment which you can activate by using
``conda activate ismn``.

Guidelines
----------

If you want to contribute please follow these steps:

- Fork the ismn repository to your account
- Clone the repository
- make a new feature branch from the ismn master branch
- Add your feature
- Please include tests for your contributions in one of the test directories.
  We use pytest so a simple function called test_my_feature is enough
- submit a pull request to our master branch

Code Formatting
---------------
To apply pep8 conform styling to any changed files [we use `yapf`](https://github.com/google/yapf). The correct
settings are already set in `setup.cfg`. Therefore the following command
should be enough:

    yapf file.py --in-place

Release new version
-------------------

To release a new version of this package, make sure all tests are passing on the
master branch and the CHANGELOG.rst is up-to-date, with changes for the new version
at the top.

Then draft a new release at https://github.com/TUW-GEO/ismn/releases.
Create a version tag following the ``v{MAJOR}.{MINOR}.{PATCH}`` pattern.
This will trigger a new build on GitHub and should push the packages to pypi after
all tests have passed.

If this does not work (tests pass but upload fails) you can download the
``whl`` and ``dist`` packages for each workflow run from
https://github.com/TUW-GEO/ismn/actions (Artifacts) and push them manually to
https://pypi.org/project/ismn/ (you need to be a package maintainer on pypi for that).

In any case, ``pip install ismn`` should download the newest version afterwards.

            

Raw data

            {
    "_id": null,
    "home_page": "http://ismn.geo.tuwien.ac.at",
    "name": "ismn",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": null,
    "author": "TU Wien",
    "author_email": "ismn@geo.tuwien.ac.at",
    "download_url": "https://files.pythonhosted.org/packages/ab/dc/22bad7e02d144fec094db72409d97baddc4749cb54aba6c9fb39337f5ba6/ismn-1.4.1.tar.gz",
    "platform": "any",
    "description": "====\r\nismn\r\n====\r\n\r\n|ci| |cov| |pip| |doc|\r\n\r\n.. |ci| image:: https://github.com/TUW-GEO/ismn/actions/workflows/build.yml/badge.svg?branch=master\r\n   :target: https://github.com/TUW-GEO/ismn/actions\r\n\r\n.. |cov| image:: https://coveralls.io/repos/TUW-GEO/ismn/badge.png?branch=master\r\n  :target: https://coveralls.io/r/TUW-GEO/ismn?branch=master\r\n\r\n.. |pip| image:: https://badge.fury.io/py/ismn.svg\r\n    :target: http://badge.fury.io/py/ismn\r\n\r\n.. |doc| image:: https://readthedocs.org/projects/ismn/badge/?version=latest\r\n   :target: http://ismn.readthedocs.org/\r\n\r\nReaders for the data from the International Soil Moisture Database (ISMN).\r\n\r\nDocumentation\r\n-------------\r\nThe full documentation is available at https://ismn.readthedocs.io and includes\r\na tutorial on reading ISMN data in python after downloading it from\r\nhttps://ismn.earth\r\n\r\nThe following **tutorials** are also available as ipython notebooks in ``docs/examples``:\r\n\r\n #. `ISMN reader basic functionality <https://ismn.readthedocs.io/en/latest/examples/interface.html>`_\r\n #. `Adding custom metadata readers <https://ismn.readthedocs.io/en/latest/examples/custom_meta.html>`_\r\n\r\nData used in the tutorials is *not* provided in this package. Please create an account at `ismn.earth <https://ismn.earth/en/>`_\r\nto download the required files.\r\n\r\nFor a general overview about the ISMN, technical data aspects (properties, coverage, etc.) and correct usage (applications), see\r\n\r\n    W. Dorigo et al. **The International Soil Moisture Network: serving Earth system science for over a decade**,\r\n    Hydrol. Earth Syst. Sci., 25, 5749\u20135804, https://doi.org/10.5194/hess-25-5749-2021, 2021.\r\n\r\n\r\nCitation\r\n========\r\n\r\n.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.855308.svg\r\n   :target: https://doi.org/10.5281/zenodo.855308\r\n\r\nIf you use the software in a publication then please cite it using the Zenodo DOI.\r\nBe aware that this badge links to the latest package version.\r\n\r\nPlease select your specific version at https://doi.org/10.5281/zenodo.855308 to get the DOI of that version.\r\nYou should normally always use the DOI for the specific version of your record in citations.\r\nThis is to ensure that other researchers can access the exact research artefact you used for reproducibility.\r\n\r\nYou can find additional information regarding DOI versioning at http://help.zenodo.org/#versioning\r\n\r\nInstallation\r\n============\r\n\r\nThis package should be installable through pip:\r\n\r\n.. code::\r\n\r\n    pip install ismn\r\n\r\nOptional dependencies\r\n---------------------\r\n\r\nThe ``cartopy`` and ``matplotlib`` packages are only needed when creating data visualisations.\r\nThey can be installed separately with:\r\n\r\n.. code::\r\n\r\n    conda install -c conda-forge matplotlib cartopy\r\n\r\nExample installation script\r\n---------------------------\r\n\r\nThe following script will install miniconda and setup the environment on a UNIX\r\nlike system. Miniconda will be installed into ``$HOME/miniconda``.\r\n\r\n.. code::\r\n\r\n   wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh\r\n   bash miniconda.sh -b -p $HOME/miniconda\r\n   export PATH=\"$HOME/miniconda/bin:$PATH\"\r\n   git clone git@github.com:TUW-GEO/ismn.git ismn\r\n   cd ismn\r\n   conda env create -f environment.yml\r\n   conda activate ismn\r\n\r\nThis script adds ``$HOME/miniconda/bin`` temporarily to the ``PATH`` to do this\r\npermanently add ``export PATH=\"$HOME/miniconda/bin:$PATH\"`` to your ``.bashrc``\r\nor ``.zshrc``. The second to last line in the example activates the ``ismn`` environment.\r\n\r\nAfter that you should be able to run:\r\n\r\n.. code::\r\n\r\n    pytest\r\n\r\nto run the test suite.\r\n\r\nDescription\r\n===========\r\n\r\nISMN data can be downloaded for free after creating an account on the `ISMN Website\r\n<http://ismn.geo.tuwien.ac.at/>`_\r\n\r\nISMN data can be downloaded in two different formats:\r\n\r\n* Variables stored in separate files (CEOP formatted)\r\n* Variables stored in separate files (Header+values) (default format)\r\n\r\nBoth formats are supported by this package.\r\n\r\nIf you downloaded ISMN data in one of the supported formats in the past it can\r\nbe that station names are not recognized correctly because they contained the\r\n'_' character which is supposed to be the separator. If you experience problems\r\nbecause of this please download new data from the ISMN since this issue should\r\nbe fixed.\r\n\r\nVariables and Units\r\n-------------------\r\nThe following variables are available in the ISMN. Note that not every station\r\nmeasures all of the variables. You can use this package to read only data for\r\nlocations where one or multiple of the variables were measured.\r\n\r\n.. list-table:: Temporally dynamic variables and their units in ISMN\r\n   :widths: 25 15\r\n   :header-rows: 1\r\n\r\n   * - Variable\r\n     - Units\r\n   * - Soil Moisture\r\n     - m\\ :sup:`3`\\ /m\\ :sup:`3`\\\r\n   * - Soil Suction\r\n     - kPa\r\n   * - Soil Temperature\r\n     - \u00b0C\r\n   * - Air Temperature\r\n     - \u00b0C\r\n   * - Surface Temperature\r\n     - \u00b0C\r\n   * - Precipitation\r\n     - mm\r\n   * - Snow Depth\r\n     - mm\r\n   * - Snow Water Equivalent\r\n     - mm\r\n\r\n----\r\n\r\n.. list-table:: Temporally static variables and their units in ISMN\r\n   :widths: 35 35\r\n   :header-rows: 1\r\n\r\n   * - Variable\r\n     - Units\r\n   * - Climate classification\r\n     - None\r\n   * - Land cover classification\r\n     - None\r\n   * - Soil classification\r\n     - None\r\n   * - Bulk density\r\n     - g/cm\u00b3\r\n   * - Sand fraction\r\n     - % weight\r\n   * - Silt fraction\r\n     - % weight\r\n   * - Clay fraction\r\n     - % weight\r\n   * - Organic carbon\r\n     - % weight\r\n   * - Saturation\r\n     - % vol\r\n   * - Field capacity\r\n     - % vol\r\n   * - Potential plant available water\r\n     - % vol\r\n   * - Permanent wilting point\r\n     - % vol\r\n\r\nLandcover Classification\r\n------------------------\r\nThe ISMN data comes with information about landcover classification from the\r\nESA CCI land cover project (years 2000, 2005 and 2010) as well as from in-situ\r\nmeasurements. To use ESA CCI land cover variables for filtering the data in the get_dataset_ids\r\nfunction, set the keyword parameters (landcover_2000, landcover_2005 or landcover_2010)\r\nto the corresponding integer values (e.g. 10) in the list below. To get a list of\r\npossible values for filtering by in-situ values (keyword parameter: \"landcover_insitu\"),\r\ncall the get_landcover_types method of your ISMN_Interface object and set landcover='landcover_insitu'.\r\n\r\n.. list-table:: ISMN Landcover classes and meanings\r\n   :widths: 5 50\r\n   :header-rows: 1\r\n\r\n   * - Value\r\n     - Meaning\r\n   * - 10\r\n     - Cropland, rainfed\r\n   * - 11\r\n     - Cropland, rainfed / Herbaceous cover\r\n   * - 12\r\n     - Cropland, rainfed / Tree or shrub cover\r\n   * - 20\r\n     - Cropland, irrigated or post-flooding\r\n   * - 30\r\n     - Mosaic cropland (>50%) / natural vegetation (tree, shrub, herbaceous)\r\n   * - 40\r\n     - Mosaic natural vegetation (>50%) / cropland (<50%)\r\n   * - 50\r\n     - Tree cover, broadleaved, evergreen, Closed to open (>15%)\r\n   * - 60\r\n     - Tree cover, broadleaved, deciduous, Closed to open (>15%)\r\n   * - 61\r\n     - Tree cover, broadleaved, deciduous, Closed (>40%)\r\n   * - 62\r\n     - Tree cover, broadleaved, deciduous, Open (15-40%)\r\n   * - 70\r\n     - Tree cover, needleleaved, evergreen, Closed to open (>15%)\r\n   * - 71\r\n     - Tree cover, needleleaved, evergreen, Closed (>40%)\r\n   * - 72\r\n     - Tree cover, needleleaved, evergreen, Open (15-40%)\r\n   * - 80\r\n     - Tree cover, needleleaved, deciduous, Closed to open (>15%)\r\n   * - 81\r\n     - Tree cover, needleleaved, deciduous, Closed (>40%)\r\n   * - 82\r\n     - Tree cover, needleleaved, deciduous, Open (15-40%)\r\n   * - 90\r\n     - Tree cover, mixed leaf type (broadleaved and needleleaved)\r\n   * - 100\r\n     - Mosaic tree and shrub (>50%) / herbaceous cover (<50%)\r\n   * - 110\r\n     - Mosaic herbaceous cover (>50%) / tree and shrub (<50%)\r\n   * - 120\r\n     - Shrubland\r\n   * - 121\r\n     - Shrubland / Evergreen Shrubland\r\n   * - 122\r\n     - Shrubland / Deciduous Shrubland\r\n   * - 130\r\n     - Grassland\r\n   * - 140\r\n     - Lichens and mosses\r\n   * - 150\r\n     - Sparse vegetation (tree, shrub, herbaceous cover) (<15%)\r\n   * - 152\r\n     - Sparse vegetation (<15%) / Sparse shrub (<15%)\r\n   * - 153\r\n     - Sparse vegetation (<15%) / Sparse herbaceous cover (<15%)\r\n   * - 160\r\n     - Tree cover, flooded, fresh or brackish water\r\n   * - 170\r\n     - Tree cover, flooded, saline water\r\n   * - 180\r\n     - Shrub or herbaceous cover, flooded, fresh/saline/brackish water\r\n   * - 190\r\n     - Urban areas\r\n   * - 200\r\n     - Bare areas\r\n   * - 201\r\n     - Consolidated bare areas\r\n   * - 202\r\n     - Unconsolidated bare areas\r\n   * - 210\r\n     - Water\r\n   * - 220\r\n     - Permanent snow and ice\r\n\r\nClimate Classification\r\n----------------------\r\nThe ISMN data comes with information about climate classification from the Koeppen-Geiger\r\nClimate Classification (2007) as well as in-situ measurements. To use\r\nKoeppen-Geiger variable for filtering the data in the get_dataset_ids function, set the\r\nkeyword parameter \"climate\" to the corresponding keys (e.g. 'Af') in the list below. To get a list of\r\npossible values for filtering by in-situ values (keyword parameter: \"climate_insitu\"), call the\r\nget_climate_types method of your ISMN_Interface object and set climate='climate_insitu'.\r\n\r\n.. list-table:: Climate Classes and Meanings\r\n   :widths: 5 50\r\n   :header-rows: 1\r\n\r\n   * - Class\r\n     - Meaning\r\n   * - Af\r\n     - Tropical Rainforest\r\n   * - Am\r\n     - Tropical Monsoon\r\n   * - As\r\n     - Tropical Savanna Dry\r\n   * - Aw\r\n     - Tropical Savanna Wet\r\n   * - BWk\r\n     - Arid Desert Cold\r\n   * - BWh\r\n     - Arid Desert Hot\r\n   * - BWn\r\n     - Arid Desert With Frequent Fog\r\n   * - BSk\r\n     - Arid Steppe Cold\r\n   * - BSh\r\n     - Arid Steppe Hot\r\n   * - BSn\r\n     - Arid Steppe With Frequent Fog\r\n   * - Csa\r\n     - Temperate Dry Hot Summer\r\n   * - Csb\r\n     - Temperate Dry Warm Summer\r\n   * - Csc\r\n     - Temperate Dry Cold Summer\r\n   * - Cwa\r\n     - Temperate Dry Winter, Hot Summer\r\n   * - Cwb\r\n     - Temperate Dry Winter, Warm Summer\r\n   * - Cwc\r\n     - Temperate Dry Winter, Cold Summer\r\n   * - Cfa\r\n     - Temperate Without Dry Season, Hot Summer\r\n   * - Cfb\r\n     - Temperate Without Dry Season, Warm Summer\r\n   * - Cfc\r\n     - Temperate Without Dry Season, Cold Summer\r\n   * - Dsa\r\n     - Cold Dry Summer, Hot Summer\r\n   * - Dsb\r\n     - Cold Dry Summer, Warm Summer\r\n   * - Dsc\r\n     - Cold Dry Summer, Cold Summer\r\n   * - Dsd\r\n     - Cold Dry Summer, Very Cold Winter\r\n   * - Dwa\r\n     - Cold Dry Winter, Hot Summer\r\n   * - Dwb\r\n     - Cold Dry Winter, Warm Summer\r\n   * - Dwc\r\n     - Cold Dry Winter, Cold Summer\r\n   * - Dwd\r\n     - Cold Dry Winter, Very Cold Winter\r\n   * - Dfa\r\n     - Cold Dry Without Dry Season, Hot Summer\r\n   * - Dfb\r\n     - Cold Dry Without Dry Season, Warm Summer\r\n   * - Dfc\r\n     - Cold Dry Without Dry Season, Cold Summer\r\n   * - Dfd\r\n     - Cold Dry Without Dry Season, Very Cold Winter\r\n   * - ET\r\n     - Polar Tundra\r\n   * - EF\r\n     - Polar Eternal Winter\r\n   * - W\r\n     - Water\r\n\r\n\r\nContribute\r\n==========\r\n\r\nWe are happy if you want to contribute. Please raise an issue explaining what\r\nis missing or if you find a bug. We will also gladly accept pull requests\r\nagainst our master branch for new features or bug fixes.\r\n\r\nDevelopment setup\r\n-----------------\r\n\r\nFor Development we also recommend a ``conda`` environment. You can create one\r\nincluding test dependencies and debugger by running\r\n``conda env create -f environment.yml``. This will create a new\r\n``ismn`` environment which you can activate by using\r\n``conda activate ismn``.\r\n\r\nGuidelines\r\n----------\r\n\r\nIf you want to contribute please follow these steps:\r\n\r\n- Fork the ismn repository to your account\r\n- Clone the repository\r\n- make a new feature branch from the ismn master branch\r\n- Add your feature\r\n- Please include tests for your contributions in one of the test directories.\r\n  We use pytest so a simple function called test_my_feature is enough\r\n- submit a pull request to our master branch\r\n\r\nCode Formatting\r\n---------------\r\nTo apply pep8 conform styling to any changed files [we use `yapf`](https://github.com/google/yapf). The correct\r\nsettings are already set in `setup.cfg`. Therefore the following command\r\nshould be enough:\r\n\r\n    yapf file.py --in-place\r\n\r\nRelease new version\r\n-------------------\r\n\r\nTo release a new version of this package, make sure all tests are passing on the\r\nmaster branch and the CHANGELOG.rst is up-to-date, with changes for the new version\r\nat the top.\r\n\r\nThen draft a new release at https://github.com/TUW-GEO/ismn/releases.\r\nCreate a version tag following the ``v{MAJOR}.{MINOR}.{PATCH}`` pattern.\r\nThis will trigger a new build on GitHub and should push the packages to pypi after\r\nall tests have passed.\r\n\r\nIf this does not work (tests pass but upload fails) you can download the\r\n``whl`` and ``dist`` packages for each workflow run from\r\nhttps://github.com/TUW-GEO/ismn/actions (Artifacts) and push them manually to\r\nhttps://pypi.org/project/ismn/ (you need to be a package maintainer on pypi for that).\r\n\r\nIn any case, ``pip install ismn`` should download the newest version afterwards.\r\n",
    "bugtrack_url": null,
    "license": "mit",
    "summary": "Readers for the data from the International Soil Moisture Database",
    "version": "1.4.1",
    "project_urls": {
        "Documentation": "https://ismn.readthedocs.io/en/latest/",
        "Homepage": "http://ismn.geo.tuwien.ac.at"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f3224c0774d545bd9808abb171bd9f0c8e22b1cf5a85f631f6cd965bf7e220e",
                "md5": "472c47be3225370eac302cb3a5020d6b",
                "sha256": "a4603f0c8913833aa19030178528494ba26b2584a446ae5e1703c40121c5e769"
            },
            "downloads": -1,
            "filename": "ismn-1.4.1-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "472c47be3225370eac302cb3a5020d6b",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.6",
            "size": 66010,
            "upload_time": "2024-05-06T15:49:10",
            "upload_time_iso_8601": "2024-05-06T15:49:10.267486Z",
            "url": "https://files.pythonhosted.org/packages/4f/32/24c0774d545bd9808abb171bd9f0c8e22b1cf5a85f631f6cd965bf7e220e/ismn-1.4.1-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "abdc22bad7e02d144fec094db72409d97baddc4749cb54aba6c9fb39337f5ba6",
                "md5": "a267384eaa34b5f74eecc930dbc2f257",
                "sha256": "afa327ad48f8509417c275804eccac0146f32eba10b6ccdfc7bb3efea52044d0"
            },
            "downloads": -1,
            "filename": "ismn-1.4.1.tar.gz",
            "has_sig": false,
            "md5_digest": "a267384eaa34b5f74eecc930dbc2f257",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 2961942,
            "upload_time": "2024-05-06T15:49:13",
            "upload_time_iso_8601": "2024-05-06T15:49:13.660557Z",
            "url": "https://files.pythonhosted.org/packages/ab/dc/22bad7e02d144fec094db72409d97baddc4749cb54aba6c9fb39337f5ba6/ismn-1.4.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-06 15:49:13",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "ismn"
}
        
Elapsed time: 0.31897s