-
Notifications
You must be signed in to change notification settings - Fork 0
/
usuarios-merge-to-master.js
439 lines (383 loc) · 11.7 KB
/
usuarios-merge-to-master.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
/**
* This script will read the usuarios_ecobici_{year}.csv files and will get the stations per year.
* Its designed to avoid duplicates, so if a station is already in the array, it will not be added again.
*/
const fs = require('fs');
const path = require('path');
const readline = require('readline');
const PapaParse = require('papaparse');
const dayjs = require('dayjs');
const years = [2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024];
const csvJson = []
// Keys to be used in the final JSON
// id, genre, age (int), age_out_of_tos (bool), age_out_of_bounds (bool), created_at, has_dni
function convertDateTime2015To2018(input) {
// Split the input into date and time components
let [datePart, timePart, meridian] = input.split(' ');
// Split the date component
let [day, month, year] = datePart.split('-');
// Split the time component
let [hours, minutes, seconds] = timePart.split(':');
// Convert the hour to 24-hour format based on AM/PM
if (meridian === 'PM' && hours !== '12') {
hours = (parseInt(hours) + 12).toString();
} else if (meridian === 'AM' && hours === '12') {
hours = '00';
}
// Format year to 4 digits if it is 2 digits
if (year.length === 2) {
year = '20' + year;
}
// Construct the new datetime string
const newDateTime = `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
return newDateTime;
}
function getGenreByLetter2015to2018(letter) {
switch(letter) {
case 'F':
return 'female'
case 'M':
return 'male'
case 'O':
return 'other'
case 'NA':
return null
default:
return null
}
}
function getGenre2019to2024(genre) {
// Values found are MALE, FEMALE, OTHER and blanks (null)
// For blanks, return null
switch(genre) {
case 'FEMALE':
return 'female'
case 'MALE':
return 'male'
case 'OTHER':
return 'other'
case null:
return null
default:
return null
}
}
function getAge(age){
// check if the age can be converted to a number
if (isNaN(age)) {
return null;
}
return age;
}
function getAgeOutOfBounds(age) {
if(isNaN(age)) {
return 1 //false;
}
// check if the age is out of bounds
if (age < 0 || age > 100) {
return 1 //false;
}
return 0 //false;
}
function getAgeOutOfToS(age) {
if(isNaN(age)) {
return 1 //false;
}
// check if the age is suspicious
if (age < 16 || age > 100) {
return 1 //false;
}
return 0 //false;
}
function getCustomerHasDni(hasDni) {
// Possible values are Yes, No and null
switch(hasDni) {
case 'Yes':
return 1 //false
case 'No':
return 0 //false
case null:
return null
default:
return null
}
}
function processRow2015(row) {
// columns available
// -----------------
// id_usuario
// genero_usuario
// edad_usuario
// fecha_alta
// hora_alta
csvJson.push({
user_id: Number(row.id_usuario),
year: 2015,
genre: getGenreByLetter2015to2018(row.genero_usuario),
age: getAge(row.edad_usuario),
age_out_of_tos: getAgeOutOfToS(row.edad_usuario),
age_out_of_bounds: getAgeOutOfBounds(row.edad_usuario),
created_at: convertDateTime2015To2018(`${row.fecha_alta} ${row.hora_alta}`),
has_dni: null
})
}
function processRow2016(row) {
// columns available
// -----------------
// id_usuario
// genero_usuario
// edad_usuario
// fecha_alta
// hora_alta
csvJson.push({
user_id: Number(row.id_usuario),
year: 2016,
genre: getGenreByLetter2015to2018(row.genero_usuario),
age: getAge(row.edad_usuario),
age_out_of_tos: getAgeOutOfToS(row.edad_usuario),
age_out_of_bounds: getAgeOutOfBounds(row.edad_usuario),
has_dni: null,
created_at: convertDateTime2015To2018(`${row.fecha_alta} ${row.hora_alta}`)
})
}
function processRow2017(row) {
// columns available
// -----------------
// id_usuario
// genero_usuario
// edad_usuario
// fecha_alta
// hora_alta
csvJson.push({
user_id: Number(row.id_usuario),
year: 2017,
genre: getGenreByLetter2015to2018(row.genero_usuario),
age: getAge(row.edad_usuario),
age_out_of_tos: getAgeOutOfToS(row.edad_usuario),
age_out_of_bounds: getAgeOutOfBounds(row.edad_usuario),
has_dni: null,
created_at: convertDateTime2015To2018(`${row.fecha_alta} ${row.hora_alta}`),
})
}
function processRow2018(row) {
// columns available
// -----------------
// id_usuario
// genero_usuario
// edad_usuario
// fecha_alta
// hora_alta
csvJson.push({
user_id: Number(row.id_usuario),
year: 2018,
genre: getGenreByLetter2015to2018(row.genero_usuario),
age: getAge(row.edad_usuario),
age_out_of_tos: getAgeOutOfToS(row.edad_usuario),
age_out_of_bounds: getAgeOutOfBounds(row.edad_usuario),
has_dni: null,
created_at: convertDateTime2015To2018(`${row.fecha_alta} ${row.hora_alta}`)
})
}
function processRow2019(row) {
// columns available
// -----------------
// ID_usuario
// genero_usuario
// edad_usuario
// fecha_alta
// hora_alta
csvJson.push({
user_id: Number(row.ID_usuario),
year: 2019,
genre: getGenre2019to2024(row.genero_usuario),
age: getAge(row.edad_usuario),
age_out_of_tos: getAgeOutOfToS(row.edad_usuario),
age_out_of_bounds: getAgeOutOfBounds(row.edad_usuario),
has_dni: null,
created_at: dayjs(`${row.fecha_alta} ${row.hora_alta}`).format(),
})
}
function processRow2020(row) {
// columns available
// -----------------
// ID_usuario
// genero_usuario
// edad_usuario
// fecha_alta
// hora_alta
// Customer.Has.Dni..Yes...No.
csvJson.push({
user_id: Number(row.ID_usuario),
year: 2020,
genre: getGenre2019to2024(row.genero_usuario),
age: getAge(row.edad_usuario),
age_out_of_tos: getAgeOutOfToS(row.edad_usuario),
age_out_of_bounds: getAgeOutOfBounds(row.edad_usuario),
has_dni: getCustomerHasDni(row['Customer.Has.Dni..Yes...No.']),
created_at: dayjs(`${row.fecha_alta} ${row.hora_alta}`).format(),
})
}
function processRow2021(row) {
// columns available
// -----------------
// ID_usuario
// genero_usuario
// edad_usuario
// fecha_alta
// hora_alta
// Customer.Has.Dni..Yes...No.
csvJson.push({
user_id: Number(row.ID_usuario),
year: 2021,
genre: getGenre2019to2024(row.genero_usuario),
age: getAge(row.edad_usuario),
age_out_of_tos: getAgeOutOfToS(row.edad_usuario),
age_out_of_bounds: getAgeOutOfBounds(row.edad_usuario),
has_dni: getCustomerHasDni(row['Customer.Has.Dni..Yes...No.']),
created_at: dayjs(`${row.fecha_alta} ${row.hora_alta}`).format(),
})
}
function processRow2022(row) {
// columns available
// -----------------
// ID_usuario
// genero_usuario
// edad_usuario
// fecha_alta
// hora_alta
// Customer.Has.Dni..Yes...No.
csvJson.push({
user_user_id: Number(row.ID_usuario),
year: 2022,
genre: getGenre2019to2024(row.genero_usuario),
age: getAge(row.edad_usuario),
age_out_of_tos: getAgeOutOfToS(row.edad_usuario),
age_out_of_bounds: getAgeOutOfBounds(row.edad_usuario),
has_dni: getCustomerHasDni(row['Customer.Has.Dni..Yes...No.']),
created_at: dayjs(`${row.fecha_alta} ${row.hora_alta}`).format(),
})
}
function processRow2023(row) {
// columns available
// -----------------
// ID_usuario
// genero_usuario
// edad_usuario
// fecha_alta
// hora_alta
// Customer.Has.Dni..Yes...No.
csvJson.push({
user_id: Number(row.ID_usuario),
year: 2023,
genre: getGenre2019to2024(row.genero_usuario),
age: getAge(row.edad_usuario),
age_out_of_tos: getAgeOutOfToS(row.edad_usuario),
age_out_of_bounds: getAgeOutOfBounds(row.edad_usuario),
has_dni: getCustomerHasDni(row['Customer.Has.Dni..Yes...No.']),
created_at: dayjs(`${row.fecha_alta} ${row.hora_alta}`).format(),
})
}
function processRow2024(row) {
// columns available
// -----------------
// ID_usuario
// genero_usuario
// edad_usuario
// fecha_alta
// hora_alta
// Customer.Has.Dni..Yes...No.
csvJson.push({
user_id: Number(row.ID_usuario),
year: 2024,
genre: getGenre2019to2024(row.genero_usuario),
age: getAge(row.edad_usuario),
age_out_of_tos: getAgeOutOfToS(row.edad_usuario),
age_out_of_bounds: getAgeOutOfBounds(row.edad_usuario),
created_at: dayjs(`${row.fecha_alta} ${row.hora_alta}`).format(),
has_dni: getCustomerHasDni(row['Customer.Has.Dni..Yes...No.'])
})
}
async function processFiles() {
// const yearsReversed = years.reverse();
// for (let i = 0; i < yearsReversed.length; i++) {
// const year = yearsReversed[i];
for (let i = 0; i < years.length; i++) {
const year = years[i];
const filePath = path.resolve(__dirname, `data/usuarios_ecobici_${year}.csv`);
try {
// get time to process the file
const startWatch = process.hrtime();
console.log(`Processing usuarios_ecobici_${year}.csv`)
// for this type of files, we will use PapaParse to read the file, to have a more relaiable way to get the json value per column
await new Promise((resolve, reject) => {
const config = {
header: true,
dynamicTyping: true,
worker: true,
step: function(results, parser) {
switch(year) {
case 2015:
processRow2015(results.data);
break;
case 2016:
processRow2016(results.data);
break;
case 2017:
processRow2017(results.data);
break;
case 2018:
processRow2018(results.data);
break;
case 2019:
processRow2019(results.data);
break;
case 2020:
processRow2020(results.data);
break;
case 2021:
processRow2021(results.data);
break;
case 2022:
processRow2022(results.data);
break;
case 2023:
processRow2023(results.data);
break;
case 2024:
processRow2024(results.data);
break;
}
},
complete: () => {
const endWatch = process.hrtime(startWatch);
console.log(`-- Completed usuarios_ecobici_${year}.csv (took ${endWatch[0]}s)`);
resolve(); // Resolve the promise here
},
error: (error) => {
console.warn(`Error parsing usuarios_ecobici_${year}.csv: ${error.message}`);
console.error(error)
reject(error); // Reject the promise here
}
};
const read = fs.createReadStream(filePath);
PapaParse.parse(read, config);
});
} catch (err) {
console.warn(`Error reading usuarios_ecobici_${year}.csv: ${err.message}`);
console.error(err)
}
}
}
async function main() {
await processFiles();
console.log('Done!');
console.log('Users count: ', csvJson.length);
// console.log('Done! Writing usuarios-ecobici-final.json');
// await fs.promises.writeFile('usuarios-ecobici-final.json', JSON.stringify(csvJson, null, 2));
// save the file in a csv
const csv = PapaParse.unparse(csvJson, {
});
await fs.promises.writeFile('data/users_master.csv', csv);
return 0;
}
main().catch(err => console.error(err));