swh:1:snp:ff2a11cd2e44dd19ec3814028ef2ce6605664e63
Raw File
Tip revision: 040dcdfa14952b21e62614cb1eaa14be7d5e2a04 authored by Eric Fischer on 04 February 2016, 00:37:43 UTC
Track the average gap between points in the densest tile
Tip revision: 040dcdf
projection.h
void latlon2tile(double lat, double lon, int zoom, long long *x, long long *y);
void tile2latlon(long long x, long long 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