-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
28 lines (25 loc) · 766 Bytes
/
index.js
File metadata and controls
28 lines (25 loc) · 766 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
import {parse} from 'csv-parse';
import fs from 'fs';
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', (error) => {
console.log(error);
})
.on('end', () => {
console.log(habitablePlanets.map((planet) => planet['kepoi_name']));
console.log(`${habitablePlanets.length} habitable planets found!`);
});