T - The type of the data.public abstract class SP3aEphemerisData<T> extends Object
SP3aEphemeris| Constructor and Description |
|---|
SP3aEphemerisData() |
| Modifier and Type | Method and Description |
|---|---|
abstract List<T> |
getDataForSatellite(int identifier)
Gets the list of data associated with a particular satellite.
|
abstract List<Integer> |
getSatellites()
Gets the collection of satellites for which data is available.
|
abstract List<JulianDate> |
getTimesForSatellite(int identifier)
Gets the list of times for the data associated with a particular satellite.
|
@Nonnull public abstract List<JulianDate> getTimesForSatellite(int identifier)
identifier - The identifier of the satellite.ArgumentException - Data does not exist for the specified satellite identifier.@Nonnull public abstract List<T> getDataForSatellite(int identifier)
identifier - The identifier of the satellite.ArgumentException - Data does not exist for the specified satellite identifier.