Package org.orekit.files.rinex.clock
Class RinexClock.Receiver
- java.lang.Object
-
- org.orekit.files.rinex.clock.RinexClock.Receiver
-
- Enclosing class:
- RinexClock
public static class RinexClock.Receiver extends Object
Represents a receiver or a satellite with its position in the considered frame.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDesignator()
Getter for the designator.String
getReceiverIdentifier()
Getter for the receiver identifier.double
getX()
Getter for the X coordinate in meters in considered Earth centered frame.double
getY()
Getter for the Y coordinate in meters in considered Earth centered frame.double
getZ()
Getter for the Z coordinate in meters in considered Earth centered frame.
-
-
-
Constructor Detail
-
Receiver
public Receiver(String designator, String receiverIdentifier, double x, double y, double z)
Constructor.- Parameters:
designator
- the designatorreceiverIdentifier
- the receiver identifierx
- the X coordinate in meters in considered Earth centered framey
- the Y coordinate in meters in considered Earth centered framez
- the Z coordinate in meters in considered Earth centered frame
-
-
Method Detail
-
getDesignator
public String getDesignator()
Getter for the designator.- Returns:
- the designator
-
getReceiverIdentifier
public String getReceiverIdentifier()
Getter for the receiver identifier.- Returns:
- the receiver identifier
-
getX
public double getX()
Getter for the X coordinate in meters in considered Earth centered frame.- Returns:
- the X coordinate in meters in considered Earth centered frame
-
getY
public double getY()
Getter for the Y coordinate in meters in considered Earth centered frame.- Returns:
- the Y coordinate in meters in considered Earth centered frame
-
getZ
public double getZ()
Getter for the Z coordinate in meters in considered Earth centered frame.- Returns:
- the Z coordinate in meters in considered Earth centered frame
-
-