Open source hiking (but not only) app. Work in progress...
Go to file
Eric van der Vlist 1c403ae819 Adding a modal for the Explorer (context menu). 2022-11-22 07:48:17 +01:00
public Displaying GPX tracks (1st attempt) 2022-11-17 12:55:00 +01:00
src Adding a modal for the Explorer (context menu). 2022-11-22 07:48:17 +01:00
.gitignore Removing package-lock.json from git 2022-10-21 10:04:04 +02:00
README.md Doc 2022-10-20 21:37:05 +02:00
capacitor.config.ts Restarting from scratch 2022-10-17 10:08:00 +02:00
ionic.config.json Initial commit 2022-08-31 14:35:20 +02:00
package.json Re-implementing the map chooser 2022-11-21 17:49:09 +01:00
trapeze.config.yaml Re-implementing (foreground) geolocation (and npm packages update). 2022-11-01 21:27:36 +01:00
tsconfig.json Updating pouchdb keys based on an updated version of docuri. 2022-11-13 20:02:11 +01:00
typedoc.json Removing test files from the typedoc. 2022-10-17 21:36:39 +02:00

README.md

Dyomedea

Hiking app.

Documentation

vdv@nuc:~/projects/tea/dyomedea/dyomedea$ npx typedoc 
./src/serviceWorkerRegistration.ts:21:0 - warning Config is referenced by serviceWorkerRegistration.register.register.config but not included in the documentation.

21    type Config = {

Documentation generated at ./doc
vdv@nuc:~/projects/tea/dyomedea/dyomedea$ 

Components

TBD

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 semantics are directly useable in our application.

The structure 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 developed 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.

Visual Code snippets

Useful commands

vdv@nuc:~/projects/tea/dyomedea/dyomedea$ adb --version
Android Debug Bridge version 1.0.41
Version 33.0.3-8952118
Installed as /homext/Android/Sdk/platform-tools/adb

$ ionic capacitor run --target RFCN20NEZ4R   android

$ ionic serve --no-open

$ npm test

$ npx typedoc

$ npx trapeze run trapeze.config.yaml 

vdv@nuc:~/projects/tea/dyomedea/dyomedea$ echo $ANDROID_SDK_ROOT
/home/vdv/Android/Sdk