Sergei

Results 7 comments of Sergei

In my case the empty field in RMC message results in magneticVariation reported as zero, which is 13 degrees off where I am.

Wrong Sergei here 😉 On Thu, Jan 25, 2024, 4:50 PM Murali Krishna Dev Uppugunduri < ***@***.***> wrote: > Hi @cybertechassociates / @sergei > , As discussed earlier and yesterday,...

I guess in the file src/interfaces/logfiles.js this line: ```javascript app.get('/logfiles/:filename', function(req, res, next) { ``` needs to be changed to: ```javascript app.get(`${SERVERROUTESPREFIX}/logfiles/:filename`, function(req, res, next) { ```

Unfortunately the plugins do produce the timestamped delta. That's how I've noticed that issue. The example would be [signalk-derived-data](https://github.com/SignalK/signalk-derived-data/blob/master/index.js) ``` let delta = { context: 'vessels.' + app.selfId, updates: [...

My fix proposal was *never* to use the platform time and only use the time provided by the GPS. Not sure how realistic it is since it would make the...

Yes, I can do the PRs for signalk-derived-data and signalk-polar

The @signalk/nmea0183-signalk is also using the current time if the tag is not specified: ``` > const Parser = require('@signalk/nmea0183-signalk') > const parser = new Parser() > parser.parse('\\s:airmar dst800,c:1438489697*13\\$SDDBT,17.0,f,5.1,M,2.8,F*3E') {...