-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.js
executable file
·142 lines (118 loc) · 3.7 KB
/
build.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#!/usr/bin/env node --max-old-space-size=8192
const path = require('path')
const {createReadStream} = require('fs')
const {Transform} = require('stream')
const bluebird = require('bluebird')
const {createGunzip} = require('gunzip-stream')
const getStream = require('get-stream').array
const csvParse = require('csv-parser')
const {chain, omit} = require('lodash')
const {getCodeCommune} = require('./lib/codes-postaux')
const {getCodeDepartement, getCommune} = require('./lib/cog')
const {repairNomVoie, repairTypeVoie} = require('./lib/repair-string')
const {writeCompressedGeoJSON} = require('./lib/util')
const distPath = path.join(__dirname, 'dist')
function getValue(str) {
if (str && str !== '""') {
return str.trim()
}
}
function getNumero(str) {
const numero = getValue(str)
if (!numero || !/^\d+$/.test(numero)) {
return
}
return Number.parseInt(numero, 10)
}
function getCoordinate(str) {
if (!str) {
return
}
return Number.parseFloat(Number.parseFloat(str).toFixed(6))
}
async function build(sourcePath) {
let rows = 0
let noNumero = 0
let noNomVoie = 0
let noCodeCommune = 0
let noGeo = 0
let accepted = 0
const items = await getStream(
createReadStream(sourcePath)
.pipe(createGunzip())
.pipe(csvParse({separator: ','}))
.pipe(new Transform({
transform(row, enc, cb) {
rows++
if (rows % 50_000 === 0) {
console.log(`${rows} lignes lues`)
}
const codeCommune = getCodeCommune(row.code_poste, row.nom_com)
const numero = getNumero(row.num_voie)
const nomVoie = [
repairTypeVoie(getValue(row.type_voie)),
repairNomVoie(getValue(row.nom_voie))
].filter(Boolean).join(' ')
const lon = getCoordinate(row.x)
const lat = getCoordinate(row.y)
if (!lon || !lat) {
noGeo++
return cb()
}
if (!codeCommune) {
noCodeCommune++
return cb()
}
if (!nomVoie) {
noNomVoie++
return cb()
}
if (!Number.isInteger(numero)) {
noNumero++
return cb()
}
accepted++
const commune = getCommune(codeCommune)
cb(null, {
id: getValue(row.imb_id),
codeCommune,
nomCommune: commune ? commune.nom : undefined,
codePostal: codeCommune === row.code_poste ? undefined : row.code_poste,
numero,
suffixe: getValue(row.cp_no_voie) || undefined,
nomVoie,
lon,
lat
})
},
objectMode: true
}))
)
const groupedAdresses = chain(items)
.groupBy(a => getCodeDepartement(a.codeCommune))
.map((adresses, codeDepartement) => ({codeDepartement, adresses}))
await bluebird.mapSeries(groupedAdresses, async ({codeDepartement, adresses}) => {
await writeCompressedGeoJSON(
path.join(distPath, `adresses-ftth-${codeDepartement}.geojson.gz`),
adresses.map(a => ({
type: 'Feature',
geometry: {type: 'Point', coordinates: [a.lon, a.lat]},
properties: omit(a, 'lat', 'lon')
}))
)
console.log(`saved ${codeDepartement}`)
})
console.log(`${noCodeCommune} lignes sans code commune identifié`)
console.log(`${noNomVoie} lignes sans nom de voie identifiée`)
console.log(`${noNumero} lignes sans numéro identifié`)
console.log(`${noGeo} lignes sans coordonnées géographiques`)
console.log(`${rows} lignes lues`)
console.log(`${accepted} lignes acceptées`)
}
async function main() {
await build(process.argv[2])
}
main().catch(error => {
console.error(error)
process.exit(1)
})