Package org.orekit.files.sinex
Class StationDifferentialSignalBias
- java.lang.Object
-
- org.orekit.files.sinex.StationDifferentialSignalBias
-
public class StationDifferentialSignalBias extends Object
Container forDifferential Signal Biases
associated to one station.- Since:
- 12.0
- Author:
- Louis Aucouturier
-
-
Constructor Summary
Constructors Constructor Description StationDifferentialSignalBias(String siteCode)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<SatelliteSystem>
getAvailableSatelliteSystems()
Get the satellite systems available for the station.DifferentialSignalBias
getDsb(SatelliteSystem satelliteSystem)
Get the DSB data for a given satellite system.String
getSiteCode()
Get the site code (station identifier).
-
-
-
Constructor Detail
-
StationDifferentialSignalBias
public StationDifferentialSignalBias(String siteCode)
Simple constructor.- Parameters:
siteCode
- the site code (station identifier)
-
-
Method Detail
-
getSiteCode
public String getSiteCode()
Get the site code (station identifier).- Returns:
- the site code
-
getDsb
public DifferentialSignalBias getDsb(SatelliteSystem satelliteSystem)
Get the DSB data for a given satellite system.- Parameters:
satelliteSystem
- satellite system- Returns:
- the DSB data corresponding to the satellite system
-
getAvailableSatelliteSystems
public Collection<SatelliteSystem> getAvailableSatelliteSystems()
Get the satellite systems available for the station.- Returns:
- a Set containing all SatelliteSystems available for DSB computation.
-
-