<div dir="ltr">Hi all,<div><br></div><div>I plotted change in the low cloud as a difference between two simulations and added the 95% confidence level but the problem is there is a band that significant values are not shown. it is around 180 degrees longitude. Attached is the figure, and here is the code that I used:</div><div><br></div><div><div><br></div><div>wks = gsn_open_wks("eps","low_cloud_summer")</div><div> gsn_define_colormap(wks,"BlWhRe")   ; choose color</div><div>;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;</div><div>  res                     = True               ; plot mods desired</div><div>  res@cnFillOn            = True              ; turn on color   </div><div>  res@gsnSpreadColors     = True               ; use full color map</div><div>  res@cnLinesOn           = False              ; no contour lines</div><div>  res@cnLineLabelsOn      = False              ; no line labels</div><div><br></div><div> </div><div><br></div><div>  ;res@gsnAddCyclic        = False </div><div>  res@gsnDraw             = False           ; don't draw</div><div>  res@gsnFrame            = False           ; don't advance frame</div><div>  res@cnInfoLabelOn       = False           ; turn off cn info label</div><div>  res@cnFillOn            = True            ; turn on color</div><div>  res@gsnSpreadColors     = True            ; spread out color table</div><div>  res@gsnSpreadColorStart = 2               ; color to startt</div><div><br></div><div>  res@lbLabelBarOn        = False           ; turn off individual cb's</div><div><br></div><div><br></div><div> res@cnLevelSelectionMode =  "ManualLevels"   ; AutomaticLevels</div><div>  res@cnMinLevelValF       = -20.              ; min level</div><div>  res@cnMaxLevelValF       =  20.              ; max level</div><div>  res@cnLevelSpacingF      =  2               ; interval</div><div><br></div><div>;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;</div><div>res@tiMainString        = " Summer changes in low clouds" ;Cloud Fraction Derivative fall</div><div><br></div><div>plot= gsn_csm_contour_map(wks,low_summer,res)</div><div>;delete(wks)</div><div>; ========================= PLOT 2 ==============================</div><div> res2 = True                            ; res2 probability plots</div><div><br></div><div><br></div><div>  res2@gsnDraw              = False           ; Do not draw plot</div><div>  res2@gsnFrame             = False           ; Do not advance frame</div><div> </div><div>  res2@cnInfoLabelOn       = False       ; turn off info label</div><div><br></div><div>  res2@cnLinesOn           = False       ; do not draw contour lines</div><div>  res2@cnLineLabelsOn      = False       ; do not draw contour labels</div><div><br></div><div>  res2@cnFillScaleF        = 0.6         ; add extra density</div><div>;;  delete(alpha@long_name)</div><div>;;  delete(alpha@units)  </div><div>  </div><div>  plot2   = gsn_csm_contour(wks,alphat_low_summer, res2) </div><div>  plot2   = ShadeGtContour(plot2, 0.05, 17)  ; shade all areas less than the</div><div>                                             ; 0.05 contour level</div><div>  overlay (plot, plot2)</div><div><br></div><div>  draw (plot)</div><div>  frame(wks)</div><div>  delete(wks)</div><div><br></div></div></div>