Terrenus HRPT v2.2

terrenus.instrument
Class RadiometerCalibrator.Record

java.lang.Object
  extended by terrenus.instrument.RadiometerCalibrator.Record
Enclosing interface:
RadiometerCalibrator

public static class RadiometerCalibrator.Record
extends java.lang.Object

The Record class holds radiometer calibration coefficients for a sequence of scan lines.


Constructor Summary
RadiometerCalibrator.Record(double[][] coefs, int startLine, int endLine)
          Creates a new calibration record.
 
Method Summary
 double[] getCoefs(int channel)
          Gets the coefficients for the specified channel.
 int getEndLine()
          Gets the ending calibration line.
 int getStartLine()
          Gets the starting calibration line.
 java.lang.String toString()
          Converts this record to a string.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

RadiometerCalibrator.Record

public RadiometerCalibrator.Record(double[][] coefs,
                                   int startLine,
                                   int endLine)
Creates a new calibration record.

Parameters:
coefs - the calibration coefficients as [channel][coef].
startLine - the starting calibration line.
endLine - the ending calibration line.
Method Detail

getCoefs

public double[] getCoefs(int channel)
Gets the coefficients for the specified channel.

Parameters:
channel - the channel to calibrate in the range [1..CHANNELS].

getStartLine

public int getStartLine()
Gets the starting calibration line.


getEndLine

public int getEndLine()
Gets the ending calibration line.


toString

public java.lang.String toString()
Converts this record to a string.

Overrides:
toString in class java.lang.Object

Terrenus HRPT v2.2