Compare commits
3 Commits
fix-precip
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
884c24fbd4
|
|||
|
e267e7e41b
|
|||
|
b79c359475
|
100
dark-sky.js
100
dark-sky.js
@@ -1,7 +1,7 @@
|
|||||||
const log = console.log
|
const log = console.log
|
||||||
const fs = require('fs')
|
const fs = require('fs')
|
||||||
const {table, getBorderCharacters} = require('table')
|
const {table, getBorderCharacters} = require('table')
|
||||||
const argv = require('yargs').argv
|
// const argv = require('yargs').argv
|
||||||
|
|
||||||
const TABLE_CONFIG = {
|
const TABLE_CONFIG = {
|
||||||
// columns: {
|
// columns: {
|
||||||
@@ -11,75 +11,121 @@ const TABLE_CONFIG = {
|
|||||||
// },
|
// },
|
||||||
border: getBorderCharacters(`ramac`)
|
border: getBorderCharacters(`ramac`)
|
||||||
}
|
}
|
||||||
const CREDIT_MSG = "Powered by Dark Sky: https://darksky.net/poweredby/"
|
const HIDE_PRECIP_LESS_THAN = 10
|
||||||
|
// const CREDIT_MSG = "Powered by Dark Sky: https://darksky.net/poweredby/"
|
||||||
|
// const CREDIT_MSG = "https://darksky.net/poweredby • https://smol.gq/wthr-src\n"
|
||||||
|
const CREDIT_MSG = "darksky.net/poweredby • smol.gq/wthr-src\n\n"
|
||||||
|
|
||||||
// https://medium.com/@osiolabs/read-write-json-files-with-node-js-92d03cc82824
|
// https://medium.com/@osiolabs/read-write-json-files-with-node-js-92d03cc82824
|
||||||
const jsonReader = (filePath, cb) => {
|
const jsonReader = (filePath, cb) => {
|
||||||
fs.readFile(filePath, (err, fileData) => {
|
fs.readFile(filePath, (err, fileData) => {
|
||||||
if (err) {
|
if (err) {
|
||||||
|
log(err)
|
||||||
return cb && cb(err)
|
return cb && cb(err)
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
const object = JSON.parse(fileData)
|
const object = JSON.parse(fileData)
|
||||||
|
// log(filePath, object['latitude'])
|
||||||
return cb && cb(null, object)
|
return cb && cb(null, object)
|
||||||
} catch(err) {
|
} catch(err) {
|
||||||
|
log(err)
|
||||||
return cb && cb(err)
|
return cb && cb(err)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
const logWeatherJson = (jsonFile, loc) => {
|
const round5 = x => { return Math.ceil(x / 5) * 5 }
|
||||||
|
|
||||||
|
const updateTempHigh = (temp, index, tempHigh) => {
|
||||||
|
// +1 to offset header
|
||||||
|
return (temp > tempHigh[0]) ? [temp, index + 1] : tempHigh
|
||||||
|
}
|
||||||
|
|
||||||
|
const updateTempLow = (temp, index, tempLow) => {
|
||||||
|
return (temp < tempLow[0]) ? [temp, index + 1] : tempLow
|
||||||
|
}
|
||||||
|
|
||||||
|
const getWeatherTable = (jsonFile, loc, orientation) => {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
jsonReader(jsonFile, (err, weatherInfo) => {
|
jsonReader(jsonFile, (err, weatherInfo) => {
|
||||||
if (err) {
|
if (err) {
|
||||||
reject(err)
|
reject(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
log(loc)
|
let output = loc + '\n'
|
||||||
|
// value, index
|
||||||
|
let tempHigh = [-100, -1]
|
||||||
|
let tempLow = [100, -1]
|
||||||
|
|
||||||
if (argv.v) {
|
weatherInfo['hourly']['data'][0] = weatherInfo['currently']
|
||||||
const infoList = [['H', '°C', '%P']]
|
if (orientation == 'v') {
|
||||||
|
const infoList = [['H', '°C', 'R','%P']]
|
||||||
for (let i = 0; i < 12; i++) {
|
for (let i = 0; i < 12; i++) {
|
||||||
const hourInfo = weatherInfo['hourly']['data'][i]
|
const hourInfo = weatherInfo['hourly']['data'][i]
|
||||||
const date = new Date(hourInfo['time'] * 1000)
|
const date = new Date(hourInfo['time'] * 1000)
|
||||||
infoList.push([date.getHours(),
|
const temp = Math.floor(hourInfo['apparentTemperature'])
|
||||||
Math.floor(hourInfo['apparentTemperature']),
|
tempHigh = updateTempHigh(temp, i, tempHigh)
|
||||||
Math.floor(hourInfo['precipProbability'])])
|
tempLow = updateTempLow(temp, i, tempHigh)
|
||||||
|
const precipProbability = round5(hourInfo['precipProbability'] * 100)
|
||||||
|
const precipText = ((precipProbability < HIDE_PRECIP_LESS_THAN)
|
||||||
|
? '' : precipProbability)
|
||||||
|
infoList.push([
|
||||||
|
date.getHours(),
|
||||||
|
temp,
|
||||||
|
((hourInfo['summary'].includes('Rain')) ? 'Y' : ''),
|
||||||
|
precipText,
|
||||||
|
])
|
||||||
}
|
}
|
||||||
log(table(infoList, TABLE_CONFIG));
|
infoList[tempHigh[1]][1] = `${infoList[tempHigh[1]][1]}+`
|
||||||
|
infoList[tempLow[1]][1] = `${infoList[tempLow[1]][1]}-`
|
||||||
|
output += table(infoList, TABLE_CONFIG)
|
||||||
} else {
|
} else {
|
||||||
// horizontal
|
// horizontal
|
||||||
const hoursList = ['H']
|
const hoursList = ['H']
|
||||||
const tempsList = ['°C']
|
const tempsList = ['°C']
|
||||||
|
const rainList = ['R']
|
||||||
const precipList = ['%P']
|
const precipList = ['%P']
|
||||||
for (let i = 0; i < 16; i += 2) {
|
for (let i = 0; i < 16; i += 2) {
|
||||||
const hourInfo = weatherInfo['hourly']['data'][i]
|
const hourInfo = weatherInfo['hourly']['data'][i]
|
||||||
const date = new Date(hourInfo['time'] * 1000)
|
const date = new Date(hourInfo['time'] * 1000)
|
||||||
|
const temp = Math.floor(hourInfo['apparentTemperature'])
|
||||||
|
tempHigh = updateTempHigh(temp, i/2, tempHigh)
|
||||||
|
tempLow = updateTempLow(temp, i/2, tempHigh)
|
||||||
hoursList.push(date.getHours())
|
hoursList.push(date.getHours())
|
||||||
tempsList.push(Math.floor(hourInfo['apparentTemperature']))
|
tempsList.push(temp)
|
||||||
const precipProbability = Math.floor(hourInfo['precipProbability'])
|
rainList.push((hourInfo['summary'].includes('Rain')) ? 'Y' : '')
|
||||||
precipList.push((precipProbability < 20) ? '' : precipProbability)
|
const precipProbability = round5(hourInfo['precipProbability'] * 100)
|
||||||
|
precipList.push((precipProbability < HIDE_PRECIP_LESS_THAN)
|
||||||
|
? '' : precipProbability)
|
||||||
}
|
}
|
||||||
const maxTempIndex = tempsList.indexOf(Math.max(...tempsList.slice(1)))
|
tempsList[tempHigh[1]] = `${tempsList[tempHigh[1]]}+`
|
||||||
const minTempIndex = tempsList.indexOf(Math.min(...tempsList.slice(1)))
|
tempsList[tempLow[1]] = `${tempsList[tempLow[1]]}-`
|
||||||
tempsList[maxTempIndex] = `${tempsList[maxTempIndex]}+`
|
output += table([hoursList, tempsList, rainList, precipList],
|
||||||
tempsList[minTempIndex] = `${tempsList[minTempIndex]}-`
|
TABLE_CONFIG)
|
||||||
log(table([hoursList, tempsList, precipList], TABLE_CONFIG));
|
|
||||||
}
|
}
|
||||||
resolve()
|
resolve(output)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
const formatTimeUnit = unit => { return ((unit < 10) ? '0' : '') + unit }
|
const formatTimeUnit = unit => { return ((unit < 10) ? '0' : '') + unit }
|
||||||
|
|
||||||
logTablePromises = [
|
const getTablePromises = [
|
||||||
logWeatherJson('./toronto.json', 'Toronto'),
|
getWeatherTable('./markham.json', 'Markham', 'h'),
|
||||||
logWeatherJson('./markham.json', 'Markham'),
|
getWeatherTable('./markham.json', 'Markham', 'v'),
|
||||||
|
getWeatherTable('./toronto.json', 'Toronto', 'h'),
|
||||||
|
getWeatherTable('./toronto.json', 'Toronto', 'v'),
|
||||||
]
|
]
|
||||||
Promise.all(logTablePromises).then(results => {
|
Promise.all(getTablePromises).then(tables => {
|
||||||
// const now = new Date()
|
const mText = tables[0]
|
||||||
// const lastUpdatedTime = `${formatTimeUnit(now.getHours())}:${formatTimeUnit(now.getMinutes())}`
|
const mvText = tables[1]
|
||||||
// log(`${CREDIT_MSG}\n\nLast updated: ${lastUpdatedTime}`)
|
const tText = tables[2]
|
||||||
log(CREDIT_MSG)
|
const tvText = tables[3]
|
||||||
|
const writeErrorHandler = error => { if (error) { throw error } }
|
||||||
|
fs.writeFile('mt.txt', CREDIT_MSG + mText + '\n' + tText, writeErrorHandler)
|
||||||
|
fs.writeFile('mtv.txt', CREDIT_MSG + mvText + '\n' + tvText, writeErrorHandler)
|
||||||
|
fs.writeFile('m.txt', CREDIT_MSG + mText, writeErrorHandler)
|
||||||
|
fs.writeFile('mv.txt', CREDIT_MSG + mvText, writeErrorHandler)
|
||||||
|
fs.writeFile('t.txt', CREDIT_MSG + tText, writeErrorHandler)
|
||||||
|
fs.writeFile('tv.txt', CREDIT_MSG + tvText, writeErrorHandler)
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -9,8 +9,7 @@ update-weather-json() {
|
|||||||
# echo "curl --request GET --url $curl_url > $2.json"
|
# echo "curl --request GET --url $curl_url > $2.json"
|
||||||
}
|
}
|
||||||
|
|
||||||
update-weather-json "43.8180904,-79.3350555" "markham"
|
# update-weather-json "43.8180904,-79.3350555" "markham"
|
||||||
update-weather-json "43.6596426,-79.3976676" "toronto"
|
# update-weather-json "43.6596426,-79.3976676" "toronto"
|
||||||
|
|
||||||
node dark-sky.js > dark-sky.txt
|
node dark-sky.js
|
||||||
# node dark-sky.js
|
|
||||||
|
|||||||
Reference in New Issue
Block a user