Metadata-Version: 2.1
Name: soiltexture
Version: 1.0.3
Summary: Soil texture classification
Home-page: https://github.com/sagitta1618/soiltexture
Author: sagitta1618
License: UNKNOWN
Description: Soil texture classification
        ===========================
        
        ![PyPI - Downloads](https://img.shields.io/pypi/dm/soiltexture)
        
        How to install:
        **`pip install soiltexture`**
        
        Possible classifications:
        - USDA
        - FAO
        - INTERNATIONAL
        - ISSS
        
        Usage:
        ```python
        from soiltexture import getTexture, getTextures
        
        getTexture(13, 50, classification='USDA')
        # silty loam
        
        getTextures([13, 45], [50, 24], classification='FAO')
        # ['fine', 'medium']
        ```
        
        Requirements:
        - matplotlib : to use the `path` module
        
        Source for the .dat file:
        https://github.com/gmassei/SoilTexture
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
