Update to original weather app to use weatherstack instead of darksky
This commit is contained in:
parent
8555f4735b
commit
c73e4f803c
@ -1,7 +1,7 @@
|
|||||||
const request = require('request')
|
const request = require('request')
|
||||||
|
|
||||||
const forecast = (latitude, longitude, callback) => {
|
const forecast = (latitude, longitude, callback) => {
|
||||||
const url = 'https://api.darksky.net/forecast/0466bccb953c0b9daeb091a529da2c0d/' + latitude + ',' + longitude + '?units=si'
|
const url = 'http://api.weatherstack.com/current?access_key=360ee65db0f798aa09021f493b5b02c9&query=' + latitude + ',' + longitude + '&units=m'
|
||||||
|
|
||||||
request({ url, json: true }, (error, {body}) => {
|
request({ url, json: true }, (error, {body}) => {
|
||||||
if (error) {
|
if (error) {
|
||||||
@ -9,7 +9,7 @@ const forecast = (latitude, longitude, callback) => {
|
|||||||
} else if (body.error) {
|
} else if (body.error) {
|
||||||
callback('Unable to find location', undefined)
|
callback('Unable to find location', undefined)
|
||||||
} else {
|
} else {
|
||||||
callback(undefined, body.daily.data[0].summary + ' It is currently ' + body.currently.temperature + ' degrees out. There is a ' + body.currently.precipProbability + '% chance of rain.')
|
callback(undefined, body.current.weather_descriptions[0] + '. It is currently ' + body.current.temperature + ' degress out. It feels like ' + body.current.feelslike + ' degress.')
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,7 @@ const geocode = (address, callback) => {
|
|||||||
const url = 'https://api.mapbox.com/geocoding/v5/mapbox.places/' + encodeURIComponent(address) + '.json?access_token=pk.eyJ1IjoiamFzb24zMmRldiIsImEiOiJjazFsNHd5djcwMXptM2htbW8zM3MyZGxuIn0.-TtNNGFysQPQRfGR1P8DUA&limit=1'
|
const url = 'https://api.mapbox.com/geocoding/v5/mapbox.places/' + encodeURIComponent(address) + '.json?access_token=pk.eyJ1IjoiamFzb24zMmRldiIsImEiOiJjazFsNHd5djcwMXptM2htbW8zM3MyZGxuIn0.-TtNNGFysQPQRfGR1P8DUA&limit=1'
|
||||||
|
|
||||||
request({ url, json: true }, (error, {body}) => {
|
request({ url, json: true }, (error, {body}) => {
|
||||||
|
console.log(body)
|
||||||
if (error) {
|
if (error) {
|
||||||
callback('Unable to connect to location services!', undefined)
|
callback('Unable to connect to location services!', undefined)
|
||||||
} else if (body.features.length === 0) {
|
} else if (body.features.length === 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user