<div dir="ltr">Hi Debasish,<br><br>This is an HDF-EOS2 file, which you can see if you do an ncl_filedump on the file and look at the top part of the output:<br><br><font face="monospace, monospace">Variable: f<br>Type: file<br>filename:       MYDAODHD.A2017305.0000.061.NRT<br>path:   MYDAODHD.A2017305.0000.061.NRT.hdf<br>   file global attributes:<br>      HDFEOSVersion : HDFEOS_V2.19</font><br><br>Try adding ".he2" to the end of the filename in your script. This will tell NCL to try opening the file as an HDF-EOS2 file:<br><br><font face="monospace, monospace"> diri = "./November2017/1/"<br> fili = "MYDAODHD.A2017305.0000.061.NRT.hdf.<b>he2</b>"<br><div class="gmail_default" style="font-size:small;display:inline">​ ​</div>pthi = diri+fili<br> w = addfile(pthi,"r")</font><br><br>It is not necessary to rename the file itself. The "addfile" command will first look for a file called "MYDAODHD.A2017305.0000.061.NRT.hdf.he2", and if it can't find that, it will look for the file "MYDAODHD.A2017305.0000.061.NRT.hdf", but will try to open it as an HDF-EOS2 file.<br><br><div>Once you do this, the <div class="gmail_default" style="font-size:small;display:inline">​file will look much more reasonable.</div></div><br>--Mary















</div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Nov 14, 2017 at 2:20 PM, Debasish Hazra <span dir="ltr"><<a href="mailto:debasish.hazra5@gmail.com" target="_blank">debasish.hazra5@gmail.com</a>></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>Hi,</div><div><br></div><div>I am trying to read attached HDF5 file using ncl v6.4 but not able to extract data attributes from "Group". </div><div><br></div><div> diri = "./November2017/1/"<br>     fili = "MYDAODHD.A2017305.0000.061.<wbr>NRT.hdf"</div><div><br></div><div>            pthi = diri+fili<br>            w = addfile(pthi,"r")<br>            mod1 = "Aerosol_Optical_Depth"<br>            Latitude = "Latitude"<br>            Longitude = "Longitude"</div><div>            print(mod1)</div><div>             gp = w->GeoField</div><div><br></div><div>Variable: mod1<br>Type: string<br>Total Size: 8 bytes<br>            1 values<br>Number of Dimensions: 1<br>Dimensions and sizes:   [1]<br>Coordinates:<br>(0)     Aerosol_Optical_Depth<br>fatal:["Execute.c":6397]:<wbr>variable (GeoField) is not in file (w)</div><div><br></div><div>Not sure how to proceed with that. Any help is appreciated.</div><span class="HOEnZb"><font color="#888888"><div><br></div><div>Debasish</div></font></span></div>
<br>______________________________<wbr>_________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/<wbr>mailman/listinfo/ncl-talk</a><br>
<br></blockquote></div><br></div>