scls19fr / GPX.jl

A Julia GPX parser (ie reader) and creator (ie writer). GPX (GPS eXchange Format) is an XML based file format for GPS tracks.
MIT License
6 stars 6 forks source link

FileIO integration #4

Open alhirzel opened 4 years ago

alhirzel commented 4 years ago

Have you considered integrating with FileIO? It might be as simple as this (and adding the FileIO-style load and save methods) after registering GPX.jl:

add_format(format"GPX", (), ".gpx")
add_loader(format"GPX", :GPX)
add_saver(format"GPX", :GPX)

https://github.com/JuliaIO/FileIO.jl

scls19fr commented 4 years ago

Good idea @alhirzel PR are welcome

alhirzel commented 4 years ago

Have you considered registering GPX.jl according to this? https://github.com/JuliaRegistries/Registrator.jl/blob/master/README.md I think as the owner you may need to do this?

alhirzel commented 4 years ago

I'll work to add the FileIO stuff