-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
Starting in line 112, there is an additional column in the file 新北市門牌位置數值資料-20240709-street-special.csv
.
The line does not match the fields from the CSV header. This makes CSV parsing impossible.
168887,新北市政府,TW,新北市,金山區,美田里,021,中山路,A區,395號,11,6,新北市金山區美田里021鄰中山路395號A區十一樓之6,313797.382454,2790844.1992000 |
When parsing by commas, we get the following data for row 111 (correct amount of commas) and 112 (one comma too many):
Map(14) {
"addr:TW:dataset": "168887",
"source": "新北市政府",
"addr:couontry": "TW",
"addr:city": "新北市",
"addr:district": "新莊區",
"addr:hamlet": "光華里",
"addr:neighbourhood": "027",
"addr:street": "民安西路",
"addr:housenumber": "384號",
"addr:floor": "11",
"addr:unit": "1A",
"addr:full": "新北市新莊區光華里027鄰民安西路384號十一樓之1A室",
"x_3826": "293211.945100",
"y_3826": "2766972.0470000",
}
Map(14) {
"addr:TW:dataset": "168887",
"source": "新北市政府",
"addr:couontry": "TW",
"addr:city": "新北市",
"addr:district": "金山區",
"addr:hamlet": "美田里",
"addr:neighbourhood": "021",
"addr:street": "中山路",
"addr:housenumber": "A區",
"addr:floor": "395號",
"addr:unit": "11",
"addr:full": "6",
"x_3826": "新北市金山區美田里021鄰中山路395號A區十一樓之6",
"y_3826": "313797.382454",
}
Metadata
Metadata
Assignees
Labels
No labels