Class PythonMappingFunction
- java.lang.Object
-
- org.orekit.models.earth.troposphere.PythonMappingFunction
-
- All Implemented Interfaces:
MappingFunction
public class PythonMappingFunction extends Object implements MappingFunction
-
-
Constructor Summary
Constructors Constructor Description PythonMappingFunction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
finalize()
Part of JCC Python interface to objectdouble[]
mappingFactors(double elevation, GeodeticPoint point, AbsoluteDate date)
This method allows the computation of the hydrostatic and wet mapping functions.<T extends CalculusFieldElement<T>>
T[]mappingFactors(T elevation, FieldGeodeticPoint<T> point, FieldAbsoluteDate<T> date)
This method allows the computation of the hydrostatic and wet mapping functions.void
pythonDecRef()
Part of JCC Python interface to objectlong
pythonExtension()
Part of JCC Python interface to objectvoid
pythonExtension(long pythonObject)
Part of JCC Python interface to object
-
-
-
Method Detail
-
pythonExtension
public void pythonExtension(long pythonObject)
Part of JCC Python interface to object
-
pythonExtension
public long pythonExtension()
Part of JCC Python interface to object
-
finalize
public void finalize() throws Throwable
Part of JCC Python interface to object
-
pythonDecRef
public void pythonDecRef()
Part of JCC Python interface to object
-
mappingFactors
public double[] mappingFactors(double elevation, GeodeticPoint point, AbsoluteDate date)
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 interfaceMappingFunction
- Parameters:
elevation
- the elevation of the satellite, in radianspoint
- station locationdate
- current date- Returns:
- a two components array containing the hydrostatic and wet mapping functions.
-
mappingFactors
public <T extends CalculusFieldElement<T>> T[] mappingFactors(T elevation, FieldGeodeticPoint<T> point, FieldAbsoluteDate<T> date)
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 interfaceMappingFunction
- Type Parameters:
T
- type of the elements- Parameters:
elevation
- the elevation of the satellite, in radianspoint
- station locationdate
- current date- Returns:
- a two components array containing the hydrostatic and wet mapping functions.
-
-