2019-08-25 19:57:08 +00:00
// Mapbox token:
// pk.eyJ1IjoiamF5d2xsIiwiYSI6ImYyZjkyMGNlOTgyNGQ5ZWM5ZDExN2FjNGYwMDZmNTQ4In0.y3lv5ddmGhVNSL7wfMpB0g
2019-08-23 21:26:32 +00:00
const request = require ( 'request' )
2019-08-23 20:43:40 +00:00
2019-08-23 21:45:29 +00:00
const url = 'https://api.darksky.net/forecast/0466bccb953c0b9daeb091a529da2c0d/37.8267,-122.4233?units=si'
2019-08-23 20:43:40 +00:00
2019-08-25 20:15:04 +00:00
// request({ url: url, json: true }, (error, response) => {
// if (error) {
// console.log('Unable to connect to weather service!')
// } else if (response.body.error) {
// console.log('Unable to find location')
// } else {
// console.log(response.body.daily.data[0].summary + ' It is currently ' + response.body.currently.temperature + ' degrees out. There is a ' + response.body.currently.precipProbability + '% chance of rain.')
// }
// })
2019-08-25 19:57:08 +00:00
2019-08-25 20:15:04 +00:00
const geocodeURL = 'https://api.mapbox.com/geocoding/v5/mapbox.places/philadelphia.json?access_token=pk.eyJ1IjoiamF5d2xsIiwiYSI6ImYyZjkyMGNlOTgyNGQ5ZWM5ZDExN2FjNGYwMDZmNTQ4In0.y3lv5ddmGhVNSL7wfMpB0g&limit=1'
2019-08-25 19:57:08 +00:00
request ( { url : geocodeURL , json : true } , ( error , response ) => {
2019-08-25 20:15:04 +00:00
if ( error ) {
console . log ( 'Unable to connect to location services!' )
} else if ( response . body . features . length === 0 ) {
console . log ( 'Unable to find location. Try another search.' )
} else {
const latitude = response . body . features [ 0 ] . center [ 1 ]
const longitude = response . body . features [ 0 ] . center [ 0 ]
console . log ( latitude , longitude )
}
2019-08-25 19:57:08 +00:00
} )