Gpx
WIP
GPX is a .gpx parser.
Usage
gpx = Gpx.parse(‘/path/to/file.gpx’) => [%Gpx.Point{ele: 4.46, lat: 47.644548, lon: -122.326897} …]
Installation
-
Add
gpxto your list of dependencies inmix.exs:
```elixir
def deps do
[{:gpx, "~> 0.1.0"}]
end
```-
Ensure
gpxis started before your application:
```elixir
def application do
[applications: [:gpx]]
end
```