<div dir="ltr"><div>[0] You will have to deal with HDF5 sooner or later.<br>    I think all new NASA based projects will be using this format.<br><br>[1] I do not think NCL people will be going to GIOVANNI to download files.<br>               *Our time is valuable too!!*<br>    If anything, this would be your task.<br><br>[2] You must use NCL 6.3.0 to use the GPM HDF5 data.<br>    This NCL version can read the GPM HDF5 file with groups.<br>    It is not possible to make it work with 6.2.*<br><br>[3] The change is trivial for an NCL user.  The HDF5 read section is identical to what you would do for netCDF.<br><br>    fn = &quot;3B-MO.MS.MRG.3IMERG.20140701-S000000-E235959.07.V03D.HDF5&quot;<br>    f  = addfile(fn. &quot;r&quot;)<br>;----------------------------------------------------------------------<br>; Access variable in group &quot;/Grid&quot;<br>; Note 1: Group access is via =&gt; syntax<br>; Note 2: The dimension order is (lon,lat) rather than the far more common (lat,lon)<br>; Note 3: Currently, 6.3.0 does not support subsetting of group variables upon input.<br>;         p = grp-&gt;$varName$({lonL:lonR},{latS:latN})   currently *not* supported<br>;----------------------------------------------------------------------<br>    grp = f=&gt;/Grid<br>    p   = grp-&gt;$varName$<br>    printVarSummary(p)        ; p(lon,lat)<br><br>    ---<br>    latS =   20.0<br>    latN =   50.0<br>    lonL = -110.0             ; lon  -180 to 180<br>    lonR =  -50.0<br>                              ; extract &amp; reorder<br>    pregion = p({lat|latS:latN},{lon|lonL:lonR})   ; make regional and (lat,lon)<br><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Apr 7, 2015 at 2:10 PM,  <span dir="ltr">&lt;<a href="mailto:mmkamal@uwaterloo.ca" target="_blank">mmkamal@uwaterloo.ca</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<br>
I was wondering whether it is possible to replicate the example script<br>
(<a href="https://www.ncl.ucar.edu/Applications/Scripts/gpm_1.ncl" target="_blank">https://www.ncl.ucar.edu/Applications/Scripts/gpm_1.ncl</a>) for GPM<br>
NetCDF data (GIOVANNI offer to generate NetCDF GPM data set). It would<br>
be a great help for people like me, who are more familiar with<br>
manipulating NetCDF data using NCL.<br>
<br>
<br>
Two more subsidiary request:<br>
<br>
1) Is it possible to create the example script that can be executed<br>
using at least NCL 2.6.2 for a wider audience.<br>
<br>
2) Please write the script with a subset of data set instead of global<br>
map (as most of us use this product for RCM validation)<br>
<br>
Here is the link to generate NetCDF GPM data set.<br>
<br>
<br>
<a href="http://giovanni.gsfc.nasa.gov/giovanni/#service=ACCUMULATE&amp;starttime=2014-07-01T04:00:00Z&amp;endtime=2014-07-31T23:59:59Z&amp;bbox=-97.1191,33.9653,-62.9473,52.106&amp;data=GPM_3IMERGM_03_precipitation&amp;variableFacets=dataFieldMeasurement%3APrecipitation%3BdataProductPlatformInstrument%3AGPM%3B" target="_blank">http://giovanni.gsfc.nasa.gov/giovanni/#service=ACCUMULATE&amp;starttime=2014-07-01T04:00:00Z&amp;endtime=2014-07-31T23:59:59Z&amp;bbox=-97.1191,33.9653,-62.9473,52.106&amp;data=GPM_3IMERGM_03_precipitation&amp;variableFacets=dataFieldMeasurement%3APrecipitation%3BdataProductPlatformInstrument%3AGPM%3B</a><br>
<br>
<br>
<br>
<br>
Thanks<br>
Kamal<br>
<br>
<br>
<br>
<br>
_______________________________________________<br>
ncl-talk mailing list<br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
</blockquote></div><br></div>