From 7415007c52b76ca34a1ab60c0ca28da77b64622b Mon Sep 17 00:00:00 2001 From: Alex Hirzel Date: Sun, 28 Jun 2020 22:48:14 -0400 Subject: [PATCH 1/3] add support for GPX.jl --- src/registry.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/registry.jl b/src/registry.jl index 77f01613..5b36d059 100644 --- a/src/registry.jl +++ b/src/registry.jl @@ -133,7 +133,7 @@ add_loader(format"ZIP", :ZipeFile) add_saver(format"ZIP", :ZipeFile) =# -#Shader files +# Shader files add_format(format"GLSLShader", (), [".frag", ".vert", ".geom", ".comp"], [:GLAbstraction]) # Mesh formats @@ -356,3 +356,5 @@ add_format(format"vega", (), [".vega"], [:VegaLite]) add_format(format"FCS", "FCS", [".fcs"], [:FCSFiles]) add_format(format"HTML", (), [".html", ".htm"], [:MimeWriter, SAVE]) + +add_format(format"GPX", (), [".gpx"], [:GPX, LOAD]) From a749812d85bdf54357f8deb967807ac5fb0857df Mon Sep 17 00:00:00 2001 From: Alex Hirzel Date: Mon, 29 Jun 2020 08:09:38 -0400 Subject: [PATCH 2/3] also add support for KML --- src/registry.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/registry.jl b/src/registry.jl index 5b36d059..b3058ce6 100644 --- a/src/registry.jl +++ b/src/registry.jl @@ -358,3 +358,4 @@ add_format(format"FCS", "FCS", [".fcs"], [:FCSFiles]) add_format(format"HTML", (), [".html", ".htm"], [:MimeWriter, SAVE]) add_format(format"GPX", (), [".gpx"], [:GPX, LOAD]) +add_format(format"KML", (), [".kml"], [:KMLTracks, LOAD]) From 1ed3e49506d9c634b6ea0ac829771c5f1451e63e Mon Sep 17 00:00:00 2001 From: Alex Hirzel Date: Tue, 14 Jul 2020 23:00:31 -0400 Subject: [PATCH 3/3] Revert "also add support for KML" This reverts commit a749812d85bdf54357f8deb967807ac5fb0857df. --- src/registry.jl | 1 - 1 file changed, 1 deletion(-) diff --git a/src/registry.jl b/src/registry.jl index b3058ce6..5b36d059 100644 --- a/src/registry.jl +++ b/src/registry.jl @@ -358,4 +358,3 @@ add_format(format"FCS", "FCS", [".fcs"], [:FCSFiles]) add_format(format"HTML", (), [".html", ".htm"], [:MimeWriter, SAVE]) add_format(format"GPX", (), [".gpx"], [:GPX, LOAD]) -add_format(format"KML", (), [".kml"], [:KMLTracks, LOAD])