Metadata-Version: 2.1
Name: VectorTileGenerator
Version: 0.0.6
Summary: Automatically generate a list of all possible tiles options between two zoom levels and a bounding box.
Home-page: https://github.com/mkeller3/VectorTileGenerator/
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 z,x,y tiles options between two zoom levels and a bounding box.

## Install
`pip install VectorTileGenerator`

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

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

# Demo of generating tiles
print(json.dumps(tileGeneration.generate(), indent=4))

{
    "1": [
        [
            1,
            0,
            0
        ]
    ],
    "2": [
        [
            2,
            0,
            1
        ],
        [
            2,
            1,
            1
        ]
    ],
    "3": [
        [
            3,
            1,
            2
        ],
        [
            3,
            1,
            3
        ],
        [
            3,
            2,
            2
        ],
        [
            3,
            2,
            3
        ]
    ]
}
```

