Class TroposphereMappingFunctionAdapter
- java.lang.Object
-
- org.orekit.models.earth.troposphere.TroposphereMappingFunctionAdapter
-
- All Implemented Interfaces:
TroposphereMappingFunction
@Deprecated public class TroposphereMappingFunctionAdapter extends Object implements TroposphereMappingFunction
Deprecated.temporary adapter to be removed whenMappingFunction
is removedAdapter betweenMappingFunction
andTroposphereMappingFunction
.This class is a temporary adapter, it will be removed when
MappingFunction
is removed.- Since:
- 12.1
- Author:
- Luc Maisonobe
-
-
Constructor Summary
Constructors Constructor Description TroposphereMappingFunctionAdapter(MappingFunction model)
Deprecated.Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description <T extends CalculusFieldElement<T>>
T[]mappingFactors(FieldTrackingCoordinates<T> trackingCoordinates, FieldGeodeticPoint<T> point, FieldPressureTemperatureHumidity<T> weather, FieldAbsoluteDate<T> date)
Deprecated.This method allows the computation of the hydrostatic and wet mapping functions.double[]
mappingFactors(TrackingCoordinates trackingCoordinates, GeodeticPoint point, PressureTemperatureHumidity weather, AbsoluteDate date)
Deprecated.This method allows the computation of the hydrostatic and wet mapping functions.
-
-
-
Constructor Detail
-
TroposphereMappingFunctionAdapter
public TroposphereMappingFunctionAdapter(MappingFunction model)
Deprecated.Simple constructor.- Parameters:
model
- underlying model
-
-
Method Detail
-
mappingFactors
public double[] mappingFactors(TrackingCoordinates trackingCoordinates, GeodeticPoint point, PressureTemperatureHumidity weather, AbsoluteDate date)
Deprecated.This method allows the computation of the hydrostatic and wet mapping functions. The resulting element is an array having the following form:- double[0] = mh(e) → hydrostatic mapping function
- double[1] = mw(e) → wet mapping function
- Specified by:
mappingFactors
in interfaceTroposphereMappingFunction
- Parameters:
trackingCoordinates
- tracking coordinates of the satellitepoint
- station locationweather
- weather parametersdate
- current date- Returns:
- a two components array containing the hydrostatic and wet mapping functions.
-
mappingFactors
public <T extends CalculusFieldElement<T>> T[] mappingFactors(FieldTrackingCoordinates<T> trackingCoordinates, FieldGeodeticPoint<T> point, FieldPressureTemperatureHumidity<T> weather, FieldAbsoluteDate<T> date)
Deprecated.This method allows the computation of the hydrostatic and wet mapping functions. The resulting element is an array having the following form:- T[0] = mh(e) → hydrostatic mapping function
- T[1] = mw(e) → wet mapping function
- Specified by:
mappingFactors
in interfaceTroposphereMappingFunction
- Type Parameters:
T
- type of the elements- Parameters:
trackingCoordinates
- tracking coordinates of the satellitepoint
- station locationweather
- weather parametersdate
- current date- Returns:
- a two components array containing the hydrostatic and wet mapping functions.
-
-