All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.westnordost.osmapi.traces.GpsTrackpoint Maven / Gradle / Ivy

There is a newer version: 3.1
Show newest version
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