Metadata-Version: 2.4
Name: TRACK-pylib
Version: 0.2.0
Summary: Python-wrapped implementation of the TRACK software
Author-email: Abel Shibu <abels2000@gmail.com>
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: netCDF4
Requires-Dist: xarray

### pyTRACK

This is a python-wrapped implementation of the TRACK software.

To install, simply run 

```
pip install track-pylib
```

or git clone this repository and from its base folder run

```
pip install -e .
```

Then from a Python terminal, run

```
from pyTRACK import *
track()
```

This should start the TRACK namelist.

To get the tracks from an 850hPa u-v wind file, run

```
from pyTRACK import *
track_uv(path_to_file)
```
