https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 7a5fc36c509cf46f82fd61897c82b0c0a69884f3 authored by Eric Fischer on 09 March 2016, 23:08:05 UTC
Inline the metadata with the geometry instead of referring to another file
Tip revision: 7a5fc36
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