-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
42 lines (32 loc) · 1001 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//const axios = require('axios');
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;
let getInfo = async(direccion) => {
try {
let coors = await lugar.getLugarLatLng(direccion);
let tmp = await clima.getClima(coors.lat, coors.lng);
return `El clima en ${coors.direccion} es de ${tmp.temperatura}`;
} catch (e) {
return `No se pudo determinar el clime en ${direccion}`;
}
}
getInfo(argv.direccion)
.then(mensaje => console.log(mensaje))
.catch(e => console.log(e));
/* lugar.getLugarLatLng(argv.direccion)
.then(resp => {
console.log(resp);
})
.catch(e => console.log(e));
clima.getClima(32.6245389, -115.4522623)
.then(resp => {
console.log(resp.temperatura);
})
.catch(e => console.log(e)); */