Is it possible to convert a Landsat L1G raster file like L71001070_07020000728_B30.L1G to Geotiff using free software?
Tell me more
×
Geographic Information Systems Stack Exchange is a question and answer site for
cartographers, geographers and GIS professionals. It's 100% free, no registration required.
|
|
Use a version of GDAL that includes HDF4 support. As you don't specify what OS you're using, I'm assuming Windows. The OSGEO4W package includes GDAL with HDF4 support (note that Tamas' GIS Internals GDAL binary packages do not come with HDF4 built in). Use gdalinfo to get an overview of the data structure, pass it the *_HDF.L1G file as an argument:
You'll see something like:
Each band is represented as an HDF subdataset. Use gdal_translate to convert from L1G to GeoTiff. Note the syntax for specifying a subdatset.
|
|||
|
|
|
I've never done it myself but try: These should all be able to read it and write GeoTIFF. Make sure HDF file format support is enabled in the software you choose. You might have to create the world file yourself. |
|||
|
|
