https://github.com/mapbox/tippecanoe
Raw File
Tip revision: de2037a479a926e025e7ec0cfe20fc990f52439f authored by Eric Fischer on 02 August 2019, 18:44:07 UTC
Add --split-complex-polygons option
Tip revision: de2037a
pool.hpp
#ifndef POOL_HPP
#define POOL_HPP

struct stringpool {
	unsigned long left = 0;
	unsigned long right = 0;
	unsigned long off = 0;
};

long long addpool(struct memfile *poolfile, struct memfile *treefile, const char *s, char type);

#endif
back to top