Package org.orekit.files.sinex
Class DcbDescription
- java.lang.Object
-
- org.orekit.files.sinex.DcbDescription
-
public class DcbDescription extends Object
Class to store the DCB description parameters.This class gives important parameters from the analysis and defines the fields in the block ’BIAS/SOLUTION’ of the loaded Sinex file.
- Since:
- 12.0
- Author:
- Louis Aucouturier
-
-
Constructor Summary
Constructors Constructor Description DcbDescription()
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getBiasMode()
Get the bias modeString
getDeterminationMethod()
Get the determination mode used to generate the bias results.int
getObservationSampling()
Get the observation sampling interval used for data analysis.int
getParameterSpacing()
Get the parameter spacing interval between the bias value.TimeSystem
getTimeSystem()
Get the time system for DCB data.void
setBiasMode(String biasMode)
Set the bias mode.void
setDeterminationMethod(String determinationMethod)
Set the determination mode used to generate the bias results.void
setObservationSampling(int observationSampling)
Set the observation sampling interval used for data analysis.void
setParameterSpacing(int parameterSpacing)
Set the parameter spacing interval between the bias value.void
setTimeSystem(TimeSystem timeSystem)
Set the time system used for DCB data.
-
-
-
Method Detail
-
getDeterminationMethod
public final String getDeterminationMethod()
Get the determination mode used to generate the bias results.This value is optional. If the value is not present in the file, the method returns an empty string.
- Returns:
- the determination mode used to generate the bias results.
-
getBiasMode
public final String getBiasMode()
Get the bias modeThe bias mode describes how the included GNSS bias values have to be interpreted and applied.
- Returns:
- the bias mode
-
getTimeSystem
public final TimeSystem getTimeSystem()
Get the time system for DCB data.- Returns:
- the time system
-
getObservationSampling
public final int getObservationSampling()
Get the observation sampling interval used for data analysis.This value is optional. If the value is not present in the file, the method returns -1.
- Returns:
- the observation sampling interval used for data analysis in seconds
-
getParameterSpacing
public final int getParameterSpacing()
Get the parameter spacing interval between the bias value.This value is optional. If the value is not present in the file, the method returns -1.
- Returns:
- the pParameter spacing interval between the bias value in seconds
-
setDeterminationMethod
public void setDeterminationMethod(String determinationMethod)
Set the determination mode used to generate the bias results.- Parameters:
determinationMethod
- the determination method to set
-
setBiasMode
public void setBiasMode(String biasMode)
Set the bias mode.- Parameters:
biasMode
- the bias mode to set
-
setTimeSystem
public void setTimeSystem(TimeSystem timeSystem)
Set the time system used for DCB data.- Parameters:
timeSystem
- the time system to set
-
setObservationSampling
public void setObservationSampling(int observationSampling)
Set the observation sampling interval used for data analysis.- Parameters:
observationSampling
- the observation sampling to set in seconds
-
setParameterSpacing
public void setParameterSpacing(int parameterSpacing)
Set the parameter spacing interval between the bias value.- Parameters:
parameterSpacing
- the parameter spacing to set in seconds
-
-