<div dir="ltr"><div class="gmail_default" style="font-size:small">Geeta,</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">Are the -999900 and -888800 values correct? They seem a bit odd.  Perhaps you are supposed to divide the data by the scale_factor rather than multiple by it.  I think the &quot;short2flt&quot; function does a multiply.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">Try this (UNTESTED):</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="">







<p class="">   RF_short  =  hdf4_file-&gt;rain<br>   printVarSummary(RF_short)<br>   printMinMax(RF_short,0)</p><p class="">   Rf_fnl  = tofloat(RF_short) / RF_short@scale_factor<br>   copyVarMeta(RF_short,Rf_fnl)<br><br>   printVarSummary(Rf_fnl)<br>   printMinMax(Rf_fnl,0)</p><p class="">   Rf_fnl  =  where(Rf_fnl.eq.-88.88,Rf_fnl@_FillValue,Rf_fnl)<br>   printMinMax(Rf_fnl,0)</p><p class="">   Rf_fnl@lon2d      =  longitude<br>   Rf_fnl@lat2d      =  latitude</p><p class="">I added several &quot;printVarSummary&quot; and &quot;prinMinMax&quot; calls to make sure that the conversions are working at every step.<br></p><p class="">If this continues to fail, it would help if I could have access to your latest script and data.</p><p class="">--Mary</p></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Jun 3, 2016 at 2:04 AM, Geeta Geeta <span dir="ltr">&lt;<a href="mailto:geetag54@yahoo.com" target="_blank">geetag54@yahoo.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 style="color:#000;background-color:#fff;font-family:HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,Sans-Serif;font-size:16px"><div><div><div style="color:#000;background-color:#fff;font-family:HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,Sans-Serif;font-size:16px"><div dir="ltr"><span>thanks Mary for your suggestions.. </span></div><div dir="ltr"><span>I was able to get the plot but I am getting a band like structure in the plot that is middle part is white. Dont know why???</span></div><div dir="ltr"><span><br clear="none"></span></div><div dir="ltr"><span>can u pls suggest. </span></div><span class="HOEnZb"><font color="#888888"><div></div><div> </div><div>Geeta.</div> <div><br clear="none"><br clear="none"></div><div></div></font></span></div></div></div><div><div class="h5"><div> <div style="font-family:HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,Sans-Serif;font-size:16px"> <div style="font-family:HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,Sans-Serif;font-size:16px"> <div dir="ltr"><font size="2" face="Arial"> On Friday, 3 June 2016 3:29 AM, Mary Haley &lt;<a href="mailto:haley@ucar.edu" target="_blank">haley@ucar.edu</a>&gt; wrote:<br clear="none"></font></div>  <br clear="none"><br clear="none"> <div><div><div><div dir="ltr"><div style="font-size:small"><br clear="none"></div><div style="font-size:small">Geeta,</div><div style="font-size:small"><br clear="none"></div><div style="font-size:small">You will need to approach this with two steps.</div><div style="font-size:small"><br clear="none"></div><div style="font-size:small">First, since this data is of type &quot;short&quot; and has scale_factor and add_offset attributes, you should read the data using &quot;short2flt&quot;, which will apply these attributes for you. Afterwards, use &quot;printVarSummary&quot; and &quot;printMinMax&quot; to make sure the data looks okay.</div><div style="font-size:small"><br clear="none"></div><div style="font-size:small">Second, whenever your data has multiple missing value values, you can use the &quot;where&quot; function</div><div style="font-size:small"><br clear="none"></div><div style="font-size:small">First, use &quot;-9999&quot; as your standard missing value:</div><div style="font-size:small"><br clear="none"></div><div style="font-size:small">rf@_FillValue = -9999</div><div style="font-size:small"><br clear="none"></div><div style="font-size:small">Now that &quot;-9999&quot; is a recognized missing value, you can then coerce the -88.88 value to missing as well:</div><div style="font-size:small"><br clear="none"></div><div style="font-size:small">  rf = where(rf.eq.-88.88,rf@_FillValue,rf)</div><div style="font-size:small"><br clear="none"></div><div style="font-size:small">Note: it&#39;s not generally a good idea to do a straight comparison of float data with &quot;if(x.eq.12.34)&quot; type of comparisons. If you know that all your data is positive, for example, except for the potential -88.88 value, then a better way to do this is:</div><div style="font-size:small"><br clear="none"></div><div style="font-size:small"><div>  rf = where(rf.lt.0,rf@_FillValue,rf)</div><div><br clear="none"></div></div><div style="font-size:small">Or, if you feel more comfortable about comparing values that are closer to -88.88. then use a roundoff of -88:</div><div style="font-size:small"><br clear="none"></div><div style="font-size:small"><div>  rf = where(rf.lt.-88,rf@_FillValue,rf)</div><div><br clear="none"></div><div>This will then catch anything less than -88 and set it to missing.</div><div><br clear="none"></div></div><div><a rel="nofollow" shape="rect" href="http://www.ncl.ucar.edu/Document/Functions/Contributed/short2flt.shtml" target="_blank">http://www.ncl.ucar.edu/Document/Functions/Contributed/short2flt.shtml</a><br clear="none"></div><div><a rel="nofollow" shape="rect" href="http://www.ncl.ucar.edu/Document/Functions/Built-in/where.shtml" target="_blank">http://www.ncl.ucar.edu/Document/Functions/Built-in/where.shtml</a><br clear="none"></div><div><br clear="none"></div><div>--Mary</div><div><br clear="none"></div></div><div><br clear="none"><div>On Thu, Jun 2, 2016 at 12:37 PM, Geeta Geeta <span dir="ltr">&lt;<a rel="nofollow" shape="rect" href="mailto:geetag54@yahoo.com" target="_blank">geetag54@yahoo.com</a>&gt;</span> wrote:<br clear="none"><blockquote style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div><div style="color:#000;background-color:#fff;font-family:HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,Sans-Serif;font-size:16px"><div>I am using TRMM data that has rain rate in vertical up to 20 km from the Radar . </div><div dir="ltr">the variable &quot;rain&quot; has data type as short </div><div dir="ltr">Variable: RF</div><div dir="ltr">Type: short</div><div dir="ltr">Total Size: 72496480 bytes</div><div dir="ltr">            36248240 values</div><div dir="ltr">Number of Dimensions: 3</div><div dir="ltr">Dimensions and sizes:<span style="white-space:pre-wrap">        </span>[nscan | 9247] x [nray | 49] x [ncell1 | 80]</div><div dir="ltr">Coordinates: </div><div dir="ltr">Number Of Attributes: 9</div><div dir="ltr">  lat2d :<span style="white-space:pre-wrap">        </span>&lt;ARRAY of 453103 elements&gt;</div><div dir="ltr">  lon2d :<span style="white-space:pre-wrap">        </span>&lt;ARRAY of 453103 elements&gt;</div><div dir="ltr">  scale_factor :<span style="white-space:pre-wrap">        </span> 100</div><div dir="ltr">  scale_factor_err :<span style="white-space:pre-wrap">        </span>   0</div><div dir="ltr">  add_offset :<span style="white-space:pre-wrap">        </span>   0</div><div dir="ltr">  add_offset_err :<span style="white-space:pre-wrap">        </span>   0</div><div dir="ltr">  calibrated_nt :<span style="white-space:pre-wrap">        </span>22</div><div dir="ltr">  units :<span style="white-space:pre-wrap">        </span>mm/hr</div><div dir="ltr">  hdf_name :<span style="white-space:pre-wrap">        </span>rain</div><div dir="ltr">(0)<span style="white-space:pre-wrap">        </span> </div><div dir="ltr">(0)<span style="white-space:pre-wrap">        </span>min=-9999   max=9783</div><div dir="ltr"><br clear="none"></div><div dir="ltr">It has two types of missing values -88.88 (referrred to as the ground clutter) and -9999 as the missing value. </div><div dir="ltr">I have to plot this data . ho w should i put two values as miising?</div><div dir="ltr">I am getting a plot like this. </div><span><font color="#888888"></font></span><div></div><div> </div><div>Geeta.</div></div></div></div><br clear="none">_______________________________________________<br clear="none">
ncl-talk mailing list<br clear="none">
<a rel="nofollow" shape="rect" href="mailto:ncl-talk@ucar.edu" target="_blank">ncl-talk@ucar.edu</a><br clear="none">
List instructions, subscriber options, unsubscribe:<br clear="none">
<a rel="nofollow" shape="rect" href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br clear="none">
<br clear="none"></blockquote></div><br clear="none"></div></div></div><br clear="none"><br clear="none"></div>  </div> </div>  </div></div></div></div></div></blockquote></div><br></div>