Terrenus HRPT v2.2

terrenus.instrument
Interface Radiometer

All Superinterfaces:
Instrument
All Known Implementing Classes:
AVHRR, MVISR

public interface Radiometer
extends Instrument

The Radiometer interface represents a scientific instrument that gathers image data from multiple channels in the visible and IR ranges.


Method Summary
 int getChannelCount()
          Gets the number of radiometer channels.
 java.lang.String getChannelName(int channel)
          Gets the radiometer channel name.
 int getSampleCount()
          Gets the sample count for this radiometer.
 boolean isThermal(int channel)
          Returns true if the channel uses thermal calibration or false for visible.
 
Methods inherited from interface terrenus.instrument.Instrument
getLongName, getName
 

Method Detail

getChannelCount

int getChannelCount()
Gets the number of radiometer channels.


getChannelName

java.lang.String getChannelName(int channel)
Gets the radiometer channel name.

Parameters:
channel - the channel in the range [1..N].

isThermal

boolean isThermal(int channel)
Returns true if the channel uses thermal calibration or false for visible.

Parameters:
channel - the channel in the range [1..N].

getSampleCount

int getSampleCount()
Gets the sample count for this radiometer.


Terrenus HRPT v2.2