<HTML dir=ltr><HEAD></HEAD>
<BODY>
<DIV id=idOWAReplyText90163 dir=ltr>
<DIV dir=ltr><FONT face=Arial color=#000000 size=2><FONT face="Times New Roman" size=2>Classification: UNCLASSIFIED</FONT> <BR><FONT face="Times New Roman" size=2>Caveat (s):&nbsp;FOUO</FONT></FONT></DIV>
<DIV dir=ltr><FONT face=Arial color=#000000 size=2><FONT face="Times New Roman"></FONT></FONT>&nbsp;</DIV>
<DIV dir=ltr><FONT face=Arial color=#000000 size=2><FONT face="Times New Roman">Thanks to all in solving my last problem.</FONT></FONT></DIV>
<DIV dir=ltr><FONT size=2></FONT>&nbsp;</DIV>
<DIV dir=ltr><FONT size=2>I have a regular spaced lat lon grid that I plot using mproj = latlon and I can control the lat lon that I view by setting the lat lon but I now want to project on to nsp but be able to control how much I see.&nbsp; for example I only want to see lat north of 65N.</FONT></DIV>
<DIV dir=ltr><FONT size=2></FONT>&nbsp;</DIV>
<DIV dir=ltr><FONT size=2>I can project the entire data set on to nsp but how do I tell it to only show/plot north of a certain lat?</FONT></DIV>
<DIV dir=ltr><FONT size=2></FONT>&nbsp;</DIV>
<DIV dir=ltr><FONT size=2>Thanks</FONT><FONT face=Arial color=#000000 size=2></DIV></DIV>
<DIV id=idSignature53580>
<DIV></FONT><FONT face=Arial color=#000000 size=2>&nbsp;</DIV></FONT>
<DIV><FONT face=Arial color=#000000 size=2>John Ertl</FONT></DIV>
<DIV><FONT face=Arial size=2>Meteorologist</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>FNMOC</FONT></DIV>
<DIV><FONT face=Arial size=2>7 Grace Hopper Ave.</FONT></DIV>
<DIV><FONT face=Arial size=2>Monterey, CA 93943</FONT></DIV>
<DIV><FONT face=Arial size=2>(831) 656-5704</FONT></DIV>
<DIV><FONT face=Arial size=2><A href="mailto:john.ertl@navy.mil" target=_blank>john.ertl@navy.mil</A></FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV>
<DIV><FONT face=Arial color=#000000 size=2><FONT face="Times New Roman" size=2>Classification: UNCLASSIFIED</FONT> <BR><FONT face="Times New Roman" size=2>Caveat (s): FOUO</FONT></DIV></FONT></DIV></DIV>
<DIV dir=ltr><BR>
<HR tabIndex=-1>
<FONT face=Tahoma size=2><B>From:</B> Mary Jo Nath<BR><B>Sent:</B> Wed 8/29/2007 8:38 AM<BR><B>To:</B> GRADSUSR@LIST.CINECA.IT<BR><B>Subject:</B> Re: adding text to images<BR></FONT><BR></DIV>
<DIV><PRE style="WORD-WRAP: break-word">John,

I'd use a grads script to return the XY coordinates of the sides of the
plot using "q gxinfo", then use "draw string" to plot labels relative to
the 4 corners.  Include something like this to  get the X and Y values
of the sides of the plots:

'q gxinfo'
xvalues=sublin(result,3)
yvalues=sublin(result,4)
* xl = plot starts xl inches from left
* xr = plot ends xr inches from left
* yb = plot starts yb inches from bottom
* yt = plot ends yt inches from bottom
xl=subwrd(xvalues,4)
xr=subwrd(xvalues,6)
yb=subwrd(yvalues,4)
yt=subwrd(yvalues,6)


The lower left corner of the plot would be at "xl" "yb". Upper left at
"xl" "yt". Upper right "xr" "yt". Lower right "xr" "yb".

MJ

Ertl, John C CIV 63134 wrote:
&gt; All,
&gt;
&gt; I have a plot that looks great except that when I change the lat/lon
&gt; of the plot area the image resizes and some of the labels that I have
&gt; placed (using draw string) in the corners of the image now no longer
&gt; draw in the correct place (I guess they draw in the same place but the
&gt; image has changed its dimensions.  How can I have a label show up in
&gt; the plotted area and stay in the corner even when the plotted area
&gt; changes.
&gt;
&gt; Thanks
&gt;
&gt; John Ertl
</PRE></DIV></BODY></HTML>