-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
31 lines (28 loc) · 747 Bytes
/
index.js
File metadata and controls
31 lines (28 loc) · 747 Bytes
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
const fs = require('fs');
const { parse } = require('csv-parse');
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 found!`);
console.log('done');
});