<div dir="ltr"><div class="gmail_default" style="font-size:small">Xiaoming,</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">If you need to use transparency, or more than two colormaps per plot, then you can&#39;t to use the workstation color map for setting the contour colors (i.e. the gsn_define_colormap procedure).<br><br></div><div class="gmail_default" style="font-size:small">Instead, use the cnFillPalette resource.  This powerful resource allows you to directly associate a predefined color map (like &quot;BlAqGrYeOrReVi200&quot;) or an RGB/RGBA directly with a contour plot.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">So, for the case where you want to reverse the &quot;gsdtol&quot; color map, you can do this:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small"><div class="gmail_default"><font face="monospace, monospace">  cmap = read_colormap_file(&quot;gsdtol&quot;)</font></div><div class="gmail_default"><font face="monospace, monospace">  res@cnFillPalette = cmap(::-1,:)      ; reverse the color map  </font></div><div class="gmail_default"><br></div><div class="gmail_default">But, there&#39;s already a reversed version of &quot;gsdtol&quot; called &quot;gsltod&quot;, so you could also use that directly:</div><div class="gmail_default"><br></div><div class="gmail_default"><font face="monospace, monospace">res@cnFillPalette = &quot;gsltod&quot;</font></div><div class="gmail_default"><br></div><div class="gmail_default">Then, for the overlaid contours, set:</div></div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small"><font face="monospace, monospace">res2@cnFillPalette = &quot;BlAqGrYeOrReVi200&quot;</font></div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">Remove all calls to &quot;gsn_define_colormap&quot; and &quot;gsn_reverse_colormap&quot;.  They are no longer needed.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">There are some other things you may want to clean up in your plot:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">[1] Don&#39;t use WRF_map_c. This is not an advertised function and was deprecated a long time ago.  Instead, use:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">







<p class="gmail-p1"><font face="monospace, monospace"><span class="gmail-s1">  </span><span class="gmail-s2">wrf_map_resources</span><span class="gmail-s1">(fmap, res)</span></font></p><p class="gmail-p1"><span class="gmail-s1"><font face="arial, helvetica, sans-serif">[2] You are setting a bunch of resource inside a do loop. This can cause your script to run slowly, if you have a do loop with a lot of increments, because it&#39;s needlessly executing the same code over and over.  I recommend moving all code that doesn&#39;t need to be inside the loop, to outside the loop.</font></span></p><p class="gmail-p1"><font face="arial, helvetica, sans-serif">I tried to fix your code to illustrate what you mean, but since I can&#39;t run it, I can&#39;t guarantee that it is bug free. See the attached script.</font></p><p class="gmail-p1"><font face="arial, helvetica, sans-serif"><br></font></p><p class="gmail-p1"><font face="arial, helvetica, sans-serif">--Mary</font></p><p class="gmail-p1"><font face="arial, helvetica, sans-serif"><br></font></p></div>















</div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Aug 31, 2016 at 10:10 PM, xiaoming Hu <span dir="ltr">&lt;<a href="mailto:yuanfangcan@hotmail.com" target="_blank">yuanfangcan@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">I actually looked at those pages. <div>See what I got </div><div><div style="display:inline-block">    <span> </span>    <div style="display:inline-block"><img src="cid:inlineImage0" height="540" width="540"></div>    <span> </span></div></div><div><div style="display:inline-block"></div>using my script of <a href="http://www.caps.ou.edu/micronet/YangYi/WRF_QTT/V3.7.1/wrfERA2d_Sichuan_forQTT_UCM_YSU.2014070912/plot_totalRain_daily_spatial.ncl" target="_blank">http://www.caps.ou.edu/<wbr>micronet/YangYi/WRF_QTT/V3.7.<wbr>1/wrfERA2d_Sichuan_forQTT_UCM_<wbr>YSU.2014070912/plot_totalRain_<wbr>daily_spatial.ncl</a></div><div><br></div><div>Apparently it is not as nice as </div><div><div style="display:inline-block">    <span> </span>    <div style="display:inline-block"><img src="cid:inlineImage1" height="600" width="800"></div>    <span> </span></div></div><div><div style="display:inline-block"></div>There are a few issues, </div><div>1. I need the two contour maps using different colormaps, one is gsdtol, the other is BlAqGrYeOrReVi200</div><div>2. In the exemplary figure, the overlay is done not through Opacity setting, but setting the 1st color transparent.   </div><div>If I set gsn_define_colormap(wks,&quot;<wbr>BlAqGrYeOrReVi200&quot;) , how can I make the fist used color transparent? </div><div><br></div><div>Thanks</div><div><span class="HOEnZb"><font color="#888888">Xiaoming <br></font></span><div class="hm HOEnZb"><br></div><div><div class="hm HOEnZb"><hr>CC: <a href="mailto:ncl-talk@ucar.edu" target="_blank">ncl-talk@ucar.edu</a>; <a href="mailto:xhu@ou.edu" target="_blank">xhu@ou.edu</a><br>From: <a href="mailto:shea@ucar.edu" target="_blank">shea@ucar.edu</a><br>Subject: Re: [ncl-talk] best way to overlay two color filled contour maps?<br>Date: Wed, 31 Aug 2016 17:11:20 -0600<br>To: <a href="mailto:yuanfangcan@hotmail.com" target="_blank">yuanfangcan@hotmail.com</a></div><div><div class="h5"><br><br><div>Did you look at the overlay page?</div><div><br></div><div>Applications/overlay.shtml</div><div>Applications/rgbacolor.shtml<br><br>Sent from my iPhone</div><div><br>On Aug 31, 2016, at 12:36 PM, xiaoming Hu &lt;<a href="mailto:yuanfangcan@hotmail.com" target="_blank">yuanfangcan@hotmail.com</a>&gt; wrote:<br><br></div><blockquote><div>


<div dir="ltr"><div style="display:inline-block">What is the best <span>way to overlay two color-filled contour maps (like below) in NCl? <br><br></span>    <div style="display:inline-block">&lt;overlay.png&gt;</div>     <span><br><br>Thanks<br>Xiaoming <br></span></div>                                               </div>
</div></blockquote><blockquote><div><span>______________________________<wbr>_________________</span><br><span>ncl-talk mailing list</span><br><span><a href="mailto:ncl-talk@ucar.edu" target="_blank">ncl-talk@ucar.edu</a></span><br><span>List instructions, subscriber options, unsubscribe:</span><br><span><a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target="_blank">http://mailman.ucar.edu/<wbr>mailman/listinfo/ncl-talk</a></span><br></div></blockquote></div></div></div></div>                                               </div></div>
<br>______________________________<wbr>_________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/<wbr>mailman/listinfo/ncl-talk</a><br>
<br></blockquote></div><br></div>