<div dir="ltr"><div class="gmail_default" style="font-size:small">You might want to start by looking at this page:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style><a href="http://www.ncarg.ucar.edu/examples.html">http://www.ncarg.ucar.edu/examples.html</a><br></div><div class="gmail_default" style><br></div><div class="gmail_default" style>and in particular, example mpex13.f.</div><div class="gmail_default" style><br></div><div class="gmail_default" style>However, I highly recommend that you consider using NCL, rather than NCAR Graphics.  Getting a contour plot over a map with labels is much simpler, and you have lots of examples to start from. </div><div class="gmail_default" style><br></div><div class="gmail_default" style>As a start, see this page, which shows how to draw contour plots over a cylindrical map:</div><div class="gmail_default" style><br></div><div class="gmail_default" style><a href="http://www.ncl.ucar.edu/Applications/cylineq.shtml">http://www.ncl.ucar.edu/Applications/cylineq.shtml</a><br></div><div class="gmail_default" style><br></div><div class="gmail_default" style>An NCL script for reading a variable off a NetCDF file and plotting it can be as simple as:</div><div class="gmail_default" style><br></div><div class="gmail_default" style><pre>; Open NetCDF file
  a = addfile(&quot;$NCARG_ROOT/lib/ncarg/data/cdf/<a href="http://uv300.nc">uv300.nc</a>&quot;,&quot;r&quot;)</pre><pre>; Read in zonal winds
  u = a-&gt;U(1,:,:)                                ; read July zonal winds<br></pre><pre>; Open X11 window for graphics
  wks = gsn_open_wks(&quot;x11&quot;,&quot;ce&quot;)

  res = True
  res@cnFillOn = True</pre><pre>; Create filled contour plot
  plot = gsn_csm_contour_map_ce(wks,u,res)</pre><pre>--Mary</pre></div><div class="gmail_default" style><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, May 19, 2015 at 12:31 PM, Gracielle Siqueira <span dir="ltr">&lt;<a href="mailto:graciqueira17@hotmail.com" target="_blank">graciqueira17@hotmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">


<div><div dir="ltr"><table height="19" width="95" cellpadding="0" cellspacing="0"><tbody><tr><td><br></td><td>                <br></td></tr></tbody></table>Hi,<br><br>Could you help  me ?<br><br>I need show latitude and longitude (<a name="14d6d71cb6f8b3f4_HDR 2 68">Labeling grids)</a> in my map, the NCAR have any comands for this?<br><br><pre>CALL SET(X1,X2,Y1,Y2,H1,H2,V1,V2,1) - this comand I can to use for put lat and lon in my map?<br>- <br>Thanks <span class="HOEnZb"><font color="#888888"><br>Gracielle<br></font></span></pre><br>                                               </div></div>
<br>_______________________________________________<br>
ncarg-talk mailing list<br>
<a href="mailto:ncarg-talk@ucar.edu">ncarg-talk@ucar.edu</a><br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncarg-talk" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncarg-talk</a><br>
<br></blockquote></div><br></div>