#
#  File:
#    wmstnm01.py
#
#  Synopsis:
#    Illustrates plotting station model data.
#
#  Category:
#    Wind barbs/Station model data.
#
#  Author:
#    Fred Clare
#
#  Date of initial publication:
#    September, 2007 
#
#  Description:
#    Draws a single large station model data plot.
#
#  Effects illustrated:
#    o  Drawing station model data.
# 
#  Output:
#    A single visualization is produced that draws the 
#    given station model data.
#
#  Notes:
#     

from __future__ import print_function
import Ngl
import numpy

#---Open PNg file
wks_type = "png"
wks = Ngl.open_wks(wks_type,"wmstnm01")


#---Define the station model data and plot.
imdat="11212833201001120000300004014752028601117706086792"
Ngl.wmsetp("wbs",0.25)    #  Scale
Ngl.wmstnm(wks,0.5,0.5,imdat)

Ngl.frame(wks)
Ngl.end()
