de.westnordost.osmapi.traces.GpsTrackpoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of osmapi-traces Show documentation
Show all versions of osmapi-traces Show documentation
Uploads all artifacts belonging to configuration ':libs:traces:archives'
package de.westnordost.osmapi.traces;
import java.io.Serializable;
import java.util.Date;
import de.westnordost.osmapi.map.data.LatLon;
public class GpsTrackpoint implements Serializable
{
private static final long serialVersionUID = 1L;
public GpsTrackpoint(LatLon position)
{
this.position = position;
}
/** whether this trackpoint is the first point in a new segment/track (no differentiation made) */
public boolean isFirstPointInTrackSegment;
public LatLon position;
/** null if unknown. The time is only specified in tracks uploaded with the visibility
* identifiable or trackable (see GpsTraceDetails) */
public Date time;
public Float horizontalDilutionOfPrecision;
public Float elevation;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy