SCRIPT - Surface Wind Colour Plot

Strictly for sharing scripts used in Digital Atmosphere and getting assistance from other users.
Post Reply
Budgie
Moderator
Posts: 65
Joined: Wed Jan 06, 2010 1:17 pm
Location: Lochaber, Scotland
Contact:

SCRIPT - Surface Wind Colour Plot

Post by Budgie »

Here's a script I put together this evening that seems to work quite well.
It displays a colour plot of the current surface wind and you can see the results on this page: Surface Wind Charts
The script is written for wind speed in MPH, if you want it to show m/s then just remove the "VMPH" tags and if you want it in knots or KM/H just replace the "VMPH" with "VKNT" or "VKMH".

Feel free to use and modify as you want and I've also included a legend that you're free to use as well but please save it to your own site and don't "hot link". ;-)

Image

Code: Select all

ANALYZE,OVER FILL COLOR=255:255:000 GRTN=50 OVER FILL COLOR=206:255:000 GRTN=45 OVER FILL COLOR=127:255:000 GRTN=40 OVER FILL COLOR=000:255:179 GRTN=35 OVER FILL COLOR=000:255:255 GRTN=30 OVER FILL COLOR=000:230:255 GRTN=25 OVER FILL COLOR=000:204:255 GRTN=20 OVER FILL COLOR=000:163:255 GRTN=15 OVER FILL COLOR=000:115:255 GRTN=10 OVER FILL COLOR=000:074:255 GRTN=5 OVER FILL COLOR=000:000:255 GRTN=0 SADC=1:00 STOR=1 VMPH WSPD HSFC 
ANALYZE,OVER FILL COLOR=255:079:000 GRTN=80 OVER FILL COLOR=255:127:000 GRTN=75 OVER FILL COLOR=255:153:000 GRTN=70 OVER FILL COLOR=255:174:000 GRTN=65 OVER FILL COLOR=255:204:000 GRTN=60 OVER FILL COLOR=255:230:000 GRTN=55 SADC=1:00 STOR=1 VMPH WSPD HSFC 
ANALYZE,VECT COLOR=0:0:0 VMPH WIND HSFC
ANALYZE,CONT CINT=5 COLOR=160:160:160 DOTS VKNT WSPD HSFC 
Post Reply