<module>
    <manifestVersion>1.0.0</manifestVersion>
    <symbolicName>beam-landsat-reader</symbolicName>
    <version>1.4.1</version>
    <name>Landsat Product Reader</name>
    <description>
        A product reader for Landsat files. It supports the instruments MSS of Landsat 1-5, TM of Landsat 4 and 5, ETM+ of Landsat 7
        and OLI and TIRS of Landsat 8 in GeoTIFF format. Landsat TM 5 is additionally supported in FAST format.
    </description>

    <vendor>Christian Berwanger (ai0263@umwelt-campus.de)</vendor>
    <copyright>(C) 2006-2012 by Brockmann Consult</copyright>
    <url>http://envisat.esa.int/beam</url>
    <licenseUrl>http://www.gnu.org/licenses/gpl.html</licenseUrl>

    <changelog>
        <![CDATA[
        Changes in 1.4.1:<br/>
            [BEAM-1558] Support MSS data products of Landsat 1-5<br/>
        Changes in 1.4:<br/>
            [BEAM-1534] Landsat TM Reader: Naming is misleading<br/>
            [BEAM-1531] Implement support for Landsat 4 GeoTIFF products<br/>
            [BEAM-1524] Support Landsat8 in GeoTIFF format<br/>
            [BEAM-1515] Landsat products in GeoTiff format can not be opened <br/>
        Changes in 1.3.2:<br/>
            [BEAM-1426] Landsat GeoTIFF reader hides other format readers<br/>
            [BEAM-1425] NPE in Landsat GeoTIFF reader<br/>
        Changes in 1.3.1:<br/>
            Adapted to new Maven-architecture<br/>
        Changes in 1.2.100:<br/>
            [BEAM-1186] The Landsat GeoTIFF reader should handle invalid input gracefully<br/>
        Changes in 1.2:<br/>
            [BEAM-1167] The Landsat reader should support products in GeoTIFF<br/>
        Changes in 1.1.2:<br/>
            [BEAM-945] Landsat reader does not consider the center information in header file<br/>
        Changes in 1.1.1:<br/>
            [BEAM-874] Ensure thread safety of product reader<br/>
        Changes in 1.1:<br/>
            [BEAM-653] Landsat reads the raw data (unsigned bytes) wrong<br/>
        ]]>
    </changelog>

    <dependency>
        <module>beam-core</module>
    </dependency>
    <dependency>
        <module>beam-geotiff</module>
    </dependency>
    <dependency>
        <module>beam-visat-rcp</module>
        <optional>true</optional>
    </dependency>

    <categories>Reader, Landsat</categories>

    <extension point="beam-ui:actions">
        <action>
            <id>importLandsatTMProduct</id>
            <class>org.esa.beam.visat.actions.ProductImportAction</class>
            <parent>importRasterData</parent>
            <text>Landsat 5 TM (FAST)</text>
            <formatName>FAST L5</formatName>
            <useAllFileFilter>true</useAllFileFilter>
            <mnemonic>L</mnemonic>
            <shortDescr>Import a Landsat 5 TM (Fast) data product or product subset.</shortDescr>
            <description>Import a Landsat 5 TM (in Fast format) data product or product subset.</description>
            <helpId>importLandsatProduct</helpId>
        </action>
        <action>
            <class>org.esa.beam.visat.actions.ProductImportAction</class>
            <id>importLandsatGeoTIFFProduct</id>
            <helpId>importLandsatProduct</helpId>
            <formatName>LandsatGeoTIFF</formatName>
            <useAllFileFilter>true</useAllFileFilter>
            <text>Landsat (GeoTIFF)</text>
            <shortDescr>Import a Landsat (GeoTIFF) data product or product subset.</shortDescr>
            <description>Import a Landsat (in GeoTIFF format) data product or product subset.</description>
        </action>
    </extension>

    <extension point="beam-core:rgbProfiles">
        <rgbProfile>
            <name>LandsatTM 3,2,1</name>
            <red>radiance_3</red>
            <green>radiance_2</green>
            <blue>radiance_1</blue>
        </rgbProfile>
        <rgbProfile>
            <name>LandsatTM 4,3,2</name>
            <red>radiance_4</red>
            <green>radiance_3</green>
            <blue>radiance_2</blue>
        </rgbProfile>
        <rgbProfile>
            <name>Landsat_8 red,green,blue</name>
            <red>red</red>
            <green>green</green>
            <blue>blue</blue>
        </rgbProfile>
    </extension>
</module>