tilezen / mapbox-vector-tile

Python package for encoding & decoding Mapbox Vector Tiles
MIT License
240 stars 47 forks source link

non geographic data #109

Closed cornhundred closed 3 years ago

cornhundred commented 3 years ago

Is it possible to generate MVT tiles from non-geographic data - e.g. X and Y coordinates on a 2D plane?

nvkelso commented 3 years ago

You can certainly "fake" your data into web mercator projection, but it would involve some scaling tricks. You might want to try Carto or MapTiler as they support multiple projections with GUI tools.

cornhundred commented 3 years ago

Thanks @nvkelso I'll look into that