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

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. :lati is latitude. :long is longitude. :elev is elevation. :time is time of GPS point.

Link to this section Types

@type t() :: %LocationSimulator.Gpx.GpsPoint{
  elev: float(),
  lati: float(),
  long: float(),
  time: NaiveDateTime.t() | nil
}

Holds GPS point data from GPX file. :lati is latitude. :long is longitude. :elev is elevation. :time is time of GPS point.