-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a3c694d
commit 7723011
Showing
1 changed file
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
#!/bin/bash | ||
|
||
######################################################## | ||
# CONFIGURATION | ||
######################################################## | ||
# UNITY = f for fahrenheit, c for celsius or k for kelvin | ||
# API_KEY = free register in https://openweathermap.org | ||
# and get your token | ||
# CITY = your city name | ||
# COUNTRY = your country abbreviation: us, ru, br, etc.. | ||
######################################################## | ||
|
||
UNITY="c" | ||
API_KEY="YOUR API KEY" | ||
CITY="New York" | ||
COUNTRY="us" | ||
|
||
######################################################## | ||
rm ~/.cache/weather.txt | ||
CITY=$(echo $CITY | sed -e 's/ /%20/g') | ||
if [ $UNITY == "k" ] | ||
then | ||
UNITY="default" | ||
elif [ $UNITY == "c" ] | ||
then | ||
UNITY="metric" | ||
elif [ $UNITY == "f" ] | ||
then | ||
UNITY="imperial" | ||
else | ||
UNITY="default" | ||
fi | ||
verify=$(which curl 2> /dev/null) | ||
if [ "$verify" == "" ] | ||
then | ||
echo "Dependency not found! Please install curl library!" | ||
exit | ||
fi | ||
url="http://api.openweathermap.org/data/2.5/weather?APPID=$API_KEY&q=$CITY,$COUNTRY&units=$UNITY" | ||
status=$(curl -I -s "$url" | head -1 | cut -d" " -f2) | ||
if [ "$status" != "200" ] | ||
then | ||
echo "Connection error, please check settings in weather.sh file" | ||
exit | ||
fi | ||
data=$(curl -s "$url" | sed -e 's/}//g' | sed -e 's/{//g' | sed -e 's/\[//g' | sed -e 's/\]//g' | sed -e 's/"//g') | ||
city=$(echo $data | sed -e 's/,/\n/g' | grep name | cut -d":" -f2) | ||
country=$(echo $data | sed -e 's/,/\n/g' | grep country | cut -d":" -f3) | ||
temp=$(echo $data | sed -e 's/,/\n/g' | grep temp | sed -e 's/ /\n/g' | cut -d":" -f3) | ||
description=$(echo $data | sed -e 's/,/\n/g' | grep description | cut -d":" -f2) | ||
temp_min=$(echo $data | sed -e 's/,/\n/g' | grep temp_min | cut -d":" -f2) | ||
temp_max=$(echo $data | sed -e 's/,/\n/g' | grep temp_max | cut -d":" -f2) | ||
humidity=$(echo $data | sed -e 's/,/\n/g' | grep humidity | cut -d":" -f2) | ||
pressure=$(echo $data | sed -e 's/,/\n/g' | grep pressure | cut -d":" -f2) | ||
wind=$(echo $data | sed -e 's/,/\n/g' | grep wind | cut -d":" -f3) | ||
update=$(date +"%Y-%m-%d %H:%M:%S") | ||
echo -e "city>$city\ncountry>$country\ntemp>$temp\ndescription>$description\nmin>$temp_min\nmax>$temp_max\nhumidity>$humidity\npressure>$pressure\nwind>$wind\nupdate>$update" > ~/.cache/weather.txt | ||
|