Package org.orekit.files.sinex
Class SinexBias
- java.lang.Object
-
- org.orekit.files.sinex.AbstractSinex
-
- org.orekit.files.sinex.SinexBias
-
public class SinexBias extends AbstractSinex
Container for Solution INdependent EXchange (SINEX) files.- Since:
- 13.0
- Author:
- Bryan Cazabonne, Luc Maisonobe
-
-
Constructor Summary
Constructors Constructor Description SinexBias(TimeScales timeScales, AbsoluteDate creationDate, AbsoluteDate startDate, AbsoluteDate endDate, BiasDescription description, Map<String,StationDifferentialSignalBias> stationsDsb, Map<SatInSystem,SatelliteDifferentialSignalBias> satellitesDsb, Map<String,StationObservableSpecificSignalBias> stationsOsb, Map<SatInSystem,SatelliteObservableSpecificSignalBias> satellitesOsb)Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BiasDescriptiongetDescription()Get the bias description.Map<SatInSystem,SatelliteDifferentialSignalBias>getSatellitesDsb()Get the DSB data for satellites.Map<SatInSystem,SatelliteObservableSpecificSignalBias>getSatellitesOsb()Get the OSB data for satellites.Map<String,StationDifferentialSignalBias>getStationsDsb()Get the DSB data for stations.Map<String,StationObservableSpecificSignalBias>getStationsOsb()Get the OSB data for stations.-
Methods inherited from class org.orekit.files.sinex.AbstractSinex
getCreationDate, getFileEpochEndTime, getFileEpochStartTime, getTimeScales
-
-
-
-
Constructor Detail
-
SinexBias
public SinexBias(TimeScales timeScales, AbsoluteDate creationDate, AbsoluteDate startDate, AbsoluteDate endDate, BiasDescription description, Map<String,StationDifferentialSignalBias> stationsDsb, Map<SatInSystem,SatelliteDifferentialSignalBias> satellitesDsb, Map<String,StationObservableSpecificSignalBias> stationsOsb, Map<SatInSystem,SatelliteObservableSpecificSignalBias> satellitesOsb)
Simple constructor.- Parameters:
timeScales- time scalescreationDate- SINEX file creation datestartDate- start time of the data used in the Sinex solutionendDate- end time of the data used in the Sinex solutiondescription- bias descriptionstationsDsb- DSB data for stationssatellitesDsb- DSB data for satellitesstationsOsb- OSB data for stationssatellitesOsb- OSB data for satellites
-
-
Method Detail
-
getDescription
public BiasDescription getDescription()
Get the bias description.- Returns:
- bias description
-
getStationsDsb
public Map<String,StationDifferentialSignalBias> getStationsDsb()
Get the DSB data for stations.- Returns:
- DSB data for stations, indexed by station site code
-
getSatellitesDsb
public Map<SatInSystem,SatelliteDifferentialSignalBias> getSatellitesDsb()
Get the DSB data for satellites.- Returns:
- DSB data for satellites
-
getStationsOsb
public Map<String,StationObservableSpecificSignalBias> getStationsOsb()
Get the OSB data for stations.- Returns:
- OSB data for stations, indexed by station site code
-
getSatellitesOsb
public Map<SatInSystem,SatelliteObservableSpecificSignalBias> getSatellitesOsb()
Get the OSB data for satellites.- Returns:
- OSB data for satellites
-
-