View Source LocationSimulator.Gpx.GpsPoint (LocationSimulator v0.6.3)

GpsPoint is a struct that represents a GPS point load from GPX file.

Link to this section Summary

Types

t()

Holds GPS point data from GPX file. :lat is latitude. :lon is longitude. :ele is elevation. :time is time of GPS point.

Link to this section Types

@type t() :: %LocationSimulator.Gpx.GpsPoint{
  ele: float(),
  lat: float(),
  lon: float(),
  time: DateTime.t() | nil
}

Holds GPS point data from GPX file. :lat is latitude. :lon is longitude. :ele is elevation. :time is time of GPS point.