mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-02-02 01:08:14 +00:00
Merge pull request #299 from mapbox/tile-join-whitespace
Trim whitespace after commas in tile-join .csv input
This commit is contained in:
commit
dc86eb6b5a
@ -1,3 +1,7 @@
|
|||||||
|
## 1.14.1
|
||||||
|
|
||||||
|
* Whitespace after commas in tile-join .csv input is no longer significant
|
||||||
|
|
||||||
## 1.14.0
|
## 1.14.0
|
||||||
|
|
||||||
* Tile-join is multithreaded and can merge multiple vector mbtiles files together
|
* Tile-join is multithreaded and can merge multiple vector mbtiles files together
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
GEOID10,population
|
GEOID10, population
|
||||||
"060014201001000",16
|
"060014201001000",16
|
||||||
"060014201001001",21
|
"060014201001001", 21
|
||||||
"060014201001002",31
|
"060014201001002", 31
|
||||||
"060014201001004",9
|
"060014201001004",9
|
||||||
"060014201001007",87
|
"060014201001007",87
|
||||||
"060014201001008",37
|
"060014201001008",37
|
||||||
|
|
@ -566,6 +566,10 @@ std::vector<std::string> split(char *s) {
|
|||||||
|
|
||||||
if (*s == ',') {
|
if (*s == ',') {
|
||||||
s++;
|
s++;
|
||||||
|
|
||||||
|
while (*s && isspace(*s)) {
|
||||||
|
s++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
#define VERSION "tippecanoe v1.14.0\n"
|
#define VERSION "tippecanoe v1.14.1\n"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user