Weather

From Public wiki of Kevin P. Inscoe
Revision as of 17:14, 23 February 2017 by Kinscoe (talk | contribs) (→‎Skywarn)
Jump to navigation Jump to search

This site is being migrated from my previous wiki at http://ke3vin.org/pmwiki.php/Main/Weather

Skywarn

I am a trained Skywarn spotter. See What is Skywarn for more information.

Here is a script I use to alert me on days that spotter activation may be required. The output of the script is sent to via email daily.

The script:

#/bin/bash

for WFO in MLB MRX
do
   echo "HWO statement for $WFO..."
   echo " "
   URL="http://forecast.weather.gov/product.php?site=NWS&issuedby=`echo $WFO`&product=HWO&format=txt&version=1&glossary=0"
   curl -s "$URL" | html2text | grep -i "Spotter activation"
   echo " "
   echo "For full outlook click on $URL"
   echo " "
done

The output which I will see in email:

./nws_spotter_activation.sh 
HWO statement for MLB...
 
Spotter activation will not be needed today.
 
For full outlook click on http://forecast.weather.gov/product.php?site=NWS&issuedby=MLB&product=HWO&format=txt&version=1&glossary=0
 
HWO statement for MRX...
 
Spotter activation will be needed Friday night into early
 
For full outlook click on http://forecast.weather.gov/product.php?site=NWS&issuedby=MRX&product=HWO&format=txt&version=1&glossary=0
 

This could also be sent to Twitter or other such alerting media.

Observation

Reporting

Forecast