signalk-vessels-to-ais 1.6.0 → 2.0.0-beta.1
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/.github/dependabot.yml +0 -0
- package/.mocharc.json +5 -0
- package/README.md +34 -32
- package/index.js +244 -463
- package/lib/helpers.js +357 -0
- package/package.json +27 -26
- package/test/helpers.test.js +609 -0
- package/test/plugin.test.js +479 -0
package/.github/dependabot.yml
CHANGED
|
File without changes
|
package/.mocharc.json
ADDED
package/README.md
CHANGED
|
@@ -1,32 +1,34 @@
|
|
|
1
|
-
# signalk-vessels-to-ais
|
|
2
|
-
[](https://badge.fury.io/js/signalk-vessels-to-ais)
|
|
3
|
-
[](https://snyk.io/test/github/KEGustafsson/signalk-vessels-to-ais)
|
|
4
|
-
|
|
5
|
-
SignalK server plugin to convert other vessel data to NMEA0183 AIS format and forward it out to 3rd party applications.
|
|
6
|
-
|
|
7
|
-
User can configure:
|
|
8
|
-
- How often data is sent out
|
|
9
|
-
- Own data can be added to AIS sending
|
|
10
|
-
|
|
11
|
-
New:
|
|
12
|
-
-
|
|
13
|
-
- v1.
|
|
14
|
-
- v1.
|
|
15
|
-
- v1.
|
|
16
|
-
- v1.
|
|
17
|
-
- v1.
|
|
18
|
-
- v1.
|
|
19
|
-
- v1.2.
|
|
20
|
-
- v1.1
|
|
21
|
-
- v1.
|
|
22
|
-
- v1.1.
|
|
23
|
-
- v1.1.
|
|
24
|
-
- v1.1.
|
|
25
|
-
- v1.1.
|
|
26
|
-
- v1.
|
|
27
|
-
-
|
|
28
|
-
-
|
|
29
|
-
- v0.0.
|
|
30
|
-
- v0.0.
|
|
31
|
-
- v0.0.
|
|
32
|
-
- v0.0.
|
|
1
|
+
# signalk-vessels-to-ais
|
|
2
|
+
[](https://badge.fury.io/js/signalk-vessels-to-ais)
|
|
3
|
+
[](https://snyk.io/test/github/KEGustafsson/signalk-vessels-to-ais)
|
|
4
|
+
|
|
5
|
+
SignalK server plugin to convert other vessel data to NMEA0183 AIS format and forward it out to 3rd party applications.
|
|
6
|
+
|
|
7
|
+
User can configure:
|
|
8
|
+
- How often data is sent out
|
|
9
|
+
- Own data can be added to AIS sending
|
|
10
|
+
|
|
11
|
+
New:
|
|
12
|
+
- v2.0.0, refactor: use direct data access (app.getPath) instead of REST API, removed node-fetch and moment dependencies, added unit tests
|
|
13
|
+
- v1.6.1, fix: ggencoder ^1.0.9 is use
|
|
14
|
+
- v1.6.0, fix: enhance error handling for AIS timestamp retrieval
|
|
15
|
+
- v1.5.1, fix: fix: improve shipName type checking
|
|
16
|
+
- v1.5.0, fix: callSign reading
|
|
17
|
+
- v1.4.0, add: Event output name to user configurable
|
|
18
|
+
- v1.3.0, add: Navigational Status variations
|
|
19
|
+
- v1.2.2, fix: if own position is not available
|
|
20
|
+
- v1.2.1, fix: own vessel sending
|
|
21
|
+
- v1.2.0, updated fetch method, no need for NODE_TLS_REJECT_UNAUTHORIZED=0 anymore
|
|
22
|
+
- v1.1.5, updated vessels within selected timeframe are sent out, radius filtering around own vessel and tag-block option added
|
|
23
|
+
- v1.1.4, small fix
|
|
24
|
+
- v1.1.3, add: own vessel data and sending interval modified
|
|
25
|
+
- v1.1.2, fix: http/https url selection and better error info
|
|
26
|
+
- v1.1.1, fix: current status of the plugin updated
|
|
27
|
+
- v1.1.0, fix: numeric value test for text strings of AIS
|
|
28
|
+
- v1.0.0, v1 release
|
|
29
|
+
- v0.0.6, fix: node-fetch issue with self signed cert
|
|
30
|
+
- v0.0.5, fix: callSign default value
|
|
31
|
+
- v0.0.4, fix: beam calc
|
|
32
|
+
- v0.0.3, fix: ais path
|
|
33
|
+
- v0.0.2, fix: data parsing
|
|
34
|
+
- v0.0.1, 1st version
|