2015-08-20 20:02:34 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2016-04-23 06:32:02 +00:00
|
|
|
#include <string.h>
|
2015-08-20 20:02:34 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <sqlite3.h>
|
2015-11-02 22:34:01 +00:00
|
|
|
#include <limits.h>
|
2015-08-20 23:45:45 +00:00
|
|
|
#include <vector>
|
2015-08-20 20:02:34 +00:00
|
|
|
#include <string>
|
2015-08-20 23:45:45 +00:00
|
|
|
#include <map>
|
2016-04-28 21:43:04 +00:00
|
|
|
#include <set>
|
2015-08-20 20:02:34 +00:00
|
|
|
#include <zlib.h>
|
|
|
|
#include <math.h>
|
2016-04-27 19:22:47 +00:00
|
|
|
#include "mvt.hpp"
|
2016-04-27 21:00:14 +00:00
|
|
|
#include "projection.hpp"
|
|
|
|
#include "pool.hpp"
|
|
|
|
#include "mbtiles.hpp"
|
2016-04-27 22:09:06 +00:00
|
|
|
#include "geometry.hpp"
|
2015-08-20 20:02:34 +00:00
|
|
|
|
2015-08-21 00:32:58 +00:00
|
|
|
std::string dequote(std::string s);
|
|
|
|
|
2015-08-20 23:12:34 +00:00
|
|
|
struct stats {
|
|
|
|
int minzoom;
|
|
|
|
int maxzoom;
|
|
|
|
double midlat, midlon;
|
|
|
|
double minlat, minlon, maxlat, maxlon;
|
|
|
|
};
|
|
|
|
|
2016-05-03 17:52:49 +00:00
|
|
|
void handle(std::string message, int z, unsigned x, unsigned y, std::vector<std::set<type_and_string> > &file_keys, std::vector<std::string> &layernames, int *nlayers, sqlite3 *outdb, std::vector<std::string> &header, std::map<std::string, std::vector<std::string> > &mapping, std::set<std::string> &exclude, int ifmatched) {
|
2016-04-22 22:47:06 +00:00
|
|
|
mvt_tile tile;
|
|
|
|
mvt_tile outtile;
|
2015-09-30 18:56:22 +00:00
|
|
|
int features_added = 0;
|
2015-08-20 20:02:34 +00:00
|
|
|
|
2016-04-25 19:13:52 +00:00
|
|
|
if (!tile.decode(message)) {
|
2016-04-22 22:47:06 +00:00
|
|
|
fprintf(stderr, "Couldn't decompress tile %d/%u/%u\n", z, x, y);
|
2015-08-20 20:02:34 +00:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2016-04-22 22:47:06 +00:00
|
|
|
for (size_t l = 0; l < tile.layers.size(); l++) {
|
|
|
|
mvt_layer &layer = tile.layers[l];
|
|
|
|
mvt_layer outlayer;
|
2015-08-20 20:02:34 +00:00
|
|
|
|
2016-04-22 22:47:06 +00:00
|
|
|
outlayer.name = layer.name;
|
|
|
|
outlayer.version = layer.version;
|
|
|
|
outlayer.extent = layer.extent;
|
2015-08-20 20:02:34 +00:00
|
|
|
|
2016-04-22 22:47:06 +00:00
|
|
|
const char *ln = layer.name.c_str();
|
2015-08-20 20:42:24 +00:00
|
|
|
|
|
|
|
int ll;
|
|
|
|
for (ll = 0; ll < *nlayers; ll++) {
|
2016-05-03 17:52:49 +00:00
|
|
|
if (strcmp(layernames[ll].c_str(), ln) == 0) {
|
2015-08-20 20:42:24 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ll == *nlayers) {
|
2016-04-28 21:43:04 +00:00
|
|
|
file_keys.push_back(std::set<type_and_string>());
|
2016-05-03 17:52:49 +00:00
|
|
|
layernames.push_back(std::string(ln));
|
2015-08-20 20:42:24 +00:00
|
|
|
*nlayers = ll + 1;
|
|
|
|
}
|
|
|
|
|
2016-04-22 22:47:06 +00:00
|
|
|
for (size_t f = 0; f < layer.features.size(); f++) {
|
|
|
|
mvt_feature feat = layer.features[f];
|
2016-04-25 21:19:38 +00:00
|
|
|
mvt_feature outfeature;
|
2015-08-24 21:12:46 +00:00
|
|
|
int matched = 0;
|
2015-08-20 21:27:39 +00:00
|
|
|
|
2016-08-16 20:21:15 +00:00
|
|
|
if (feat.has_id) {
|
|
|
|
outfeature.has_id = true;
|
|
|
|
outfeature.id = feat.id;
|
|
|
|
}
|
|
|
|
|
2016-05-03 23:39:26 +00:00
|
|
|
for (size_t t = 0; t + 1 < feat.tags.size(); t += 2) {
|
2016-04-22 22:47:06 +00:00
|
|
|
const char *key = layer.keys[feat.tags[t]].c_str();
|
|
|
|
mvt_value &val = layer.values[feat.tags[t + 1]];
|
2016-05-03 18:14:09 +00:00
|
|
|
std::string value;
|
2015-08-21 17:33:57 +00:00
|
|
|
int type = -1;
|
2015-08-20 21:27:39 +00:00
|
|
|
|
2016-04-22 22:47:06 +00:00
|
|
|
if (val.type == mvt_string) {
|
2016-05-03 18:14:09 +00:00
|
|
|
value = val.string_value;
|
2015-08-20 21:27:39 +00:00
|
|
|
type = VT_STRING;
|
2016-04-22 22:47:06 +00:00
|
|
|
} else if (val.type == mvt_int) {
|
2016-05-03 18:14:09 +00:00
|
|
|
aprintf(&value, "%lld", (long long) val.numeric_value.int_value);
|
|
|
|
type = VT_NUMBER;
|
2016-04-22 22:47:06 +00:00
|
|
|
} else if (val.type == mvt_double) {
|
2016-05-03 18:14:09 +00:00
|
|
|
aprintf(&value, "%g", val.numeric_value.double_value);
|
|
|
|
type = VT_NUMBER;
|
2016-04-22 22:47:06 +00:00
|
|
|
} else if (val.type == mvt_float) {
|
2016-05-03 18:14:09 +00:00
|
|
|
aprintf(&value, "%g", val.numeric_value.float_value);
|
|
|
|
type = VT_NUMBER;
|
2016-04-22 22:47:06 +00:00
|
|
|
} else if (val.type == mvt_bool) {
|
2016-05-03 18:14:09 +00:00
|
|
|
aprintf(&value, "%s", val.numeric_value.bool_value ? "true" : "false");
|
|
|
|
type = VT_BOOLEAN;
|
2016-04-22 22:47:06 +00:00
|
|
|
} else if (val.type == mvt_sint) {
|
2016-05-03 18:14:09 +00:00
|
|
|
aprintf(&value, "%lld", (long long) val.numeric_value.sint_value);
|
|
|
|
type = VT_NUMBER;
|
2016-04-22 22:47:06 +00:00
|
|
|
} else if (val.type == mvt_uint) {
|
2016-05-03 18:14:09 +00:00
|
|
|
aprintf(&value, "%llu", (long long) val.numeric_value.uint_value);
|
|
|
|
type = VT_NUMBER;
|
2015-08-20 21:27:39 +00:00
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-08-21 17:33:57 +00:00
|
|
|
if (type < 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-04-28 21:43:04 +00:00
|
|
|
if (exclude.count(std::string(key)) == 0) {
|
|
|
|
type_and_string tas;
|
|
|
|
tas.string = std::string(key);
|
|
|
|
tas.type = type;
|
|
|
|
file_keys[ll].insert(tas);
|
2016-04-25 21:19:38 +00:00
|
|
|
outlayer.tag(outfeature, layer.keys[feat.tags[t]], val);
|
2015-08-22 00:32:44 +00:00
|
|
|
}
|
2015-08-21 00:32:58 +00:00
|
|
|
|
2015-10-31 00:59:15 +00:00
|
|
|
if (header.size() > 0 && strcmp(key, header[0].c_str()) == 0) {
|
2016-05-03 18:14:09 +00:00
|
|
|
std::map<std::string, std::vector<std::string> >::iterator ii = mapping.find(value);
|
2015-08-21 00:32:58 +00:00
|
|
|
|
|
|
|
if (ii != mapping.end()) {
|
|
|
|
std::vector<std::string> fields = ii->second;
|
2015-08-24 21:12:46 +00:00
|
|
|
matched = 1;
|
2015-08-21 00:32:58 +00:00
|
|
|
|
2016-03-25 19:20:32 +00:00
|
|
|
for (size_t i = 1; i < fields.size(); i++) {
|
2015-08-21 00:32:58 +00:00
|
|
|
std::string joinkey = header[i];
|
|
|
|
std::string joinval = fields[i];
|
2016-05-03 22:48:42 +00:00
|
|
|
int attr_type = VT_STRING;
|
2015-08-21 00:32:58 +00:00
|
|
|
|
|
|
|
if (joinval.size() > 0) {
|
|
|
|
if (joinval[0] == '"') {
|
|
|
|
joinval = dequote(joinval);
|
|
|
|
} else if ((joinval[0] >= '0' && joinval[0] <= '9') || joinval[0] == '-') {
|
2016-05-03 22:48:42 +00:00
|
|
|
attr_type = VT_NUMBER;
|
2015-08-21 00:32:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *sjoinkey = joinkey.c_str();
|
|
|
|
|
2016-04-28 21:43:04 +00:00
|
|
|
if (exclude.count(joinkey) == 0) {
|
|
|
|
type_and_string tas;
|
|
|
|
tas.string = std::string(sjoinkey);
|
2016-05-03 22:48:42 +00:00
|
|
|
tas.type = attr_type;
|
2016-04-28 21:43:04 +00:00
|
|
|
file_keys[ll].insert(tas);
|
2015-08-21 00:32:58 +00:00
|
|
|
|
2016-04-25 21:19:38 +00:00
|
|
|
mvt_value outval;
|
2016-05-03 22:48:42 +00:00
|
|
|
if (attr_type == VT_STRING) {
|
2016-04-25 21:19:38 +00:00
|
|
|
outval.type = mvt_string;
|
|
|
|
outval.string_value = joinval;
|
2015-08-22 00:32:44 +00:00
|
|
|
} else {
|
2016-04-25 21:19:38 +00:00
|
|
|
outval.type = mvt_double;
|
|
|
|
outval.numeric_value.double_value = atof(joinval.c_str());
|
2015-08-22 00:32:44 +00:00
|
|
|
}
|
2015-08-21 00:32:58 +00:00
|
|
|
|
2016-04-25 21:19:38 +00:00
|
|
|
outlayer.tag(outfeature, joinkey, outval);
|
2015-08-22 00:32:44 +00:00
|
|
|
}
|
2015-08-21 00:32:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-08-20 21:27:39 +00:00
|
|
|
}
|
2015-08-24 21:12:46 +00:00
|
|
|
|
|
|
|
if (matched || !ifmatched) {
|
2016-04-22 22:47:06 +00:00
|
|
|
outfeature.type = feat.type;
|
|
|
|
outfeature.geometry = feat.geometry;
|
2015-08-24 21:12:46 +00:00
|
|
|
|
2015-09-30 18:56:22 +00:00
|
|
|
features_added++;
|
2016-04-22 22:47:06 +00:00
|
|
|
outlayer.features.push_back(outfeature);
|
2015-08-24 21:12:46 +00:00
|
|
|
}
|
2015-08-20 20:02:34 +00:00
|
|
|
}
|
2015-08-20 21:50:26 +00:00
|
|
|
|
2016-04-22 22:47:06 +00:00
|
|
|
outtile.layers.push_back(outlayer);
|
2015-08-20 20:02:34 +00:00
|
|
|
}
|
2015-08-20 22:15:47 +00:00
|
|
|
|
2015-09-30 18:56:22 +00:00
|
|
|
if (features_added == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-04-25 19:13:52 +00:00
|
|
|
std::string compressed = outtile.encode();
|
2015-08-20 22:15:47 +00:00
|
|
|
|
2015-08-21 21:37:55 +00:00
|
|
|
if (compressed.size() > 500000) {
|
|
|
|
fprintf(stderr, "Tile %d/%u/%u size is %lld, >500000. Skipping this tile\n.", z, x, y, (long long) compressed.size());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-08-20 22:15:47 +00:00
|
|
|
mbtiles_write_tile(outdb, z, x, y, compressed.data(), compressed.size());
|
2015-08-20 20:02:34 +00:00
|
|
|
}
|
|
|
|
|
2015-11-02 22:34:01 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-03 18:40:36 +00:00
|
|
|
void decode(char *fname, char *map, std::vector<std::set<type_and_string> > &file_keys, std::vector<std::string> &layernames, int *nlayers, sqlite3 *outdb, struct stats *st, std::vector<std::string> &header, std::map<std::string, std::vector<std::string> > &mapping, std::set<std::string> &exclude, int ifmatched, std::string &attribution) {
|
2015-08-20 20:02:34 +00:00
|
|
|
sqlite3 *db;
|
|
|
|
|
|
|
|
if (sqlite3_open(fname, &db) != SQLITE_OK) {
|
|
|
|
fprintf(stderr, "%s: %s\n", fname, sqlite3_errmsg(db));
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *sql = "SELECT zoom_level, tile_column, tile_row, tile_data from tiles;";
|
|
|
|
sqlite3_stmt *stmt;
|
|
|
|
if (sqlite3_prepare_v2(db, sql, -1, &stmt, NULL) != SQLITE_OK) {
|
|
|
|
fprintf(stderr, "%s: select failed: %s\n", fname, sqlite3_errmsg(db));
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (sqlite3_step(stmt) == SQLITE_ROW) {
|
2015-08-21 21:27:11 +00:00
|
|
|
long long zoom = sqlite3_column_int(stmt, 0);
|
|
|
|
long long x = sqlite3_column_int(stmt, 1);
|
|
|
|
long long y = sqlite3_column_int(stmt, 2);
|
|
|
|
y = (1LL << zoom) - 1 - y;
|
2015-08-20 20:02:34 +00:00
|
|
|
|
|
|
|
int len = sqlite3_column_bytes(stmt, 3);
|
|
|
|
const char *s = (const char *) sqlite3_column_blob(stmt, 3);
|
|
|
|
|
2015-08-20 22:15:47 +00:00
|
|
|
fprintf(stderr, "%lld/%lld/%lld \r", zoom, x, y);
|
2015-08-20 20:02:34 +00:00
|
|
|
|
2015-08-24 21:12:46 +00:00
|
|
|
handle(std::string(s, len), zoom, x, y, file_keys, layernames, nlayers, outdb, header, mapping, exclude, ifmatched);
|
2015-08-20 20:02:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sqlite3_finalize(stmt);
|
|
|
|
|
2015-08-20 23:12:34 +00:00
|
|
|
if (sqlite3_prepare_v2(db, "SELECT value from metadata where name = 'minzoom'", -1, &stmt, NULL) == SQLITE_OK) {
|
|
|
|
if (sqlite3_step(stmt) == SQLITE_ROW) {
|
2015-11-02 22:34:01 +00:00
|
|
|
int minzoom = sqlite3_column_int(stmt, 0);
|
|
|
|
st->minzoom = min(st->minzoom, minzoom);
|
2015-08-20 23:12:34 +00:00
|
|
|
}
|
|
|
|
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) {
|
2015-11-02 22:34:01 +00:00
|
|
|
int maxzoom = sqlite3_column_int(stmt, 0);
|
|
|
|
st->maxzoom = max(st->maxzoom, maxzoom);
|
2015-08-20 23:12:34 +00:00
|
|
|
}
|
|
|
|
sqlite3_finalize(stmt);
|
|
|
|
}
|
|
|
|
if (sqlite3_prepare_v2(db, "SELECT value from metadata where name = 'center'", -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", &st->midlon, &st->midlat);
|
|
|
|
}
|
|
|
|
sqlite3_finalize(stmt);
|
|
|
|
}
|
2016-04-13 19:49:41 +00:00
|
|
|
if (sqlite3_prepare_v2(db, "SELECT value from metadata where name = 'attribution'", -1, &stmt, NULL) == SQLITE_OK) {
|
|
|
|
if (sqlite3_step(stmt) == SQLITE_ROW) {
|
2016-05-03 18:40:36 +00:00
|
|
|
attribution = std::string((char *) sqlite3_column_text(stmt, 0));
|
2016-04-13 19:49:41 +00:00
|
|
|
}
|
|
|
|
sqlite3_finalize(stmt);
|
|
|
|
}
|
2015-08-20 23:12:34 +00:00
|
|
|
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);
|
2015-11-02 22:34:01 +00:00
|
|
|
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);
|
2015-08-20 23:12:34 +00:00
|
|
|
}
|
|
|
|
sqlite3_finalize(stmt);
|
|
|
|
}
|
|
|
|
|
2015-08-20 20:02:34 +00:00
|
|
|
if (sqlite3_close(db) != SQLITE_OK) {
|
|
|
|
fprintf(stderr, "%s: could not close database: %s\n", fname, sqlite3_errmsg(db));
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void usage(char **argv) {
|
2015-10-31 00:59:15 +00:00
|
|
|
fprintf(stderr, "Usage: %s [-f] [-i] [-c joins.csv] [-x exclude ...] -o new.mbtiles source.mbtiles ...\n", argv[0]);
|
2015-08-20 20:02:34 +00:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2015-08-20 23:45:45 +00:00
|
|
|
#define MAXLINE 10000 /* XXX */
|
|
|
|
|
|
|
|
std::vector<std::string> split(char *s) {
|
|
|
|
std::vector<std::string> ret;
|
|
|
|
|
|
|
|
while (*s && *s != '\n') {
|
|
|
|
char *start = s;
|
|
|
|
int within = 0;
|
|
|
|
|
|
|
|
for (; *s && *s != '\n'; s++) {
|
|
|
|
if (*s == '"') {
|
|
|
|
within = !within;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*s == ',' && !within) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string v = std::string(start, s - start);
|
|
|
|
ret.push_back(v);
|
|
|
|
|
|
|
|
if (*s == ',') {
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-08-21 00:32:58 +00:00
|
|
|
std::string dequote(std::string s) {
|
|
|
|
std::string out;
|
2016-03-25 19:20:32 +00:00
|
|
|
for (size_t i = 0; i < s.size(); i++) {
|
2015-08-21 00:32:58 +00:00
|
|
|
if (s[i] == '"') {
|
|
|
|
if (i + 1 < s.size() && s[i + 1] == '"') {
|
|
|
|
out.push_back('"');
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
out.push_back(s[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2015-08-20 23:45:45 +00:00
|
|
|
void readcsv(char *fn, std::vector<std::string> &header, std::map<std::string, std::vector<std::string> > &mapping) {
|
|
|
|
FILE *f = fopen(fn, "r");
|
|
|
|
if (f == NULL) {
|
|
|
|
perror(fn);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
char s[MAXLINE];
|
|
|
|
if (fgets(s, MAXLINE, f)) {
|
|
|
|
header = split(s);
|
2015-08-21 00:32:58 +00:00
|
|
|
|
2016-03-25 19:20:32 +00:00
|
|
|
for (size_t i = 0; i < header.size(); i++) {
|
2015-08-21 00:32:58 +00:00
|
|
|
header[i] = dequote(header[i]);
|
|
|
|
}
|
2015-08-20 23:45:45 +00:00
|
|
|
}
|
|
|
|
while (fgets(s, MAXLINE, f)) {
|
|
|
|
std::vector<std::string> line = split(s);
|
2015-08-21 00:32:58 +00:00
|
|
|
if (line.size() > 0) {
|
|
|
|
line[0] = dequote(line[0]);
|
|
|
|
}
|
2015-08-20 23:45:45 +00:00
|
|
|
|
2016-03-25 19:20:32 +00:00
|
|
|
for (size_t i = 0; i < line.size() && i < header.size(); i++) {
|
2015-08-21 00:32:58 +00:00
|
|
|
// printf("putting %s\n", line[0].c_str());
|
2015-08-20 23:45:45 +00:00
|
|
|
mapping.insert(std::pair<std::string, std::vector<std::string> >(line[0], line));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(f);
|
|
|
|
}
|
|
|
|
|
2015-08-20 20:02:34 +00:00
|
|
|
int main(int argc, char **argv) {
|
|
|
|
char *outfile = NULL;
|
2015-08-20 22:47:44 +00:00
|
|
|
char *csv = NULL;
|
2015-08-20 20:02:34 +00:00
|
|
|
int force = 0;
|
2015-08-24 21:12:46 +00:00
|
|
|
int ifmatched = 0;
|
2015-08-20 20:02:34 +00:00
|
|
|
|
2015-08-20 23:45:45 +00:00
|
|
|
std::vector<std::string> header;
|
|
|
|
std::map<std::string, std::vector<std::string> > mapping;
|
|
|
|
|
2016-04-28 21:43:04 +00:00
|
|
|
std::set<std::string> exclude;
|
2015-08-22 00:32:44 +00:00
|
|
|
|
2015-08-20 20:02:34 +00:00
|
|
|
extern int optind;
|
|
|
|
extern char *optarg;
|
|
|
|
int i;
|
|
|
|
|
2015-08-24 21:12:46 +00:00
|
|
|
while ((i = getopt(argc, argv, "fo:c:x:i")) != -1) {
|
2015-08-20 20:02:34 +00:00
|
|
|
switch (i) {
|
2015-08-21 21:27:11 +00:00
|
|
|
case 'o':
|
|
|
|
outfile = optarg;
|
|
|
|
break;
|
2015-08-20 20:02:34 +00:00
|
|
|
|
2015-08-21 21:27:11 +00:00
|
|
|
case 'f':
|
|
|
|
force = 1;
|
|
|
|
break;
|
2015-08-20 20:02:34 +00:00
|
|
|
|
2015-08-24 21:12:46 +00:00
|
|
|
case 'i':
|
|
|
|
ifmatched = 1;
|
|
|
|
break;
|
|
|
|
|
2015-08-21 21:27:11 +00:00
|
|
|
case 'c':
|
|
|
|
if (csv != NULL) {
|
|
|
|
fprintf(stderr, "Only one -c for now\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2015-08-20 23:45:45 +00:00
|
|
|
|
2015-08-21 21:27:11 +00:00
|
|
|
csv = optarg;
|
|
|
|
readcsv(csv, header, mapping);
|
|
|
|
break;
|
2015-08-20 22:47:44 +00:00
|
|
|
|
2015-08-22 00:32:44 +00:00
|
|
|
case 'x':
|
2016-04-28 21:43:04 +00:00
|
|
|
exclude.insert(std::string(optarg));
|
2015-08-22 00:32:44 +00:00
|
|
|
break;
|
|
|
|
|
2015-08-21 21:27:11 +00:00
|
|
|
default:
|
|
|
|
usage(argv);
|
2015-08-20 20:02:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-31 00:59:15 +00:00
|
|
|
if (argc - optind < 1 || outfile == NULL) {
|
2015-08-20 20:02:34 +00:00
|
|
|
usage(argv);
|
|
|
|
}
|
|
|
|
|
2015-08-20 22:01:34 +00:00
|
|
|
if (force) {
|
|
|
|
unlink(outfile);
|
|
|
|
}
|
|
|
|
|
2016-01-28 22:18:31 +00:00
|
|
|
sqlite3 *outdb = mbtiles_open(outfile, argv, 0);
|
2015-08-20 23:12:34 +00:00
|
|
|
struct stats st;
|
|
|
|
memset(&st, 0, sizeof(st));
|
2015-11-02 22:34:01 +00:00
|
|
|
st.minzoom = st.minlat = st.minlon = INT_MAX;
|
|
|
|
st.maxzoom = st.maxlat = st.maxlon = INT_MIN;
|
2015-08-20 22:01:34 +00:00
|
|
|
|
2016-04-28 21:43:04 +00:00
|
|
|
std::vector<std::set<type_and_string> > file_keys;
|
2016-05-03 17:52:49 +00:00
|
|
|
std::vector<std::string> layernames;
|
2015-08-20 20:42:24 +00:00
|
|
|
int nlayers = 0;
|
2016-05-03 18:40:36 +00:00
|
|
|
std::string attribution;
|
2015-08-20 20:02:34 +00:00
|
|
|
|
2015-08-20 22:47:44 +00:00
|
|
|
for (i = optind; i < argc; i++) {
|
2016-05-03 18:40:36 +00:00
|
|
|
decode(argv[i], csv, file_keys, layernames, &nlayers, outdb, &st, header, mapping, exclude, ifmatched, attribution);
|
2015-08-20 22:47:44 +00:00
|
|
|
}
|
|
|
|
|
2016-08-29 23:38:57 +00:00
|
|
|
std::map<std::string, layermap_entry> layermap;
|
|
|
|
for (i = 0; i < nlayers; i++) {
|
|
|
|
layermap.insert(std::pair<std::string, layermap_entry>(layernames[i], layermap_entry(layermap.size())));
|
|
|
|
layermap.find(layernames[i])->second.file_keys = file_keys[i];
|
|
|
|
}
|
|
|
|
|
2016-08-30 21:17:28 +00:00
|
|
|
mbtiles_write_metadata(outdb, outfile, st.minzoom, st.maxzoom, st.minlat, st.minlon, st.maxlat, st.maxlon, st.midlat, st.midlon, 0, attribution.size() != 0 ? attribution.c_str() : NULL, layermap);
|
2015-08-20 22:01:34 +00:00
|
|
|
mbtiles_close(outdb, argv);
|
|
|
|
|
2015-08-20 20:02:34 +00:00
|
|
|
return 0;
|
|
|
|
}
|