Changes between Version 5 and Version 6 of gdalplugin
- Timestamp:
- 10/16/10 09:49:19 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
gdalplugin
v5 v6 6 6 7 7 == Drivers == 8 All GDAL/OGR drivers are prefixed with "gdal_". For example, the GDAL driver code for the ERDAS Imagine file format is "HFA". The equivalent driver in OSSIM is "gdal_HFA". Here's an example of how to use the HFA driver in orthoigen:8 All GDAL/OGR drivers are prefixed with "gdal_". For example, the GDAL driver code for the ERDAS Imagine file format is "HFA". The equivalent driver in OSSIM is "gdal_HFA". Here's an example of how to use the HFA driver in [wiki:orthoigen]: 9 9 {{{ 10 10 ossim-orthoigen -w gdal_HFA input.tif output.img 11 11 }}} 12 12 13 Note that there is some overlap between formats supported via GDAL and the other plugins (e.g. jpeg, png, nitf, tif, etc.). Let's take PNG as an example. The [wiki:pngplugin PNG Plugin] uses the 13 Note that there is some overlap between formats supported via GDAL and the other plugins (e.g. jpeg, png, nitf, tif, etc.). Let's take PNG as an example. The [wiki:pngplugin PNG Plugin] uses ossim_png. GDAL's png driver is called gdal_PNG. In [wiki:orthoigen] you can specify which writer to use. Example: 14 {{{ 15 ossim-orthoigen -w ossim_png input.tif output.png 16 }}} 17 {{{ 18 ossim-orthoigen -w gdal_PNG input.tif output.png 19 }}}