-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
33 lines (30 loc) · 1.1 KB
/
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
33
const {parse} = require('csv-parse');
const fs = require('fs');
const habitablePlanets = [];
// conditions for a planet to be considered as a habitable planet
function isHabitablePlanet(planet) {
return planet['koi_disposition'] === 'CONFIRMED'
&& planet['koi_insol'] > 0.36 && planet['koi_insol'] < 1.11
&& planet['koi_prad'] < 1.6;
}
// read the csv file as a stream as we need to process the data line by line rather than processing the whole data together
fs.createReadStream('kepler_data.csv')
.pipe(parse({
comment: '#',
columns: true, // returns each row as an object
}))
.on('data', (data) => {
if(isHabitablePlanet(data)) {
habitablePlanets.push(data);
}
})
.on('error', (err) => {
console.log(err);
})
.on('end', () => {
console.log(`Analysis completed. ${habitablePlanets.length} habitable planets were found.`);
console.log(habitablePlanets.map((planet) => {
return planet['kepler_name'];
}));
console.log('Cross check and verify this result here: https://phl.upr.edu/projects/habitable-exoplanets-catalog')
});