<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">
Hi Jared & Mary,
<div class=""><br class="">
</div>
<div class="">Thanks for the responses. These are all good and show, for me, new ways to use NCL.</div>
<div class="">Unfortunately, as Jared pointed out, I’m not trying to hatch my figure based on the contours values.</div>
<div class="">I’m working on a publication so forgive me if I hesitate to send to all of ncl-talk. Let me explain a bit more.</div>
<div class=""><br class="">
</div>
<div class="">I have to two panel containing 2 plots, but these plots have x-axis of different lengths (just by 1 value) e.g., plot 1 has a x-value from 0:10 and plot 2: 1:10.</div>
<div class="">Since I’m comparing model results with observations I would like to put a hatch box over the plot 1 between x= 0 and x= 1 so that the reader can still see the contours beneath but note the different ranges of the plots.</div>
<div class=""><br class="">
</div>
<div class="">The examples Mary suggested didn’t really cover this example. apologies for not being more clear first time around. </div>
<div class=""><br class="">
</div>
<div class="">I tried the following with the thought of adding a box with hatch fill between x= 0 and x=1 but zero effect later when I plot the panel.</div>
<div class=""><br class="">
</div>
<div class="">
<div class="">  ypt =(/-50.0,-27.5/)</div>
<div class="">  xpt =(/0.0,19.0/)</div>
<div class="">  polyres             = True    </div>
<div class="">  polyres@gsFillColor = "black"</div>
<div class="">  polyres@gsFillIndex = 3</div>
<div class="">  polyres@gsFillOpacityF = 0.2</div>
<div class="">  dum2 = gsn_add_polygon(wks,plot(0),xpt,ypt,polyres) ; add polygon</div>
<div class=""><br class="">
</div>
</div>
<div class="">Am I barking up the wrong tree here or am I making an error somewhere?</div>
<div class=""><br class="">
</div>
<div class="">Appreciate the help guys,</div>
<div class="">/M</div>
<div class=""><br class="">
<div><br class="">
<blockquote type="cite" class="">
<div class="">On 8 Mar 2018, at 18:30, Mary Haley <<a href="mailto:haley@ucar.edu" class="">haley@ucar.edu</a>> wrote:</div>
<br class="Apple-interchange-newline">
<div class="">
<div dir="ltr" class="">
<div class="gmail_default" style="font-size:small">Hi Marston,</div>
<div class="gmail_default" style="font-size:small"><br class="">
</div>
<div class="gmail_default" style="font-size:small">If you simply want to draw hatching on top of an existing contour plot, then you can use gsn_contour_shade. </div>
<div class="gmail_default" style="font-size:small"><br class="">
</div>
<div class="gmail_default" style="font-size:small"><a href="http://www.ncl.ucar.edu/Document/Graphics/Interfaces/gsn_contour_shade.shtml" class="">http://www.ncl.ucar.edu/Document/Graphics/Interfaces/gsn_contour_shade.shtml</a></div>
<div class="gmail_default" style="font-size:small"><br class="">
</div>
<div class="gmail_default" style="font-size:small">This function is for the sole purpose of taking an existing contour plot, and adding some hatching or stippling to highlight an area of interest.</div>
<div class="gmail_default" style="font-size:small"><br class="">
</div>
<div class="gmail_default" style="font-size:small">Here are some examples:</div>
<div class="gmail_default" style="font-size:small"><br class="">
</div>
<div class="gmail_default"><a href="http://www.ncl.ucar.edu/Applications/conOncon.shtml#ex4" class="">http://www.ncl.ucar.edu/Applications/conOncon.shtml#ex4</a><br class="">
</div>
<div class="gmail_default"><a href="http://www.ncl.ucar.edu/Applications/coneff.shtml#ex11" class="">http://www.ncl.ucar.edu/Applications/coneff.shtml#ex11</a><br class="">
</div>
<div class="gmail_default"><a href="http://www.ncl.ucar.edu/Applications/overlay.shtml#ex5" class="">http://www.ncl.ucar.edu/Applications/overlay.shtml#ex5</a><br class="">
</div>
<div class="gmail_default"><a href="http://www.ncl.ucar.edu/Applications/wavelet.shtml#ex3" class="">http://www.ncl.ucar.edu/Applications/wavelet.shtml#ex3</a><br class="">
</div>
<div class="gmail_default"><br class="">
</div>
<div class="gmail_default">Some of these may not use gsn_contour_shade.</div>
<div class="gmail_default"><br class="">
</div>
<div class="gmail_default">Let ncl-talk know if this is not what you're after.</div>
<div class="gmail_default"><br class="">
</div>
<div class="gmail_default">--Mary</div>
<div class="gmail_default"><br class="">
</div>
</div>
<div class="gmail_extra"><br class="">
<div class="gmail_quote">On Thu, Mar 8, 2018 at 3:47 AM, Marston Ward <span dir="ltr" class="">
<<a href="mailto:marston.johnston@gu.se" target="_blank" class="">marston.johnston@gu.se</a>></span> wrote:<br class="">
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="">
<div name="messageBodySection" style="font-size:14px;font-family:-apple-system,BlinkMacSystemFont,sans-serif" class="">
<div style="margin: 0px; font-stretch: normal; line-height: normal; font-family: "Helvetica Neue"; color: rgb(51, 51, 51);" class="">
Hi,</div>
<div style="margin: 0px; font-stretch: normal; line-height: normal; font-family: "Helvetica Neue"; color: rgb(51, 51, 51); min-height: 16px;" class="">
<br class="">
</div>
<div style="margin: 0px; font-stretch: normal; line-height: normal; font-family: "Helvetica Neue"; color: rgb(51, 51, 51);" class="">
I’m trying to mask a part of a  gsn_csm_contour plot using a “hatch”. I don’t want to simply mask out the area because I want to the data to still be visible under the hatch.</div>
<div style="margin: 0px; font-stretch: normal; line-height: normal; font-family: "Helvetica Neue"; color: rgb(51, 51, 51);" class="">
Is it possible to do this in NCL? A simple search returned nothing in NCL. Just wondering if this is possible and it so, are there examples.</div>
<div style="margin: 0px; font-stretch: normal; line-height: normal; font-family: "Helvetica Neue"; color: rgb(51, 51, 51); min-height: 16px;" class="">
<br class="">
</div>
<div style="margin: 0px; font-stretch: normal; line-height: normal; font-family: "Helvetica Neue"; color: rgb(51, 51, 51);" class="">
Best,</div>
<div style="margin: 0px; font-stretch: normal; line-height: normal; font-family: "Helvetica Neue"; color: rgb(51, 51, 51);" class="">
<br class="">
</div>
<div style="margin: 0px; font-stretch: normal; line-height: normal; font-family: "Helvetica Neue"; color: rgb(51, 51, 51);" class="">
/M</div>
</div>
<div name="messageSignatureSection" style="font-size:14px;font-family:-apple-system,BlinkMacSystemFont,sans-serif" class="">
<br class="">
<p class="MsoNormal"><b class=""><i class="">Marston S. Ward</i></b><br class="">
</p>
</div>
</div>
<br class="">
______________________________<wbr class="">_________________<br class="">
ncl-talk mailing list<br class="">
<a href="mailto:ncl-talk@ucar.edu" class="">ncl-talk@ucar.edu</a><br class="">
List instructions, subscriber options, unsubscribe:<br class="">
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank" class="">http://mailman.ucar.edu/<wbr class="">mailman/listinfo/ncl-talk</a><br class="">
<br class="">
</blockquote>
</div>
<br class="">
</div>
_______________________________________________<br class="">
ncl-talk mailing list<br class="">
<a href="mailto:ncl-talk@ucar.edu" class="">ncl-talk@ucar.edu</a><br class="">
List instructions, subscriber options, unsubscribe:<br class="">
http://mailman.ucar.edu/mailman/listinfo/ncl-talk<br class="">
</div>
</blockquote>
</div>
<br class="">
</div>
</body>
</html>