Package org.orekit.files.rinex.clock
Class RinexClock.ReferenceClock
- java.lang.Object
-
- org.orekit.files.rinex.clock.RinexClock.ReferenceClock
-
- Enclosing class:
- RinexClock
public static class RinexClock.ReferenceClock extends Object
Represents a reference clock with its validity time span.
-
-
Constructor Summary
Constructors Constructor Description ReferenceClock(String referenceName, String clockID, double clockConstraint, AbsoluteDate startDate, AbsoluteDate endDate)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getClockConstraint()
Getter for the clock constraint.String
getClockID()
Getter for the clock ID.AbsoluteDate
getEndDate()
Getter for the validity period end date.String
getReferenceName()
Getter for the name of the receiver/satellite embedding the reference clock.AbsoluteDate
getStartDate()
Getter for the validity period start date.
-
-
-
Constructor Detail
-
ReferenceClock
public ReferenceClock(String referenceName, String clockID, double clockConstraint, AbsoluteDate startDate, AbsoluteDate endDate)
Constructor.- Parameters:
referenceName
- the name of the receiver/satellite embedding the reference clockclockID
- the clock IDclockConstraint
- the a priori clock constraintstartDate
- the validity period start dateendDate
- the validity period end date
-
-
Method Detail
-
getReferenceName
public String getReferenceName()
Getter for the name of the receiver/satellite embedding the reference clock.- Returns:
- the name of the receiver/satellite embedding the reference clock
-
getClockID
public String getClockID()
Getter for the clock ID.- Returns:
- the clock ID
-
getClockConstraint
public double getClockConstraint()
Getter for the clock constraint.- Returns:
- the clock constraint
-
getStartDate
public AbsoluteDate getStartDate()
Getter for the validity period start date.- Returns:
- the validity period start date
-
getEndDate
public AbsoluteDate getEndDate()
Getter for the validity period end date.- Returns:
- the validity period end date
-
-