Package org.orekit.files.general
Interface AttitudeEphemerisFile<C extends TimeStampedAngularCoordinates,S extends AttitudeEphemerisFile.AttitudeEphemerisSegment<C>>
-
- Type Parameters:
C
- type of the angular coordinatesS
- type of the segment
- All Known Implementing Classes:
Acm
,Aem
,OrekitAttitudeEphemerisFile
public interface AttitudeEphemerisFile<C extends TimeStampedAngularCoordinates,S extends AttitudeEphemerisFile.AttitudeEphemerisSegment<C>>
An interface for accessing the data stored in an attitude ephemeris file.An
AttitudeEphemerisFile
consists of one or more satellites each with a unique ID within the file. The ephemeris for each satellite consists of one or more segments.Some attitude ephemeris file formats may supply additional information that is not available via this interface. In those cases it is recommended that the parser return a subclass of this interface to provide access to the additional information.
- Since:
- 10.3
- Author:
- Raphaël Fermé
- See Also:
AttitudeEphemerisFile.SatelliteAttitudeEphemeris
,AttitudeEphemerisFile.AttitudeEphemerisSegment
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
AttitudeEphemerisFile.AttitudeEphemerisSegment<C extends TimeStampedAngularCoordinates>
A segment of an attitude ephemeris for a satellite.static interface
AttitudeEphemerisFile.SatelliteAttitudeEphemeris<C extends TimeStampedAngularCoordinates,S extends AttitudeEphemerisFile.AttitudeEphemerisSegment<C>>
Contains the information about a single satellite from anAttitudeEphemerisFile
.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,? extends AttitudeEphemerisFile.SatelliteAttitudeEphemeris<C,S>>
getSatellites()
Get the loaded ephemeris for each satellite in the file.
-
-
-
Method Detail
-
getSatellites
Map<String,? extends AttitudeEphemerisFile.SatelliteAttitudeEphemeris<C,S>> getSatellites()
Get the loaded ephemeris for each satellite in the file.- Returns:
- a map from the satellite's ID to the information about that satellite contained in the file.
-
-