@signalk/nmea0183-signalk
Advanced tools
Comparing version 3.10.5 to 3.10.6
@@ -124,3 +124,3 @@ 'use strict' | ||
path: 'navigation.gnss.antennaAltitude', | ||
value: utils.int(parts[8]), | ||
value: utils.float(parts[8]), | ||
}, | ||
@@ -130,3 +130,3 @@ | ||
path: 'navigation.gnss.horizontalDilution', | ||
value: utils.int(parts[7]), | ||
value: utils.float(parts[7]), | ||
}, | ||
@@ -136,3 +136,3 @@ | ||
path: 'navigation.gnss.geoidalSeparation', | ||
value: utils.int(parts[11]), | ||
value: utils.float(parts[11]), | ||
}, | ||
@@ -142,3 +142,3 @@ | ||
path: 'navigation.gnss.differentialAge', | ||
value: utils.int(parts[12]), | ||
value: utils.float(parts[12]), | ||
}, | ||
@@ -145,0 +145,0 @@ |
{ | ||
"name": "@signalk/nmea0183-signalk", | ||
"version": "3.10.5", | ||
"version": "3.10.6", | ||
"description": "A node.js/javascript parser for NMEA0183 sentences. Sentences are parsed to Signal K format.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -72,5 +72,5 @@ 'use strict' | ||
delta.updates[0].values[2].value.should.equal(6) | ||
delta.updates[0].values[3].value.should.equal(18) | ||
delta.updates[0].values[4].value.should.equal(1) | ||
delta.updates[0].values[5].value.should.equal(2) | ||
delta.updates[0].values[3].value.should.equal(18.893) | ||
delta.updates[0].values[4].value.should.equal(1.2) | ||
delta.updates[0].values[5].value.should.equal(2.0) | ||
delta.updates[0].values[6].value.should.equal(31) | ||
@@ -77,0 +77,0 @@ toFull(delta).should.be.validSignalK |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
272538