added response
This commit is contained in:
parent
be0928ce1c
commit
b3a1df8efe
@ -9,13 +9,15 @@ source "$WORKING_DIR/.env.key"
|
|||||||
lookup_location() {
|
lookup_location() {
|
||||||
# search for a location
|
# search for a location
|
||||||
url="http://api.openweathermap.org/geo/1.0/direct?q=$SEARCH&appid=$API_KEY"
|
url="http://api.openweathermap.org/geo/1.0/direct?q=$SEARCH&appid=$API_KEY"
|
||||||
curl --silent -fL "$url"
|
res=$(curl --silent -fL "$url")
|
||||||
|
echo "$res"
|
||||||
}
|
}
|
||||||
|
|
||||||
lookup_zipcode() {
|
lookup_zipcode() {
|
||||||
# lookup based on zipcode
|
# lookup based on zipcode
|
||||||
url="http://api.openweathermap.org/geo/1.0/zip?zip=$ZIPCODE&appid=$API_KEY"
|
url="http://api.openweathermap.org/geo/1.0/zip?zip=$ZIPCODE&appid=$API_KEY"
|
||||||
curl --silent -fL "$url"
|
res=$(curl --silent -fL "$url")
|
||||||
|
echo "$res"
|
||||||
}
|
}
|
||||||
|
|
||||||
get_weather() {
|
get_weather() {
|
||||||
@ -24,7 +26,8 @@ get_weather() {
|
|||||||
LON=$(echo "$COORDS" | awk -F , '{print $2}')
|
LON=$(echo "$COORDS" | awk -F , '{print $2}')
|
||||||
|
|
||||||
url="https://api.openweathermap.org/data/2.5/weather\?lat=$LAT\&lon=$LON\&appid=$API_KEY\&units=imperial"
|
url="https://api.openweathermap.org/data/2.5/weather\?lat=$LAT\&lon=$LON\&appid=$API_KEY\&units=imperial"
|
||||||
curl --silent -fL "$url"
|
res=$(curl --silent -fL "$url")
|
||||||
|
echo "$res"
|
||||||
}
|
}
|
||||||
|
|
||||||
while getopts "c:s:z:" arg; do
|
while getopts "c:s:z:" arg; do
|
||||||
|
Loading…
x
Reference in New Issue
Block a user