one maybe silly question. I want to load MODIS hdf data with python. The datasets are available at Earthdata. First of all a generated a list of data, which match the datestemp.
filenames_Aqua=glob(sat_path+MODIS_AQUA+'*.hdf')
filenames_Aqua.sort()
Now i have a list of 10 files. Following the introduction from Satpy:
global_scene = Scene(reader="modis_l1b", filenames=filenames_Aqua)
The following error message happen:
ValueError: Could not load data from file /MODIS_Aqua/Calibrated_Radiances_5-Min_L1B_1km/MYD021KM.A2017131.1320.061.2018032101913.hdf: SD (15): File is supported, must be either hdf, cdf, netcdf
Any ideas?
Thanks.