Packages

An OTP application for reading and parsing GPS data written in Elixir. Will attach to an serial port, and provide positions to subscribers. Distributes positions using GenStage.

Current section

Files

Jump to
xgps lib xgps gps_data.ex
Raw

lib/xgps/gps_data.ex

defmodule XGPS.GpsData do
defstruct [
has_fix: false,
time: nil,
date: nil,
latitude: nil,
longitude: nil,
geoidheight: nil,
altitude: nil,
speed: nil,
angle: nil,
magvariation: nil,
hdop: nil,
fix_quality: nil,
satelites: nil
]
end