https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 801c5d65742007e7dd6b0f2235cfc4081bc13ac1 authored by Eric Fischer on 17 January 2017, 18:38:40 UTC
Add instructions for upgrading g++ on Linux
Tip revision: 801c5d6
main.hpp
struct index {
	long long start;
	long long end;
	unsigned long long index;
	short segment;
	unsigned short t : 2;
	unsigned long long seq : (64 - 18);  // pack with segment and t to stay in 32 bytes
};

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

extern int geometry_scale;
extern int quiet;

extern size_t CPUS;
extern size_t TEMP_FILES;

extern size_t max_tile_size;
back to top