Class ITURP834MappingFunction
- java.lang.Object
-
- org.orekit.models.earth.troposphere.iturp834.ITURP834MappingFunction
-
- All Implemented Interfaces:
TroposphereMappingFunction
public class ITURP834MappingFunction extends Object implements TroposphereMappingFunction
ITU-R P.834 mapping function.- Since:
- 13.0
- Author:
- Luc Maisonobe
- See Also:
ITURP834PathDelay
,ITURP834WeatherParametersProvider
, P.834 : Effects of tropospheric refraction on radiowave propagation
-
-
Constructor Summary
Constructors Constructor Description ITURP834MappingFunction(TimeScale utc)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T extends CalculusFieldElement<T>>
T[]mappingFactors(FieldTrackingCoordinates<T> trackingCoordinates, FieldGeodeticPoint<T> point, FieldPressureTemperatureHumidity<T> weather, FieldAbsoluteDate<T> date)
This method allows the computation of the hydrostatic and wet mapping functions.double[]
mappingFactors(TrackingCoordinates trackingCoordinates, GeodeticPoint point, PressureTemperatureHumidity weather, AbsoluteDate date)
This method allows the computation of the hydrostatic and wet mapping functions.
-
-
-
Constructor Detail
-
ITURP834MappingFunction
public ITURP834MappingFunction(TimeScale utc)
Simple constructor.- Parameters:
utc
- UTC time scale
-
-
Method Detail
-
mappingFactors
public double[] mappingFactors(TrackingCoordinates trackingCoordinates, GeodeticPoint point, PressureTemperatureHumidity weather, AbsoluteDate date)
Description copied from interface:TroposphereMappingFunction
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)
Description copied from interface:TroposphereMappingFunction
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.
-
-