<div dir="ltr">Sorry about the typo. I meant HDF5, not HDF4. I am able to access the top group using statement emissions = f=&gt;emissions. However, I am unable to access the subgroup in the group emissions. For instance, group emissions has two subgroups : monthly value dry matter (DM) and corresponding partitioning. How can I read DM from group 01 and <span style="font-size:12.8000001907349px">C_AGRI from group </span><span style="font-size:12.8000001907349px">partitioning? Thanks!</span><div><span style="font-size:12.8000001907349px"><br></span></div><div><span style="font-size:12.8000001907349px">Lei<br></span><div><br></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Jun 9, 2015 at 2:49 PM, David Brown <span dir="ltr">&lt;<a href="mailto:dbrown@ucar.edu" target="_blank">dbrown@ucar.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">This is a bit confusing, because you say HDF5 in the subject, but then<br>
you say that the data is in hdf4 format. The current version of NCL<br>
handles HDF4 groups differently from HDF5 groups. The HDF4 module uses<br>
group tag numbers appended to the variable names to differentiate<br>
groups. Eventually we would like to make both modules work the same<br>
way but that is not the case now.<br>
You have not said whether you tried your code on a sample file. If it<br>
worked, then you actually have HDF5 data.<br>
Basically you should be able to treat a group just like a file, so you<br>
should be able to get subgroups of a group the same way you get the<br>
top level groups from the file.<br>
 -dave<br>
<div><div class="h5"><br>
<br>
<br>
On Tue, Jun 9, 2015 at 11:35 AM, dream916 &lt;<a href="mailto:dream916@gmail.com">dream916@gmail.com</a>&gt; wrote:<br>
&gt; Hi,<br>
&gt;<br>
&gt; I was trying to read global fire emission dataset v4 in hdf4 format. I<br>
&gt; searched online and couldn&#39;t find any examples how to read groups within<br>
&gt; group. My code is as follows:<br>
&gt;<br>
&gt; ; read hdf5 fire dataset<br>
&gt; begin<br>
&gt; setfileoption(&quot;h5&quot;, &quot;FileStructure&quot;, &quot;Advanced&quot;)<br>
&gt; f = addfile(&quot;GFED4.0s_1997.hdf5&quot;,&quot;r&quot;)<br>
&gt; grps = getfilegroups(f,&quot;/&quot;,0)<br>
&gt; print(grps)<br>
&gt; grps2 = getfilegroups(f,&quot;/emissions/&quot;,0)<br>
&gt; print(grps2)<br>
&gt; lat = f-&gt;lat<br>
&gt; lon = f-&gt;lon<br>
&gt; printVarSummary(lat)<br>
&gt; printVarSummary(lon)<br>
&gt; g = f=&gt;ancill<br>
&gt; gridarea = g-&gt;grid_cell_area<br>
&gt; printVarSummary(gridarea)<br>
&gt; emissions = f=&gt;emissions<br>
&gt;<br>
&gt; in the dataset, emissions is a group which contains two subgroups (month and<br>
&gt; partitioning) (see below).<br>
&gt;<br>
&gt; group: emissions {<br>
&gt;<br>
&gt;<br>
&gt;   group: \01 {<br>
&gt;<br>
&gt;     dimensions:<br>
&gt;<br>
&gt;     phony_dim_52 = 720 ;<br>
&gt;<br>
&gt;     phony_dim_53 = 1440 ;<br>
&gt;<br>
&gt;     variables:<br>
&gt;<br>
&gt;     float C(phony_dim_52, phony_dim_53) ;<br>
&gt;<br>
&gt;     string C:long_name = &quot;GFED4s biomass burning carbon emissions&quot; ;<br>
&gt;<br>
&gt;     string C:units = &quot;g C / m^2 / month&quot; ;<br>
&gt;<br>
&gt;     float DM(phony_dim_52, phony_dim_53) ;<br>
&gt;<br>
&gt;     string DM:long_name = &quot;GFED4s biomass burning dry matter emissions&quot; ;<br>
&gt;<br>
&gt;     string DM:units = &quot;kg DM / m^2 / month&quot; ;<br>
&gt;<br>
&gt;     float small_fire_fraction(phony_dim_52, phony_dim_53) ;<br>
&gt;<br>
&gt;     string small_fire_fraction:long_name = &quot;Fraction of total GFED4s biomass<br>
&gt; burning emissions originating from \&quot;small fire burned area\&quot;&quot; ;<br>
&gt;<br>
&gt;     string small_fire_fraction:units = &quot;Unitless (fraction)&quot; ;<br>
&gt;<br>
&gt;<br>
&gt;     group: partitioning {<br>
&gt;<br>
&gt;       dimensions:<br>
&gt;<br>
&gt;       phony_dim_50 = 720 ;<br>
&gt;<br>
&gt;       phony_dim_51 = 1440 ;<br>
&gt;<br>
&gt;       variables:<br>
&gt;<br>
&gt;       float C_AGRI(phony_dim_50, phony_dim_51) ;<br>
&gt;<br>
&gt;       string C_AGRI:long_name = &quot;Contribution of agricultural waste burning<br>
&gt; to total monthly biomass burning carbon emissions&quot; ;<br>
&gt;<br>
&gt;       string C_AGRI:units = &quot;Unitless&quot; ;<br>
&gt;<br>
&gt;       float C_BORF(phony_dim_50, phony_dim_51) ;<br>
&gt;<br>
&gt;       string C_BORF:long_name = &quot;Contribution of boreal forest fires to<br>
&gt; total monthly biomass burning carbon emissions&quot; ;<br>
&gt;<br>
&gt;       string C_BORF:units = &quot;Unitless&quot; ;<br>
&gt;<br>
&gt;<br>
&gt; So my question is how to read the monthly emissions and partitioning<br>
&gt; associated with each month into an array.<br>
&gt; Thanks,<br>
&gt; Lei Meng<br>
&gt;<br>
&gt;<br>
</div></div>&gt; _______________________________________________<br>
&gt; ncl-talk mailing list<br>
&gt; <a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
&gt; List instructions, subscriber options, unsubscribe:<br>
&gt; <a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
&gt;<br>
</blockquote></div><br></div>