public class

TracePathPoint

extends Object
java.lang.Object
   ↳ com.commsignia.v2x.client.model.TracePathPoint

Class Overview

Represents a point in a trace path. Each trace describes a set of consecutive positions leading to the event position.

Summary

Public Constructors
TracePathPoint()
Creates a new instance.
Public Methods
boolean equals(Object o)
Long getDeltaAltitude()
Returns the delta altitude value.
Long getDeltaLatitude()
Returns the delta latitude value.
Long getDeltaLongitude()
Returns the delta longitude value.
Long getDeltaTime()
Returns the delta time.
int hashCode()
void setDeltaAltitude(Long deltaAltitude)
Sets the delta altitude value.
void setDeltaLatitude(Long deltaLatitude)
Sets the delta latitude value.
void setDeltaLongitude(Long deltaLongitude)
Sets the delta longitude value.
void setDeltaTime(Long pathDeltaTime)
Sets the recorded or estimated travel time separated between points to a predefined reference position.
void setPoint(Long deltaLatitude, Long deltaLongitude, Long deltaAltitude)
Create a new instance.
String toString()
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public TracePathPoint ()

Creates a new instance.

Public Methods

public boolean equals (Object o)

public Long getDeltaAltitude ()

Returns the delta altitude value.

Returns
  • delta altitude value in centimeters

public Long getDeltaLatitude ()

Returns the delta latitude value.

Returns
  • delta latitude value in 0.1 microdegrees

public Long getDeltaLongitude ()

Returns the delta longitude value.

Returns
  • delta longitude value

public Long getDeltaTime ()

Returns the delta time.

Returns
  • delta time

public int hashCode ()

public void setDeltaAltitude (Long deltaAltitude)

Sets the delta altitude value.

Parameters
deltaAltitude defines an offset deltaAltitude with regards to a specific elevation value in cenitmeters.

public void setDeltaLatitude (Long deltaLatitude)

Sets the delta latitude value.

Parameters
deltaLatitude defines offset deltaLatitude with regards to a specific deltaLatitude value in 0.1 microdegrees

public void setDeltaLongitude (Long deltaLongitude)

Sets the delta longitude value.

Parameters
deltaLongitude defines an offset deltaLongitude with regards to a specific deltaLongitude value in 0.1 microdegrees.

public void setDeltaTime (Long pathDeltaTime)

Sets the recorded or estimated travel time separated between points to a predefined reference position.

Parameters
pathDeltaTime path delta time in units of 10 milliseconds

public void setPoint (Long deltaLatitude, Long deltaLongitude, Long deltaAltitude)

Create a new instance.

Parameters
deltaLatitude defines offset deltaLatitude with regards to a specific deltaLatitude value in 0.1 microdegrees
deltaLongitude defines an offset deltaLongitude with regards to a specific deltaLongitude value in 0.1 microdegrees
deltaAltitude defines an offset deltaAltitude with regards to a specific elevation value in cenitmeters

public String toString ()