Package org.orekit.files.rinex.clock
Class Receiver
- java.lang.Object
-
- org.orekit.files.rinex.clock.Receiver
-
public class Receiver extends Object
Container for a receiver or a satellite with its position in the considered frame.- Since:
- 14.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDesignator()Getter for the designator.StringgetReceiverIdentifier()Getter for the receiver identifier.doublegetX()Getter for the X coordinate in meters in considered Earth centered frame.doublegetY()Getter for the Y coordinate in meters in considered Earth centered frame.doublegetZ()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
-
-