https://github.com/mapbox/tippecanoe
Raw File
Tip revision: f920c05c750a2471f2877cb845a503af9be3b9e4 authored by Eric Fischer on 05 May 2016, 21:55:52 UTC
Merge pull request #241 from mapbox/save-polygons
Tip revision: f920c05
memfile.hpp
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