<div dir="ltr"><div><div>Also, see<br><br><a href="http://www.ncl.ucar.edu/Applications/ice.shtml">http://www.ncl.ucar.edu/Applications/ice.shtml</a><br><br></div>At the bottom.   &quot;GLAND&quot;<br><br></div>D<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, May 22, 2015 at 11:33 AM, David B. Reusch <span dir="ltr">&lt;<a href="mailto:dreusch@ees.nmt.edu" target="_blank">dreusch@ees.nmt.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Erik,<br>
<br>
I&#39;ve wrestled with this one quite a bit (and cursed that most of my<br>
research is in polar latitudes).  Unfortunately, I don&#39;t have a simple,<br>
self-contained example since the &quot;plot Greenland&quot; part is embedded in a<br>
much bigger, quite specific-to-my-needs script. However, the following<br>
variables and resources should help you get started.  Some adjustment<br>
may still be needed to get exactly what you want.<br>
minLon = -60<br>
maxLon = -25<br>
minLat = 58<br>
maxLat = 86.5<br>
res@gsnPolar = &quot;NH&quot;<br>
res@gsnTickMarksOn = False<br>
res@mpProjection = &quot;LambertConformal&quot;    ; I like this rather than<br>
stereographic<br>
res@mpLambertMeridianF = (minLon + maxLon) / 2<br>
res@mpLimitMode = &quot;LatLon&quot;<br>
res@mpMinLatF = minLat<br>
res@mpMaxLatF = maxLat<br>
res@mpMinLonF = minLon<br>
res@mpMaxLonF = maxLon<br>
<br>
I then use gsn_csm_contour_map since I&#39;m actually plotting data.<br>
gsn_csm_map might be all you need if you just want a map.<br>
<br>
If I remember correctly, it&#39;s hard to get good automatic lat/lon labels<br>
so I just don&#39;t bother (especially since I usually end up paneling lots<br>
of these together and I don&#39;t need the extra text). But I think the NCL<br>
site has some examples for adding lat/lon manually if you need it.<br>
<br>
Good luck!<br>
Dave<br>
<br>
Erik Noble wrote on 5/22/15 10:06 AM:<br>
<div class="HOEnZb"><div class="h5">&gt; Hi. Is there an example I can refer to to draw a map only plot of a region like Greenland?<br>
&gt; Would I use a stereographic projections and resources?<br>
&gt; Thank you.<br>
&gt; -Erik<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; ncl-talk mailing list<br>
&gt; List instructions, subscriber options, unsubscribe:<br>
&gt; <a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
&gt;<br>
<br>
</div></div><span class="HOEnZb"><font color="#888888">--<br>
Associate Research Professor of Climatology<br>
Dept of Earth and Environmental Science<br>
MSEC 304; 801 Leroy Place<br>
New Mexico Tech<br>
Socorro, NM 87801<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
_______________________________________________<br>
ncl-talk mailing list<br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
</div></div></blockquote></div><br></div>