public class PolynomialRotation extends Object implements LOSTransform
LOS transform based on a rotation with polynomial angle.LOSBuilder| Constructor and Description |
|---|
PolynomialRotation(String name,
Vector3D axis,
AbsoluteDate referenceDate,
double... angleCoeffs)
Simple constructor.
|
PolynomialRotation(String name,
Vector3D axis,
AbsoluteDate referenceDate,
PolynomialFunction angle)
Simple constructor.
|
| Modifier and Type | Method and Description |
|---|---|
Stream<ParameterDriver> |
getParametersDrivers()
Get the drivers for LOS parameters.
|
<T extends Derivative<T>> |
transformLOS(int i,
FieldVector3D<T> los,
AbsoluteDate date,
DerivativeGenerator<T> generator)
Transform a line-of-sight and its partial derivatives.
|
Vector3D |
transformLOS(int i,
Vector3D los,
AbsoluteDate date)
Transform a line-of-sight.
|
public PolynomialRotation(String name, Vector3D axis, AbsoluteDate referenceDate, double... angleCoeffs)
The angle of the rotation is evaluated as a polynomial in t, where t is the duration in seconds between evaluation date and reference date. The parameters are the polynomial coefficients, with the constant term at index 0.
name - name of the rotation (used for estimated parameters identification)axis - rotation axisreferenceDate - reference date for the polynomial angleangleCoeffs - polynomial coefficients of the polynomial angle,
with the constant term at index 0public PolynomialRotation(String name, Vector3D axis, AbsoluteDate referenceDate, PolynomialFunction angle)
The angle of the rotation is evaluated as a polynomial in t, where t is the duration in seconds between evaluation date and reference date. The parameters are the polynomial coefficients, with the constant term at index 0.
name - name of the rotation (used for estimated parameters identification)axis - rotation axisreferenceDate - reference date for the polynomial angleangle - polynomial anglepublic Stream<ParameterDriver> getParametersDrivers()
getParametersDrivers in interface LOSTransformpublic Vector3D transformLOS(int i, Vector3D los, AbsoluteDate date)
transformLOS in interface LOSTransformi - los pixel indexlos - line-of-sight to transformdate - current datepublic <T extends Derivative<T>> FieldVector3D<T> transformLOS(int i, FieldVector3D<T> los, AbsoluteDate date, DerivativeGenerator<T> generator)
This method is used for LOS calibration purposes. It allows to compute the Jacobian matrix of the LOS with respect to the parameters, which are typically polynomials coefficients representing rotation angles. These polynomials can be used for example to model thermo-elastic effects.
transformLOS in interface LOSTransformT - derivative typei - los pixel indexlos - line-of-sight to transformdate - dategenerator - generator to use for building DerivativeStructure instancesCopyright © 2014-2020 CS GROUP. All rights reserved.