mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-03-23 04:15:15 +00:00
Trim whitespace after commas in tile-join .csv input
This commit is contained in:
parent
4912f4ad08
commit
32f32e45b6
@ -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
|
||||
|
@ -1,7 +1,7 @@
|
||||
GEOID10,population
|
||||
GEOID10, population
|
||||
"060014201001000",16
|
||||
"060014201001001",21
|
||||
"060014201001002",31
|
||||
"060014201001001", 21
|
||||
"060014201001002", 31
|
||||
"060014201001004",9
|
||||
"060014201001007",87
|
||||
"060014201001008",37
|
||||
|
|
@ -566,6 +566,10 @@ std::vector<std::string> split(char *s) {
|
||||
|
||||
if (*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