Metadata-Version: 2.1
Name: soiltexture
Version: 1.0.1
Summary: Soil texture classification
Home-page: https://github.com/sagitta1618/soiltexture
Author: sagitta1618
License: UNKNOWN
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
Requires-Dist: matplotlib

Soil texture classification
===========================

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

