Metadata-Version: 2.1
Name: WKTUtils
Version: 1.1.5
Summary: A few WKT utilities for use elsewhere
Home-page: https://github.com/asfadmin/Discovery-WKTUtils.git
Author: ASF Discovery Team
Author-email: uaf-asf-discovery@alaska.edu
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Discovery-WKTUtils

[![image](https://img.shields.io/pypi/v/wktutils.svg)](https://pypi.python.org/pypi/WKTUtils)

### To Install as Package, add the following line to requirements.txt:

```bash
git+https://github.com/asfadmin/Discovery-WKTUtils.git@prod#egg=WKTUtils
```

(The package name will be 'WKTUtils'. You can change 'prod' to desired branch).

### Install the requirements file:

```bash
python3 -m pip install -r requirements.ext --upgrade
```

### FilesToWKT:
You must open shapefiles in read binary mode, before passing them into the function.

```python
from WKTUtils.FilesToWKT import filesToWKT
f = open("path/to/file.shp", "rb")
# NOTE: f can be a list of files too. filesToWKT([f1, f2, ...]).getWKT()
wkt = filesToWKT(f).getWKT()
```
