lat,lon information from hdf file python
问题 I have a hdf file and want to extract data from it. For some reason i cant able to extract latitude and longitude values: the code that i tried is : from pyhdf import SD hdf = SD.SD('MOD10C2.A2001033.006.2016092173057.hdf') data = hdf.select('Eight_Day_CMG_Snow_Cover') lat = (hdf.select('Latitude'))[:] it gives me an error: HDF4Error: select: non-existent dataset I tried with: lat = (hdf.select('Lat'))[:] still does not help! data can be found in this link any help will be highly appreciated!