nc-gpxedit/appinfo/info.xml

108 lines
4.4 KiB
XML
Raw Normal View History

2016-11-30 19:00:03 +00:00
<?xml version="1.0"?>
<info>
<id>gpxedit</id>
<name>GpxEdit</name>
<description>
2017-05-16 15:36:22 +00:00
# GpxEdit Nextcloud application
# GpxEdit Owncloud application
2016-11-30 19:00:03 +00:00
2017-05-16 15:36:22 +00:00
Simple Nextcloud app to load, edit and save GPX files on an interactive map.
Simple Owncloud app to load, edit and save GPX files on an interactive map.
You can load/save files from your Nextcloud file storage.
You can load/save files from your Owncloud file storage.
2017-01-18 20:21:55 +00:00
GPX, KML, CSV (unicsv format) and geotagged JPG are supported for loading. JPG files are loaded as waypoints.
2016-12-02 15:38:07 +00:00
There is a file explorer inside the app interface to select a file to load and a folder to save what is currently on the map.
This is not a perfect GPX editor.
2016-12-08 18:11:36 +00:00
What's saved :
- tracks
- name
- comment
- description
- points
- coordinates
- elevation (just preserves loaded values)
2016-12-16 01:39:12 +00:00
- time (just preserves loaded values)
2016-12-08 18:11:36 +00:00
- waypoint
- coordinates
- name
- comment
- description
- symbol
- elevation (just preserves loaded value)
2016-12-16 01:39:12 +00:00
- time (just preserves loaded values)
2016-12-08 18:11:36 +00:00
GpxEdit does load/save time data.
Elevation data is loaded and saved but every new waypoint/track/trackpoint added by user actions in GpxEdit will have neither elevation nor time data.
2016-12-02 15:38:07 +00:00
2016-12-16 01:39:12 +00:00
Tracks are saved with one segment (trkseg tag).
2016-12-02 15:38:07 +00:00
GpxEdit :
2017-01-18 20:21:55 +00:00
- allows you to add extra symbols in Nextcloud(\*) admin settings (section : additional)
2016-12-02 15:38:07 +00:00
- works with server-side encryption.
- works with shared files.
- loads GPX, KML, unicsv CSV, geotagged JPG files (requires Gpsbabel to convert files and import pictures)
2016-12-08 18:11:36 +00:00
- loads tracks, routes and waypoints
- saves tracks, routes and waypoints
2016-12-08 18:11:36 +00:00
- supports waypoint symbols
2017-05-09 14:46:21 +00:00
- uses [Leaflet.Draw](https://github.com/Leaflet/Leaflet.draw) and [Leaflet.draw.plus](https://github.com/Dominique92/Leaflet.draw.plus) amazing plugins
2016-12-02 15:38:07 +00:00
- uses many other Leaflet plugins like Minimap, Sidebar2, MeasureControl, MousePositionControl
- uses JQuery
- adds possibility to edit .gpx files directly from the "Files" app
2017-05-09 14:46:21 +00:00
- is able to cut lines in two
This app is tested on Owncloud 9 with Firefox and Chromium.
This app is tested on Nextcloud 11 and 12 with Firefox and Chromium.
2016-12-02 15:38:07 +00:00
2016-11-30 19:00:03 +00:00
Any feedback will be appreciated.
If you want to help to translate this app in your language, take the english=>french files in "l10n" directory as examples.
2016-12-19 17:13:21 +00:00
(\*) : If you run Owncloud, you still can add extra symbols by putting png files in /path/to/owncloud/data/gpxedit/symbols/ folder.
2017-01-18 20:21:55 +00:00
## Donation
I develop this app during my free time. You can make a donation to me on Paypal. [There is a donation link HERE](https://gitlab.com/eneiluj/gpxedit-oc#donation) (you don't need a paypal account)
2017-01-18 20:21:55 +00:00
## Installation
Check the [AdminDoc](https://gitlab.com/eneiluj/gpxedit-oc/wikis/admindoc) for installation details, integration in "Files" app and GpxEdit admin settings.
2017-01-18 20:21:55 +00:00
## Alternatives
If you look for more powerfull GPX editors, take a look at :
- [Viking](https://sourceforge.net/projects/viking/) which is the best IMHO
- [QLandKarteGT](https://bitbucket.org/kiozen/qlandkarte-gt)
- [QMapShack](https://bitbucket.org/maproom/qmapshack/wiki/Home)
- [JOSM](https://josm.openstreetmap.de/)
2016-11-30 19:00:03 +00:00
</description>
<licence>AGPL</licence>
2016-12-02 15:38:07 +00:00
<summary>Simple GPX file editor</summary>
2016-11-30 19:00:03 +00:00
<author>Julien Veyssier</author>
<version>0.0.6</version>
2016-11-30 19:00:03 +00:00
<namespace>GpxEdit</namespace>
<documentation>
<user>https://gitlab.com/eneiluj/gpxedit-oc/wikis/userdoc</user>
<admin>https://gitlab.com/eneiluj/gpxedit-oc/wikis/admindoc</admin>
<developer>https://gitlab.com/eneiluj/gpxedit-oc/wikis/devdoc</developer>
</documentation>
<category>tool</category>
<category>multimedia</category>
<website>https://gitlab.com/eneiluj/gpxedit-oc</website>
<bugs>https://gitlab.com/eneiluj/gpxedit-oc/issues</bugs>
2016-12-10 14:12:27 +00:00
<screenshot>https://gitlab.com/eneiluj/gpxedit-oc/uploads/01955c60c4605a92c68dd5617b0703c0/gpxedit.gif</screenshot>
<screenshot>https://gitlab.com/eneiluj/gpxedit-oc/uploads/c062d8bcf995a9192f5e11702aa03710/two.png</screenshot>
<screenshot>https://gitlab.com/eneiluj/gpxedit-oc/uploads/c3aa82fe2cb18aa44eef9207c790838c/three.png</screenshot>
2016-11-30 19:00:03 +00:00
<dependencies>
<php min-version="5.6"/>
<owncloud min-version="9.0" max-version="10.9" />
<nextcloud min-version="9.0" max-version="12.9"/>
2016-11-30 19:00:03 +00:00
</dependencies>
2016-12-06 00:36:58 +00:00
<ocsid>174782</ocsid>
<settings>
<admin>OCA\GpxEdit\Settings\Admin</admin>
</settings>
2016-11-30 19:00:03 +00:00
</info>