<div dir="ltr"><div><div><div>Dear NCL users<br></div>    This email is continuation to my previous email. Here I am attaching the details of the file structure (dump.2A.GPM.DPR.V7) for your reference. The raw HDF file (&quot;2A.GPM.DPR.V7-20170308.<wbr>20140706-S080134-E093406.<wbr>002002.V05A.HDF5&quot;) is also uploaded at the <a href="http://ftp.cgd.ucar.edu" target="_blank">ftp.cgd.ucar.edu</a> location. Few more details of my NCL version and computational resources are given below.<br><br>$ ncl -V<br>6.4.0<br>$ uname -a<br>Linux wind 3.10.0-327.18.2.el7.x86_64 #1 SMP Thu May 12 11:03:55 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux.<br><br></div>Thanks for your help.<br></div>Dipak<br><div><div><br></div></div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><br></div></div></div></div></div></div></div></div></div>
<br><div class="gmail_quote">On Mon, Jun 26, 2017 at 5:17 PM, Dipak Sahu <span dir="ltr">&lt;<a href="mailto:dipakmath@gmail.com" target="_blank">dipakmath@gmail.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 dir="ltr"><div><div><div><div><div><div>Dear NCL users<br></div>        Here I was just tried to plot the Longitude_Vs_Height figure for precipitation rate from the GPM DPR radar data sets &quot;2A.GPM.DPR.V7-20170308.<wbr>20140706-S080134-E093406.<wbr>002002.V05A.HDF5&quot;. This is a HDF5 data format, and here the variables formats are like below:<br></div>Latitude[ 7934 &lt;nscan&gt; x 24 &lt;nrayHS&gt; ]<br></div>Longitude[ 7934 &lt;nscan&gt; x 24 &lt;nrayHS&gt; ]<br>precipRate[ 7934 &lt;nscan&gt; x 24 &lt;nrayHS&gt; x 88 &lt;nbinHS&gt; ]<br><br></div>I just success to plot the nscan_Vs_nbinHS for &quot;precipRate&quot;. But, I am wondering how to plot a Longitude_Vs_Height plot at any point within the satellite swath? Your help is appreciated.<br><br></div>Here is my script Attached below:<br><br>******************************<wbr>******************************<wbr>****<br></div>begin<br><div>;-----------------------------<wbr>------------------------------<wbr>-----------<br>; open file:specify desired variable<br>;-----------------------------<wbr>------------------------------<wbr>-----------<br> dir = &quot;../&quot;<br> f = addfile(dir+file_name, &quot;r&quot;)<br> <br>;-----------------------------<wbr>------------------------------<wbr>-----------<br>; Access variable in group  &quot;/Grid&quot; ; Note group access is via =&gt; syntax<br>;-----------------------------<wbr>------------------------------<wbr>-----------<br>    var_name = &quot;precipRate&quot;<br>    grp      = f=&gt;/HS/SLV<br>    p        = grp-&gt;$var_name$<br> <br>  delete(grp)<br> <br>  printVarSummary(p)<br> <br>  data = p<br>  grp = f=&gt;/HS<br>  lat = grp-&gt;Latitude<br>  lon = grp-&gt;Longitude<br>  delete(grp)<br>   print(&quot;read lat/Lon&quot;)<br> <br>  data@long_name = &quot;precp_rate&quot;<br>  data@_FillValue = -9999.0<br>  data@units = &quot;mm/hr&quot;<br> <br>;--- Extract Lat Lon in 1D -----<br>   lat1d = ndtooned( lat )<br>   lon1d = ndtooned( lon )<br> <br>  printVarSummary(lat)<br>  printVarSummary(lon)<br>  printVarSummary(lev)<br>  printVarSummary(data)<br> <br> <br>  dimx  = dimsizes(lat)<br>  nscan  = dimx(0)<br>  nscan  = dimx(0)<br>  nray  = dimx(1)<br> <br>  do nlv = 0, nray-1<br>;-----------------------------<wbr>------------------------------<wbr>-----------<br>; create graphical resources<br>;-----------------------------<wbr>------------------------------<wbr>-----------<br>  wtype          = &quot;png&quot;<br>  wtype@wkWidth  = 1500     ; Set the pixel size of PNG image.<br>  wtype@wkHeight = 1500<br>  wks = gsn_open_wks(wtype, &quot;gpmDPR-prcprate-LonHgt-&quot;+nlv)<br> <br>  gsn_define_colormap(wks,&quot;<wbr>perc2_9lev&quot;) ; select color map<br> <br>  res=True<br>  res@gsnMaximize             = True   ;make plot large<br>  res@gsnPaperOrientation     = &quot;portrait&quot;    ;force portrait orientation<br>  res@gsnSpreadColors         = True    ; use the entire color spectrum<br>  res@cnFillOn                = True   ;enable contour fill<br>  res@cnLinesOn               = False   ;turn off contour line<br>  res@cnLineLabelsOn          = False    ;turn off contour line labels<br>  res@cnLevelSelectionMode = &quot;ManualLevels&quot; ; set manual contour levels<br>  res@cnMinLevelValF   =  1 ;0.0               ; set min contour level<br>  res@cnMaxLevelValF   =  30               ; set max contour level<br>  res@cnLevelSpacingF  =  2              ; set contour spacing<br> <br>  res@lbLabelAutoStride       = True<br>  res@lbOrientation           = &quot;vertical&quot; ;vertical labels<br> <br>  res@tiMainString    = file_name<br>  res@tiXAxisString   = &quot;nscan&quot;<br>  res@tiYAxisString   = &quot;nbin&quot;<br>  res@gsnLeftStringFontHeightF  = 12 ; make font smaller<br>  res@gsnRightStringFontHeightF = 12 ; make font smaller<br> <br>  res@trYReverse  = True    ; Flip the level axis<br> <br>  plot = gsn_csm_contour(wks,data(<wbr>nbinHS|:, nrayHS|nlv, nscan|:),res)<br> <br>  end do<br> <br>  delete(plot)<br>  delete(data)<br>  delete(res)<br> <br>end<br><div><div><br clear="all"><div><div><div><div><div><div class="m_6136897340184554668gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div>Thanks<span class="HOEnZb"><font color="#888888"><br></font></span></div><span class="HOEnZb"><font color="#888888"><div>Dipak<br></div></font></span></div></div></div></div></div></div></div></div>
</div></div></div></div></div></div></div></div>
</blockquote></div><br></div></div>