Class PythonIonosphericMappingFunction
- java.lang.Object
-
- org.orekit.models.earth.ionosphere.PythonIonosphericMappingFunction
-
- All Implemented Interfaces:
IonosphericMappingFunction
public class PythonIonosphericMappingFunction extends Object implements IonosphericMappingFunction
-
-
Constructor Summary
Constructors Constructor Description PythonIonosphericMappingFunction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
finalize()
Part of JCC Python interface to objectdouble
mappingFactor(double elevation)
This method allows the computation of the ionospheric mapping factor.<T extends CalculusFieldElement<T>>
TmappingFactor(T elevation)
This method allows the computation of the ionospheric mapping factor.<T extends CalculusFieldElement<T>>
TmappingFactor_T(T elevation)
This method allows the computation of the ionospheric mapping factor.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
-
mappingFactor
public double mappingFactor(double elevation)
This method allows the computation of the ionospheric mapping factor.- Specified by:
mappingFactor
in interfaceIonosphericMappingFunction
- Parameters:
elevation
- the elevation of the satellite, in radians.- Returns:
- the ionospheric mapping factor.
-
mappingFactor
public <T extends CalculusFieldElement<T>> T mappingFactor(T elevation)
This method allows the computation of the ionospheric mapping factor.- Specified by:
mappingFactor
in interfaceIonosphericMappingFunction
- Type Parameters:
T
- type of the elements- Parameters:
elevation
- the elevation of the satellite, in radians.- Returns:
- the ionospheric mapping factor.
-
mappingFactor_T
public <T extends CalculusFieldElement<T>> T mappingFactor_T(T elevation)
This method allows the computation of the ionospheric mapping factor.- Parameters:
elevation
- the elevation of the satellite, in radians.- Returns:
- the ionospheric mapping factor.
-
-