From 4df95df637d09d2b4c61da06ae23c879435e25e8 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Fri, 30 Oct 2015 17:59:15 -0700 Subject: [PATCH 1/2] Fix tile-join crash when no CSV is specified. Accept multiple input files. --- tile-join.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tile-join.cc b/tile-join.cc index 8acce36..71a09f5 100644 --- a/tile-join.cc +++ b/tile-join.cc @@ -216,7 +216,7 @@ void handle(std::string message, int z, unsigned x, unsigned y, struct pool **fi feature_tags.push_back(v->n); } - if (strcmp(key, header[0].c_str()) == 0) { + if (header.size() > 0 && strcmp(key, header[0].c_str()) == 0) { std::map >::iterator ii = mapping.find(std::string(value)); if (ii != mapping.end()) { @@ -387,7 +387,7 @@ void decode(char *fname, char *map, struct pool **file_keys, char ***layernames, } void usage(char **argv) { - fprintf(stderr, "Usage: %s [-f] [-i] [-c joins.csv] [-x exclude ...] -o new.mbtiles source.mbtiles\n", argv[0]); + fprintf(stderr, "Usage: %s [-f] [-i] [-c joins.csv] [-x exclude ...] -o new.mbtiles source.mbtiles ...\n", argv[0]); exit(EXIT_FAILURE); } @@ -515,7 +515,7 @@ int main(int argc, char **argv) { } } - if (argc - optind != 1 || outfile == NULL) { + if (argc - optind < 1 || outfile == NULL) { usage(argv); } From 71e00fc8fe6889a23d5dc4fe0eef5337ceb6c6f7 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Mon, 2 Nov 2015 14:34:01 -0800 Subject: [PATCH 2/2] Calculate the min and max lat, lon, and zoom when merging tilesets --- tile-join.cc | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/tile-join.cc b/tile-join.cc index 71a09f5..9ccfa48 100644 --- a/tile-join.cc +++ b/tile-join.cc @@ -2,6 +2,7 @@ #include #include #include +#include #include #include #include @@ -322,6 +323,22 @@ void handle(std::string message, int z, unsigned x, unsigned y, struct pool **fi mbtiles_write_tile(outdb, z, x, y, compressed.data(), compressed.size()); } +double min(double a, double b) { + if (a < b) { + return a; + } else { + return b; + } +} + +double max(double a, double b) { + if (a > b) { + return a; + } else { + return b; + } +} + void decode(char *fname, char *map, struct pool **file_keys, char ***layernames, int *nlayers, sqlite3 *outdb, struct stats *st, std::vector &header, std::map > &mapping, struct pool *exclude, int ifmatched) { sqlite3 *db; @@ -355,13 +372,15 @@ void decode(char *fname, char *map, struct pool **file_keys, char ***layernames, if (sqlite3_prepare_v2(db, "SELECT value from metadata where name = 'minzoom'", -1, &stmt, NULL) == SQLITE_OK) { if (sqlite3_step(stmt) == SQLITE_ROW) { - st->minzoom = sqlite3_column_int(stmt, 0); + int minzoom = sqlite3_column_int(stmt, 0); + st->minzoom = min(st->minzoom, minzoom); } sqlite3_finalize(stmt); } if (sqlite3_prepare_v2(db, "SELECT value from metadata where name = 'maxzoom'", -1, &stmt, NULL) == SQLITE_OK) { if (sqlite3_step(stmt) == SQLITE_ROW) { - st->maxzoom = sqlite3_column_int(stmt, 0); + int maxzoom = sqlite3_column_int(stmt, 0); + st->maxzoom = max(st->maxzoom, maxzoom); } sqlite3_finalize(stmt); } @@ -375,7 +394,12 @@ void decode(char *fname, char *map, struct pool **file_keys, char ***layernames, if (sqlite3_prepare_v2(db, "SELECT value from metadata where name = 'bounds'", -1, &stmt, NULL) == SQLITE_OK) { if (sqlite3_step(stmt) == SQLITE_ROW) { const unsigned char *s = sqlite3_column_text(stmt, 0); - sscanf((char *) s, "%lf,%lf,%lf,%lf", &st->minlon, &st->minlat, &st->maxlon, &st->maxlat); + double minlon, minlat, maxlon, maxlat; + sscanf((char *) s, "%lf,%lf,%lf,%lf", &minlon, &minlat, &maxlon, &maxlat); + st->minlon = min(minlon, st->minlon); + st->maxlon = max(maxlon, st->maxlon); + st->minlat = min(minlat, st->minlat); + st->maxlat = max(maxlat, st->maxlat); } sqlite3_finalize(stmt); } @@ -526,6 +550,8 @@ int main(int argc, char **argv) { sqlite3 *outdb = mbtiles_open(outfile, argv); struct stats st; memset(&st, 0, sizeof(st)); + st.minzoom = st.minlat = st.minlon = INT_MAX; + st.maxzoom = st.maxlat = st.maxlon = INT_MIN; struct pool *file_keys = NULL; char **layernames = NULL;