signalk-binnacle 0.2.0 → 0.3.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
@@ -8,19 +8,32 @@
8
8
 
9
9
  A WebGL chart plotter for [Signal K](https://signalk.org).
10
10
 
11
- > **0.2.0.** This release adds a Tides panel for US waters (the nearest NOAA station's next high and
12
- > low, a 48-hour curve, and the nearest tidal-current flood or ebb) and a set of free, key-free chart
13
- > overlays: OpenSeaMap seamarks, marine protected areas, maritime boundaries, and NASA GIBS ocean
14
- > conditions (sea-surface temperature and sea ice). The Layers panel is reorganized into collapsible
15
- > categories with a better default order (US charts on top), imported charts gain a review step and
16
- > register on the server so other devices discover them, and each depth source splits into a base and
17
- > a survey-quality facet. See the [changelog](CHANGELOG.md) for the full list.
18
- >
19
11
  > **It has not been field-tested at any scale.** It has been developed and verified against a single
20
12
  > Signal K server, never across a fleet or a range of real-world boats, hardware, and conditions. It
21
13
  > is also not certified for safety-of-life navigation. Always carry redundant means of navigation,
22
14
  > cross-check against your primary instruments, and treat every display as advisory.
23
15
 
16
+ ## What's new in 0.3.0
17
+
18
+ Profiles, richer routing, and passage planning:
19
+
20
+ - **Profiles.** Save named bundles of your settings (theme, which layers are on and their order, the
21
+ weather layers, the collision thresholds, and the track and planning settings), switch between them
22
+ in one tap, set a default, export and import them as files, and sync them across devices through a
23
+ secured server.
24
+ - **Tap to navigate.** Long-press or right-click the chart and choose **Go to here** to navigate
25
+ straight to a point over the Course API.
26
+ - **GPX import and export.** Move routes between Binnacle and other plotters and MFDs.
27
+ - **Passage planning.** A plan speed turns the route's leg table into per-waypoint and whole-route
28
+ arrival times.
29
+ - **Track-to-route.** Save the current track as a route, reverse a route for the return leg, navigate
30
+ home by retracing your track, and skip the active waypoint forward or back from the nav strip.
31
+ - **Fixes.** Importing a malformed GPX no longer aborts the import, the Routes opacity slider now dims
32
+ the waypoint labels with the rest of the route, and the waypoint-skip buttons are a full touch
33
+ target.
34
+
35
+ See the [changelog](CHANGELOG.md) for the full list.
36
+
24
37
  ## What it does
25
38
 
26
39
  Signal K is an open marine data standard that streams a boat's navigation, environment, and AIS data
@@ -37,20 +50,29 @@ Signal K server.
37
50
  Binnacle ships its full feature set as a Signal K webapp:
38
51
 
39
52
  - **Charts and layers:** a GPU vector base map, server charts, four streaming bathymetry and ENC
40
- sources (each splitting into a base chart and a survey-quality facet), and your own imported
41
- PMTiles, in a collapsible, categorized Layers panel with per-layer toggle, fade, and drag-reorder.
53
+ sources (NOAA ENC, BlueTopo, and EMODnet each add a nested survey-quality facet; GEBCO is global
54
+ base bathymetry), and your own imported PMTiles, in a collapsible, categorized Layers panel with
55
+ per-layer toggle, fade, and drag-reorder.
42
56
  - **Overlays:** free, key-free OpenSeaMap seamarks, marine protected areas, maritime boundaries, and
43
57
  NASA GIBS ocean conditions (sea-surface temperature and sea ice), each with its source attribution.
44
- - **Routing:** draw and save routes as Signal K resources and follow one with a nav strip
45
- (cross-track, distance, bearing, velocity made good, and time to go) over the v2 Course API, with
46
- an arrival alarm.
58
+ - **Routing:** draw and save routes as Signal K resources, or tap **Go to here** (long-press or
59
+ right-click the chart) to navigate straight to a point. Follow a route with a nav strip (cross-track,
60
+ distance, bearing, velocity made good, and time to go) over the v2 Course API, with an arrival alarm
61
+ and skip-waypoint controls. A plan speed turns the route into a **passage plan** with per-waypoint and
62
+ whole-route arrival times, and routes **import and export as GPX** to move between Binnacle and other
63
+ plotters and MFDs.
64
+ - **Profiles:** save named bundles of your settings (theme, which layers are on and their order, the
65
+ weather layers, the collision thresholds, and the track and planning settings), switch between them
66
+ in one tap, set a default, export and import them as files, and sync them across devices through the
67
+ server when you are logged in.
47
68
  - **Weather:** a zoom-capped mini-map with animated WebGL wind, pressure isobars, waves,
48
69
  precipitation, cloud, and radar, a tap-for-value readout, and a conditions and warnings panel.
49
70
  - **Tides:** the nearest NOAA tide station's next high and low with a 48-hour curve, and the nearest
50
71
  tidal-current station's next flood or ebb, for US waters.
51
72
  - **Lookout:** a collision watch with CPA and TCPA, chart-highlight rings, an audible alarm, and a
52
73
  published Signal K notification.
53
- - **Tracks:** record, save, show, and export your voyage track.
74
+ - **Tracks:** record, save, show, and export your voyage track as GeoJSON, save a track as a reusable
75
+ route, reverse a route for the return leg, or navigate home by retracing your track.
54
76
  - **Points of interest:** Crow's Nest, ActiveCaptain, and other notes as themed markers with a
55
77
  structured detail panel.
56
78
  - **Themes and offline:** day, dusk, and night-red themes, offline caching, and self-hosted assets.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "signalk-binnacle",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "WebGL chart plotter for Signal K",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -30,8 +30,8 @@
30
30
  "screenshots": [
31
31
  "./screenshots/01-chart.png",
32
32
  "./screenshots/02-routes.png",
33
- "./screenshots/03-charts.png",
34
- "./screenshots/04-anchorage.png",
33
+ "./screenshots/03-anchorage.png",
34
+ "./screenshots/04-profiles.png",
35
35
  "./screenshots/05-weather.png"
36
36
  ],
37
37
  "recommends": [