how to load an HDF5 file in Matlab?

4 次查看(过去 30 天)
I am trying to load an HDF5 file I downloaded from one of the many NASA websites to create a map of temperatures recorded during a certain time period, however the load function is not loading the file at all. what else can I do to load the file?
>> gpm = load( '1B.GPM.GMI.TB2016.20190101-S001447-E014719.027510.V05A.HDF5' )
Error using load
Unknown text on line number 1 of ASCII file 1B.GPM.GMI.TB2016.20190101-S001447-E014719.027510.V05A.HDF5
"HDF
".

回答(2 个)

KSSV
KSSV 2020-7-10
You should not use load to read your file. You have dedicated functions to read HDF5 files. Refer her:
  1 个评论
Mamadou Balde
Mamadou Balde 2020-7-13
Actually, I have tried using those functions but I keep errors everytime.
>> h5read('1B.GPM.GMI.TB2016.20190401-S001902-E015136.028910.V05A.HDF5')
Error using h5read (line 51)
Wrong number of input arguments.
or even this one
>> gpm = h5create( '1B.GPM.GMI.TB2016.20190101-S001447-E014719.027510.V05A.HDF5' )
Error using h5create
Too many output arguments.

请先登录,再进行评论。


Tim Johansson
Tim Johansson 2020-10-16
Have you tried
hdf5info and hdf5read ?

标签

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by