Package org.orekit.gnss
Class DOP
java.lang.Object
org.orekit.gnss.DOP
This class is a container for the result of a single DOP computation.
- Since:
- 8.0
- Author:
- Pascal Parraud
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDOP(GeodeticPoint location, AbsoluteDate date, int gnssNb, double gdop, double pdop, double hdop, double vdop, double tdop) Constructor. -
Method Summary
Modifier and TypeMethodDescriptiongetDate()Gets the calculation date of the DOP.doublegetGdop()Gets the geometric dilution of precision.intGets the number of GNSS satellites taken into account for DOP computation.doublegetHdop()Gets the horizontal dilution of precision.Gets the location with respect to the Earth where DOP was calculated.doublegetPdop()Gets the position dilution of precision.doublegetTdop()Gets the time dilution of precision.doublegetVdop()Gets the vertical dilution of precision.
-
Constructor Details
-
DOP
public DOP(GeodeticPoint location, AbsoluteDate date, int gnssNb, double gdop, double pdop, double hdop, double vdop, double tdop) Constructor.- Parameters:
location- location with respect to the Earth where DOP was calculateddate- date when all DOP was calculatedgnssNb- number of GNSS satellites taken into account for DOP computationgdop- the geometric dilution of precisionpdop- the position dilution of precisionhdop- the horizontal dilution of precisionvdop- the vertical dilution of precisiontdop- the time dilution of precision
-
-
Method Details
-
getLocation
Gets the location with respect to the Earth where DOP was calculated.- Returns:
- the location with respect to the Earth where DOP was calculated
-
getDate
Gets the calculation date of the DOP.- Returns:
- the calculation date of the DOP
-
getGnssNb
public int getGnssNb()Gets the number of GNSS satellites taken into account for DOP computation.- Returns:
- the number of GNSS satellites taken into account for DOP computation
-
getGdop
public double getGdop()Gets the geometric dilution of precision.- Returns:
- the GDOP
-
getPdop
public double getPdop()Gets the position dilution of precision.- Returns:
- the PDOP
-
getHdop
public double getHdop()Gets the horizontal dilution of precision.- Returns:
- the HDOP
-
getVdop
public double getVdop()Gets the vertical dilution of precision.- Returns:
- the VDOP
-
getTdop
public double getTdop()Gets the time dilution of precision.- Returns:
- the TDOP
-