-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
26 lines (22 loc) · 827 Bytes
/
app.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
const lugar = require('./lugar/lugar');
const clima = require('./clima/clima');
const argv = require('yargs').options({
direccion: {
alias: 'd',
desc: 'Dirección de la ciudad para obtener el clima',
demand: true
}
}).argv;
//argv.direccion
//clima.getClima(40.750000, -74.000000).then(console.log).catch(err => console.log('Error', err));
//lugar.getLugarLatLng(argv.direccion).then(console.log);
const getInfo = async(direccion) => {
try {
const sitio = await lugar.getLugarLatLng(direccion);
const temp = await clima.getClima(sitio.lat, sitio.lng);
return `El clima de ${direccion} es de ${temp} grados`;
} catch (err) {
return `No se pudo determinar el clima de ${direccion}`;
}
};
getInfo(argv.direccion).then(console.log).catch(console.log);