Metadata-Version: 2.1
Name: VectorTileGenerator
Version: 0.0.5
Summary: Automatically generate a list of all possible tiles
Home-page: https://github.com/mkeller3/ZXY-Vector-Tile-Generator-Machine/
Author: Michael Keller
Author-email: michaelkeller03@gmail.com
License: GNU General Public License v3.0
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: geojson (==2.5.0)
Requires-Dist: joblib (==1.1.0)
Requires-Dist: turfpy (==0.0.7)

# VectorTileGenerator

A python package to automatically generate a list of all possible tiles options between two zoom levels and a bounding box.

## Install
`pip install VectorTileGenerator`

## How to use
```
from VectorTileGenerator import generator

tileGeneration = generator.GenerateTiles(1, 5, [-118, 34, -84, 50])

# Demo of generating tiles
print(tileGeneration.generate())
```

