-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
32 lines (29 loc) · 834 Bytes
/
index.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
//Required modules
const { parse } = require('csv-parse');
const fs = require('fs');
//Results array
const habitablePlanets = [];
function isHabitablePlanet(planet) {
return planet['koi_disposition'] === 'CONFIRMED'
&& planet['koi_insol'] > 0.36 && planet['koi_insol'] < 1.11
&& planet['koi_prad'] < 1.6;
}
fs.createReadStream('kepler_data.csv')
.pipe(parse({
comment: '#',
columns: true,
}))
.on('data', (data) => {
if (isHabitablePlanet(data)) {
habitablePlanets.push(data);
}
})
.on('error', (err) => {
console.log(err);
})
.on('end', () => {
console.log(habitablePlanets.map((planet) => {
return planet['kepler_name'];
}));
console.log(`${habitablePlanets.length} habitable planets have been found!`);
});