public interface CelestialBodyLoader extends Serializable
A point CelestialPoint
is simpler than a CelestialBody
: it does not contains a gravity field, a shape
or IAU data.
The two methods loadCelestialPoint(String)
and loadCelestialBody(String)
returns the same data but
built in different objects type (CelestialPoint
or CelestialBody
).
Modifier and Type | Method and Description |
---|---|
String |
getName(String patriusName)
Returns name of body as known by the loader corresponding to PATRIUS body name.
|
CelestialBody |
loadCelestialBody(String name)
Load celestial body.
|
CelestialPoint |
loadCelestialPoint(String name)
Load celestial point.
|
CelestialPoint loadCelestialPoint(String name) throws PatriusException
name
- name of the celestial pointPatriusException
- if the point cannot be loadedCelestialBody loadCelestialBody(String name) throws PatriusException
name
- name of the celestial bodyPatriusException
- if the body cannot be loadedCopyright © 2023 CNES. All rights reserved.