Tore Dahl
SKSignal K
•Created by Tore Dahl on 10/7/2024 in #questions
OpenSeaMap min zoom level
Thanks Adrian!!
8 replies
SKSignal K
•Created by Tore Dahl on 10/7/2024 in #questions
OpenSeaMap min zoom level
The only difference is minimum zoom level for the SeaMap layer.
8 replies
SKSignal K
•Created by Tore Dahl on 10/7/2024 in #questions
OpenSeaMap min zoom level
Sorry do not understand....
The Q is about the setup built into FreeboardSK, not about OpenSeaMap as such..
8 replies
SKSignal K
•Created by irjudson on 6/3/2024 in #plugins-and-webapps
irjudson - Q: What plugin (or not?) provides we...
For example to check if I messed something up....
74 replies
SKSignal K
•Created by irjudson on 6/3/2024 in #plugins-and-webapps
irjudson - Q: What plugin (or not?) provides we...
Also at stated before you can access my SignalK using e.g. https://x.dronten.dahlarna.se:33443/signalk/v1/api/vessels/self/navigation/position/
74 replies
SKSignal K
•Created by irjudson on 6/3/2024 in #plugins-and-webapps
irjudson - Q: What plugin (or not?) provides we...
Might relevant to know I populate navigation.position with Node-Red.
Something might be different compared to a GPS/AIS or similar "real boat equipment".
My boat is empty and the boat rpi is at home for the winter --> no easy way to check...
But also getting self.navigation position using https://h.dronten.dahlarna.se:3443/signalk/v1/api/vessels/self/navigation/position/
gives a correct result... confusing
Also tried to check with Node-Red, simple subscribe to delta on self.navigation.position, gives correct position (but of course I do not now how Node-Red is accessing the data)
74 replies
SKSignal K
•Created by irjudson on 6/3/2024 in #plugins-and-webapps
irjudson - Q: What plugin (or not?) provides we...
From my none code perspective yes,
If trying to activate plugin with a weather config, it cannot get a position if MMSI is blank, when adding MMSI to config it works like a charm.
As described by the debug log snippets above.
74 replies
SKSignal K
•Created by irjudson on 6/3/2024 in #plugins-and-webapps
irjudson - Q: What plugin (or not?) provides we...
OK
74 replies
SKSignal K
•Created by irjudson on 6/3/2024 in #plugins-and-webapps
irjudson - Q: What plugin (or not?) provides we...
Yep that seems right even if I cannot (do not now how) make that call.
74 replies
SKSignal K
•Created by irjudson on 6/3/2024 in #plugins-and-webapps
irjudson - Q: What plugin (or not?) provides we...
Not that it matters, but that SIgnalK instance is available public on https://x.dronten.dahlarna.se:33443/
74 replies
SKSignal K
•Created by irjudson on 6/3/2024 in #plugins-and-webapps
irjudson - Q: What plugin (or not?) provides we...
Correct, the app displays the vessel self in the correct position.
74 replies
SKSignal K
•Created by irjudson on 6/3/2024 in #plugins-and-webapps
irjudson - Q: What plugin (or not?) provides we...
About the units lowlow prio, I can devide knots by 2 pretty good 🙂
74 replies
SKSignal K
•Created by irjudson on 6/3/2024 in #plugins-and-webapps
irjudson - Q: What plugin (or not?) provides we...
And when MMSI is configured...
Oct 01 08:01:33 2024-10-01T06:01:33.806Z @signalk/freeboard-sk Weather: RETRY = 1 after no vessel position detected!
Oct 01 08:01:33 2024-10-01T06:01:33.807Z @signalk/freeboard-sk Vessel position: {"altitude":0,"latitude":56.04749,"longitude":12.7054}.
Oct 01 08:01:33 2024-10-01T06:01:33.808Z @signalk/freeboard-sk Weather: Calling service API.....(attempt: 1)
Oct 01 08:01:33 2024-10-01T06:01:33.808Z @signalk/freeboard-sk Position: {"altitude":0,"latitude":56.04749,"longitude":12.7054}
Oct 01 08:01:33 2024-10-01T06:01:33.809Z @signalk/freeboard-sk Weather: polling weather provider.
Oct 01 08:01:33 2024-10-01T06:01:33.982Z @signalk/freeboard-sk Weather: data received....
Oct 01 08:01:33 2024-10-01T06:01:33.982Z @signalk/freeboard-sk ** METEO - emit deltas**
Oct 01 08:01:33 2024-10-01T06:01:33.983Z @signalk/freeboard-sk METEO *
Oct 01 08:01:33 2024-10-01T06:01:33.983Z @signalk/freeboard-sk METEO OBS *
Oct 01 08:01:33 2024-10-01T06:01:33.983Z @signalk/freeboard-sk SENDING METAS *
Oct 01 08:01:33 2024-10-01T06:01:33.984Z @signalk/freeboard-sk METEO - build metas *
Oct 01 08:01:33 2024-10-01T06:01:33.984Z @signalk/freeboard-sk METEO - building observation metas *
74 replies
SKSignal K
•Created by irjudson on 6/3/2024 in #plugins-and-webapps
irjudson - Q: What plugin (or not?) provides we...
After even more digging my conclusion is slightly different....
FreeboardSK is not able to get the navigation position when setup is missing MMSI, it is still there but not retreived...
So I'm afraid FreeboardSK code needs a bit of digging.
Getting self.navigation position using https://h.dronten.dahlarna.se:3443/signalk/v1/api/vessels/self/navigation/position/
{
"meta": {
"description": "The position of the vessel in 2 or 3 dimensions (WGS84 datum)",
"properties": {
"longitude": {
"type": "number",
"description": "Longitude",
"units": "deg",
"example": 4.98765245
},
"latitude": {
"type": "number",
"description": "Latitude",
"units": "deg",
"example": 52.0987654
},
"altitude": {
"type": "number",
"description": "Altitude",
"units": "m"
}
}
},
"value": {
"altitude": 0,
"latitude": 56.04749,
"longitude": 12.7054
},
"$source": "NR",
"timestamp": "2024-10-01T05:55:29.515Z"
And debug log from the same:
Oct 01 07:55:33 2024-10-01T05:55:33.031Z @signalk/freeboard-sk Weather: RETRY = 1 after no vessel position detected!
Oct 01 07:55:33 2024-10-01T05:55:33.031Z @signalk/freeboard-sk Weather: No vessel position detected!
Oct 01 07:55:34 GET /@signalk/freeboard-sk/assets/img/weather_station.png 304 7.071 ms - -
Oct 01 07:55:38 2024-10-01T05:55:38.032Z @signalk/freeboard-sk Weather: RETRY = 2 after no vessel position detected!
Oct 01 07:55:38 2024-10-01T05:55:38.032Z @signalk/freeboard-sk Weather: No vessel position detected!
Oct 01 07:55:43 2024-10-01T05:55:43.033Z @signalk/freeboard-sk Weather: RETRY = 3 after no vessel position detected!
Oct 01 07:55:43 2024-10-01T05:55:43.033Z @signalk/freeboard-sk Weather: No vessel position detected!
Oct 01 07:55:43 2024-10-01T05:55:43.033Z @signalk/freeboard-sk *** Weather: Maximum number of retries to detect vessel position!... sleeping.
74 replies
SKSignal K
•Created by Chisburgers on 9/30/2024 in #questions
Make Signal K listen to IP
Sorry if I added to the confusion when trying to help 🙂
Problem solved by Teppo as usual 🙂
26 replies
SKSignal K
•Created by Chisburgers on 9/30/2024 in #questions
Make Signal K listen to IP
Or rather 3000 is redirected to 3443, but I have gotten used to always use 3443 🙂
26 replies
SKSignal K
•Created by Chisburgers on 9/30/2024 in #questions
Make Signal K listen to IP
In my case I need to access on 3443 for web UI since SSL is on.
26 replies
SKSignal K
•Created by Chisburgers on 9/30/2024 in #questions
Make Signal K listen to IP
As long as you have a TCPIP connection the SignalK should answer, as Teppo stated default port is 3000 🙂
I do not think you can tell SignalK to respond to a specific IP...
26 replies