Metadata-Version: 2.1
Name: polsartools
Version: 0.1.1
Summary: A package to process Synthetic Aperture Radar data
Home-page: https://github.com/Narayana-Rao/polsartools
Author: Narayanarao Bhogapurapu
Author-email: bnarayanarao@iitb.ac.in
License: GPL-3.0 license
Project-URL: Bug Tracker, https://github.com/Narayana-Rao/polsartools/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# PolSARtools PyPI package (Alpha version!)
 
 [![Documentation Status](https://readthedocs.org/projects/polsartools/badge/?version=latest)](https://polsartools.readthedocs.io/en/latest/?badge=latest)

#### Installation
```
pip install polsartools
```
 
#### Prerequesites 
 
 ```gdal, Numpy```
 
#### gdal installation error fix
 
 ```conda install -c conda-forge gdal```

#### Example
```python
import polsartools as pst

T3_folder = r'../T3'
windows_size=3

ps,pd,pv,pc,tfp,taufp = pst.mf4cf(T3_folder,window_size=window_size,write_flag=1)

```
