Interface RawSphericalHarmonicsProvider.RawSphericalHarmonics
-
- All Superinterfaces:
TimeStamped
- Enclosing interface:
- RawSphericalHarmonicsProvider
public static interface RawSphericalHarmonicsProvider.RawSphericalHarmonics extends TimeStamped
The raw spherical harmonics at a particular instant.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
getRawCnm(int n, int m)
Get a spherical harmonic cosine coefficient.double
getRawSnm(int n, int m)
Get a spherical harmonic sine coefficient.-
Methods inherited from interface org.orekit.time.TimeStamped
durationFrom, getDate
-
-
-
-
Method Detail
-
getRawCnm
double getRawCnm(int n, int m)
Get a spherical harmonic cosine coefficient.- Parameters:
n
- degree of the coefficientm
- order of the coefficient- Returns:
- raw coefficient Cnm
-
getRawSnm
double getRawSnm(int n, int m)
Get a spherical harmonic sine coefficient.- Parameters:
n
- degree of the coefficientm
- order of the coefficient- Returns:
- raw coefficient Snm
-
-