https://github.com/mapbox/tippecanoe
Raw File
Tip revision: e46769b2816c4b8d27c46c5427e6384ab13c3b0c authored by Eric Fischer on 25 September 2015, 19:38:28 UTC
Hacky thing to dump tile coordinates and properties to stdout while tiling
Tip revision: e46769b
memfile.h
struct memfile {
	int fd;
	char *map;
	long long len;
	long long off;
};

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