winga-chart-plotter-signalk 0.9.0 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ A fast and reliable sea chart plotting application for [Signal K](https://signal
|
|
|
7
7
|
## Why another chart plotter for SignalK
|
|
8
8
|
Winga Chart Plotter is an experiment playing with WebGL technologies with the intention of building a snappy and solid chart plotter. I owe much inspiration to [Freeboard-sk](https://github.com/SignalK/freeboard-sk).
|
|
9
9
|
|
|
10
|
-
Unfortunately, my sailing tablet gets laggy as soon as Freeboard has more than 30 AIS target, chart layers, waypoints or routes to show. Thus, Winga Chart Plotter is written with speed in mind, uses WASM for heavy computation and WebGL for rendering. It is projection-agnostic. Currently, there are two projection modes: mercator and globe and as soon as support for more projections lands in MapLibre, those will be integrated here as well. I'd like Winga Chart Plotter not only to be a SignalK webapp, but also a mobile app with native speed.
|
|
10
|
+
Unfortunately, my sailing tablet gets laggy as soon as Freeboard has more than 30 AIS target, chart layers, waypoints or routes to show. Thus, Winga Chart Plotter is written with speed in mind, uses WASM for heavy computation and WebGL for rendering. It is projection-agnostic. Currently, there are two projection modes: mercator and globe and as soon as support for more projections lands in MapLibre, those will be integrated here as well. Eventually, I'd like Winga Chart Plotter not only to be a SignalK webapp, but also a mobile app with native speed.
|
|
11
11
|
|
|
12
12
|
## Getting started
|
|
13
13
|
Install via SignalK's app store.
|
|
@@ -70,7 +70,7 @@ cargo test
|
|
|
70
70
|
```
|
|
71
71
|
|
|
72
72
|
## Design
|
|
73
|
-
Do one
|
|
73
|
+
Do one job, do it good. This means that some features might be left to other layers. E.g. notification and alarm management as well as instrument might be left to KIP. Being a tool for marine navigation, Winga Chart Plotter will prioritize correctness and stability over features.
|
|
74
74
|
|
|
75
75
|
|
|
76
76
|
See [`KNOWLEDGE_BASE.md`](./KNOWLEDGE_BASE.md) for full architecture decisions, user stories, and open questions.
|
|
@@ -79,16 +79,15 @@ See [`KNOWLEDGE_BASE.md`](./KNOWLEDGE_BASE.md) for full architecture decisions,
|
|
|
79
79
|
- Globe projection
|
|
80
80
|
- WebGL rendering
|
|
81
81
|
- WMTS layer discovery
|
|
82
|
-
- AIS
|
|
82
|
+
- AIS: targets to scale, dead reckoning (honoring rate-of-turn and at 60fps, whoever needs this)
|
|
83
83
|
- Great-circle lines for measurements, tracks and routes
|
|
84
84
|
- Highly customizable appearance
|
|
85
85
|
- 3D mode
|
|
86
|
+
- Lookahead by move and lock
|
|
86
87
|
- Process SignalK deltas as they arrive
|
|
87
88
|
- Multiple, permanent and sticky rulers
|
|
88
|
-
- AIS dead reckoning (honoring rate-of-turn and at 30fps, whoever this needs)
|
|
89
89
|
|
|
90
90
|
## Missing features compared to Freeboard
|
|
91
|
-
- S57 support (planned)
|
|
92
91
|
- Alarm management
|
|
93
92
|
- Anchor (planned)
|
|
94
93
|
- Many many more
|
|
@@ -99,4 +98,3 @@ See [`KNOWLEDGE_BASE.md`](./KNOWLEDGE_BASE.md) for full architecture decisions,
|
|
|
99
98
|
- [ ] Tauri packaging (Android)
|
|
100
99
|
- [ ] Wind particle overlay
|
|
101
100
|
- [ ] Maybe Grib support
|
|
102
|
-
- [ ] S-57 vector chart support
|