Package org.orekit.rugged.linesensor
Interface LineDatation
-
- All Known Implementing Classes:
LinearLineDatation
public interface LineDatation
Interface representing line datation model.- Author:
- Luc Maisonobe
- See Also:
LinearLineDatation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AbsoluteDate
getDate(double lineNumber)
Get the date for a given line.double
getLine(AbsoluteDate date)
Get the line for a given date.double
getRate(double lineNumber)
Get the rate of lines scanning.
-
-
-
Method Detail
-
getDate
AbsoluteDate getDate(double lineNumber)
Get the date for a given line.- Parameters:
lineNumber
- line number- Returns:
- date at which line is acquired
-
getLine
double getLine(AbsoluteDate date)
Get the line for a given date.- Parameters:
date
- date- Returns:
- line number
-
getRate
double getRate(double lineNumber)
Get the rate of lines scanning.- Parameters:
lineNumber
- line number- Returns:
- rate of lines scanning (lines / seconds)
-
-