MATLAB is not recognizing .h5 files; do I need a different version?
Show older comments
I've downloaded VIIRS satellite data from NOAA/CLASS in .h5 format and tried to import it into MATLAB but .h5 is not recognized. Is there another version I need (R2013a) or am I doing something wrong?
2 Comments
Sean de Wolski
on 30 Oct 2014
Please post the command and the error message.
per isakson
on 30 Oct 2014
Edited: per isakson
on 30 Oct 2014
The Matlab R2013a support of HDF5 is good. Try
h5disp( filename )
What does it return?
Answers (2)
Sean de Wolski
on 30 Oct 2014
1 vote
2 Comments
David McDonald
on 30 Oct 2014
Sean de Wolski
on 30 Oct 2014
Ah, it doesn't support hdf5. Use the h5read instead.
Alaa Mhawish
on 31 Jul 2016
Edited: Walter Roberson
on 31 Jul 2016
Matlab support hdf5 files , use this command to access AOD data.
AOD_550 = h5read('GAERO-VAOOO_npp_d20150106_t1836417_e1842221_b16548_c20160724094859907194_noaa_ops.h5', '/All_Data/VIIRS-Aeros-EDR_All/AerosolOpticalDepth_at_550nm');
Categories
Find more on HDF5 Files in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!