[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

19990625: gempak sfmap



Tom,

The maximum line length for any parameter is 72 characters.
Your AREA specification is longer than that.

As I mentioned in my previous message, AREA=dset will define
all stations, then your graphics area (GAREA=nj)  defines
the area which is displayed. 

Steve Chiswell
Unidata User Support





>From: Tom Szymkiewicz <address@hidden>
>Organization: .
>Keywords: 199906251917.NAA24303

>Hello,
>I'm using sfmap to display selected stations from a data file.  I'm
>running into the problem that I can only display the first 12 stations
>and nothing after that.  I know that the data is there because when I
>change the first 12 stations to a different set I can see them
>plotted.  I'm using the script below.  Maybe you can figure out what's
>wrong just by looking at the inputs without the data...if not, please
>let me know and I'll send you the data file (it's rather large).  I
>appreciate your help.  Tom.
>
>
>#!/bin/csh -f
>#
># draws surface data
>#
># TSS 06/21/99
>#
>#
>
>echo -n "We will run the script now..."
>
>source /project/cmaq10/tss/NAWIPS-5.4/Gemenviron
>cd $GEMDATA
>
>#AREA=@phl;ewr;iad;dca;abe;jfk;lga;bdr;hpn;pou;ilg;dxr;bdl;orh;fok;bos;acy;hvn
>#;isp;teb;bwi
>#SFPARM=pres;tmpc;relh;arrw
>#DATTIM=950713/1200-950716/0000-3
>
>sfmap << EOF
>AREA=phl;ewr;iad;dca;abe;jfk;lga;bdr;hpn;pou;ilg;dxr;bdl;orh;fok;bos;acy;hvn;i
> sp;teb;bwi
>GAREA=nj
>SATFIL=
>RADFIL=
>SFPARM=barb;tmpc;relh;pres
>DATTIM=950713/1200-950713/1200
>SFFILE=sfc.dat
>COLORS=26;2;7;25;20
>MAP=1
>LATLON=1
>MARKER=1
>TITLE=1
>CLEAR=yes
>PANEL=0
>DEVICE=xw
>PROJ=mer
>FILTER=N
>TEXT=1/22//hw
>SKPMIS=no
>LUTFIL=
>STNPLT=
>run
>
>exit
>EOF
>
>echo ""
>
>exit(0)
>