https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 94b09821e165ae05c343d26481a844033014f754 authored by Eric Fischer on 03 August 2015, 21:13:58 UTC
Output polygons with metadata and with each ring separately
Tip revision: 94b0982
projection.h
void latlon2tile(double lat, double lon, int zoom, unsigned int *x, unsigned int *y);
void tile2latlon(unsigned int x, unsigned int y, int zoom, double *lat, double *lon);
unsigned long long encode(unsigned int wx, unsigned int wy);
void decode(unsigned long long index, unsigned *wx, unsigned *wy);
back to top