Revision d1456c0f66fe38d11f7b106fbb7870bdffbdc262 authored by Eric Fischer on 05 April 2016, 22:13:44 UTC, committed by Eric Fischer on 05 April 2016, 22:13:44 UTC
Restructure geometry reordering to try to reduce virtual memory thrashing
2 parent s 1e8c030 + 4a572b8
Raw File
mbtiles.h
sqlite3 *mbtiles_open(char *dbname, char **argv, int forcetable);

void mbtiles_write_tile(sqlite3 *outdb, int z, int tx, int ty, const char *data, int size);

void mbtiles_write_metadata(sqlite3 *outdb, const char *fname, char **layername, int minzoom, int maxzoom, double minlat, double minlon, double maxlat, double maxlon, double midlat, double midlon, struct pool **file_keys, int nlayers, int forcetable);

void mbtiles_close(sqlite3 *outdb, char **argv);
back to top