LocationSimulator.Gpx.GpsPoint (LocationSimulator v1.0.0)

Copy Markdown View Source

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

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.

Types

t()

@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.