https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 2a856b49bd803a26eb3ea705227886c2f88d59f1 authored by Eric Fischer on 14 October 2016, 22:34:25 UTC
Merge pull request #302 from mapbox/simplify-polygons-together
Tip revision: 2a856b4
main.hpp
struct index {
	long long start;
	long long end;
	unsigned long long index;
	short segment;
	unsigned long long seq : (64 - 16);  // pack with segment to stay in 32 bytes
};

void checkdisk(struct reader *r, int nreader);

extern int geometry_scale;
extern int quiet;

extern int CPUS;
extern int TEMP_FILES;
back to top