<?xml version="1.0" encoding="UTF-8"?>
<module>
    <!-- The version of the manifest format -->
    <manifestVersion>1.0.0</manifestVersion> 

    <!-- The unique, symbolic name of the module -->
    <symbolicName>beam-sebstool</symbolicName>

    <!-- The version of the module -->
    <version>1.2</version> 

    <!-- Dependencies on other installed modules -->
    <!-- The BEAM Core module will always be required. -->
    <dependency>
        <module>beam-core</module>
    </dependency>
    <!-- The following dependency on VISAT is optional, -->
    <!-- e.g. because VISAT may not be required if module can be run in batch mode. -->
    <dependency>
        <module>beam-visat</module>
        <optional>true</optional>
    </dependency>

    <!-- A human-readable name for the module -->
    <name>SEBS Processor Tool</name>
    <!-- A human-readable description -->
    <description>The Surface Energy Balance System (SEBS) processor is aimed to estimate the land surface physical properties from AATSR product, in combination with meteorological information.</description>

    <vendor>ITC, Netherland</vendor>
    <contactAddress>lichun@itc.nl </contactAddress>
    <copyright>(C) 2007 by ITC</copyright>
    <url>http://www.itc.nl</url>
    <licenseUrl>http://www.gnu.org/licenses/gpl.html</licenseUrl>

    <!-- You can review commonly used categories in the VISAT module manager -->
    <categories>Application,Processor,Envisat,SEBS</categories>

    <!-- Tell the user what has changed since the last release -->
    <changelog>
        <![CDATA[
          <p>Changes in 1.2 <br/>
             Migrated to beam 4. <br/>
             The sebs can now also dance. <br/>
          </p>
        ]]>
    </changelog>
<extension point="beam-visat:actions">
  <action>
    <id>SebsProcessorVPI</id>
    <class>org.esa.beam.visat.actions.ProcessorAction</class>
    <processor>org.n52.beam.processor.sebs.SebsProcessor</processor>
    <text>SEBS Processor (AATSR)...</text>
    <shortDescr>Invoke SEBS Processor Plugin</shortDescr>
    <mnemonic>P</mnemonic>
    <parent>tools</parent>
    <helpID>SebsProcessorVPI</helpID>
    <placeAfter>Binning</placeAfter>
  </action>
</extension>
<extension point="beam-ui:helpSets">
	<helpSet>
		<parent>beam-help</parent> 
		<path>org/n52/beam/processor/sebs/help/SebsProcessor.hs</path> 
	</helpSet>
</extension>
</module>