public class PostprocessingPoint
extends java.lang.Object
implements java.lang.Cloneable, java.io.Serializable
This class should be part of any point that can be postprocessed. It stored the SurveyedLocation, which is the original GPS point, and the CorrectedLocation, which is the corrected GPS point.
| Constructor and Description |
|---|
PostprocessingPoint() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
clone() |
CorrectedLocation |
getCorrectedLocation() |
java.lang.String |
getGPSID()
This returns the GPS ID of either the surveyed location
or the corrected location, whichever exists.
|
SurveyedLocation |
getSurveyedLocation() |
void |
setCorrectedLocation(CorrectedLocation inCorrectedLocation) |
void |
setSurveyedLocation(SurveyedLocation inSurveyedLocation) |
public java.lang.String getGPSID()
This returns the GPS ID of either the surveyed location or the corrected location, whichever exists. The order shouldn't matter because they should both have the same id.
Returns null if this location doesn't have a GPS ID.
public SurveyedLocation getSurveyedLocation()
public void setSurveyedLocation(SurveyedLocation inSurveyedLocation)
public CorrectedLocation getCorrectedLocation()
public void setCorrectedLocation(CorrectedLocation inCorrectedLocation)
public java.lang.Object clone()
clone in class java.lang.Object