Comparing version 0.4.2 to 0.4.3
{ | ||
"name": "gps", | ||
"main": "gps.js", | ||
"version": "0.4.2", | ||
"version": "0.4.3", | ||
"homepage": "https://github.com/infusion/GPS.js", | ||
@@ -6,0 +6,0 @@ "description": "A GPS NMEA parser library", |
/** | ||
* @license GPS.js v0.4.1 26/01/2016 | ||
* @license GPS.js v0.4.3 26/01/2016 | ||
* | ||
@@ -4,0 +4,0 @@ * Copyright (c) 2016, Robert Eisele (robert@xarg.org) |
/* | ||
GPS.js v0.4.1 26/01/2016 | ||
GPS.js v0.4.3 26/01/2016 | ||
@@ -4,0 +4,0 @@ Copyright (c) 2016, Robert Eisele (robert@xarg.org) |
{ | ||
"name": "gps", | ||
"title": "gps.js", | ||
"version": "0.4.2", | ||
"version": "0.4.3", | ||
"homepage": "https://github.com/infusion/GPS.js", | ||
@@ -6,0 +6,0 @@ "bugs": "https://github.com/infusion/GPS.js/issues", |
@@ -90,3 +90,3 @@ | ||
port.on('data', function(data) { | ||
gps.update(data); | ||
gps.updatePartial(data); | ||
}); | ||
@@ -148,3 +148,3 @@ ``` | ||
--- | ||
The update method is the most important function, it adds a new NMEA sentence and forces the callback to trigger | ||
The update method is the most important function, it parses a NMEA sentence and forces the callbacks to trigger | ||
@@ -180,3 +180,3 @@ updatePartial(chunk) | ||
- hdop: Horizontal [dilution of precision](https://en.wikipedia.org/wiki/Dilution_of_precision_(GPS)) | ||
- geoidal: Height of geoid (mean sea level) | ||
- geoidal: Height of geoid in meters (mean sea level) | ||
- age: time in seconds since last DGPS update | ||
@@ -183,0 +183,0 @@ - stationID: DGPS station ID number |
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
353735