Open source hiking (but not only) app. Work in progress...
Go to file
Eric van der Vlist ed951208e8 Adding a few files which are currently not used before a huge refactoring... 2022-10-17 09:41:27 +02:00
patches I18n using react-localization (#8) 2022-10-04 19:04:49 +02:00
public Re-implementing the background geolocation (not yet stored in a track) 2022-09-24 18:56:41 +02:00
src Adding a few files which are currently not used before a huge refactoring... 2022-10-17 09:41:27 +02:00
.gitignore Project config and more cleanup. 2022-08-31 20:22:00 +02:00
README.md Note to self 2022-10-04 22:37:39 +02:00
capacitor.config.ts Project config and more cleanup. 2022-08-31 20:22:00 +02:00
ionic.config.json Initial commit 2022-08-31 14:35:20 +02:00
package-lock.json Still working on avatars for locations. 2022-10-11 19:25:02 +02:00
package.json Still working on avatars for locations. 2022-10-11 19:25:02 +02:00
trapeze.config.yaml Hybrid implementation for GPXexport (#9) using the capacitor FileSystem plugin when needed. The export is done in the Documents/Download folder and there is no notification (yet). 2022-10-02 16:37:06 +02:00
tsconfig.json Storing imported tracks in local "forage". 2022-09-23 22:34:59 +02:00

README.md

Dyomedea

Hiking app.

Components

Slippy

The viewport on the underlying map

Map

The map itself (and its overlays)

Data formats

There is a number of data formats more or less specific to geography and hiking, such as:

SVG is very generic and is used to draw 2D figures in HTML applications and doesn't care about geography.

KML, GeoJSON and OSM elements have been designed to represent generic geographical points and shapes.

GPX is more specific, having been designed to represent routes and tracks and its semantices are directly useable in our application.

The strucure of our components and indexes can therefore follow the GPX format.

OSM elements is interesting to extract information from the OSM DB, either by querying their API or by downloading portions of the database.

GeoJSON might be of interest as an intermediate format since a number of JS libraries have been developped to perform queries or draw GeoJSON data as SVG.

KML might be considered as an import format.

And SVG, of course will be used to render tracks and routes on a map since its elements are directly supported by React.

Notes to self

Patching node_modules

This can be done by updating their sources in the node_modules directory and using the patch-package npm CLI command (thanks stackoverflow) :

$npx patch-package localized-strings

However, it takes ages before ionic serve takes these modifications into account.