https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 094b3e780c9e2c78a676502c2365eeccab3679c6 authored by Eric Fischer on 02 February 2016, 00:09:29 UTC
Add an option (-ag) for the glow calculation and fix its the memory leak
Tip revision: 094b3e7
memfile.h
struct memfile {
	int fd;
	char *map;
	long long len;
	long long off;
	long long tree;
};

struct memfile *memfile_open(int fd);
int memfile_close(struct memfile *file);
int memfile_write(struct memfile *file, void *s, long long len);
back to top