Merge pull request #299 from mapbox/tile-join-whitespace

Trim whitespace after commas in tile-join .csv input
This commit is contained in:
Eric Fischer 2016-09-21 13:30:28 -07:00 committed by GitHub
commit dc86eb6b5a
4 changed files with 12 additions and 4 deletions

View File

@ -1,3 +1,7 @@
## 1.14.1
* Whitespace after commas in tile-join .csv input is no longer significant
## 1.14.0
* Tile-join is multithreaded and can merge multiple vector mbtiles files together

View File

@ -1,7 +1,7 @@
GEOID10,population
GEOID10, population
"060014201001000",16
"060014201001001",21
"060014201001002",31
"060014201001001", 21
"060014201001002", 31
"060014201001004",9
"060014201001007",87
"060014201001008",37

1 GEOID10 population
2 060014201001000 16
3 060014201001001 21
4 060014201001002 31
5 060014201001004 9
6 060014201001007 87
7 060014201001008 37

View File

@ -566,6 +566,10 @@ std::vector<std::string> split(char *s) {
if (*s == ',') {
s++;
while (*s && isspace(*s)) {
s++;
}
}
}

View File

@ -1 +1 @@
#define VERSION "tippecanoe v1.14.0\n"
#define VERSION "tippecanoe v1.14.1\n"