Cruisers Forum
 


Reply
  This discussion is proudly sponsored by:
Please support our sponsors and let them know you heard about their products on Cruisers Forums. Advertise Here
 
Thread Tools Search this Thread Rate Thread Display Modes
Old 13-06-2022, 13:10   #151
Registered User
 
rgleason's Avatar

Join Date: Mar 2012
Location: Boston, MA
Boat: 1981 Bristol 32 Sloop
Posts: 17,685
Images: 2
Re: Plugin Polar

I dont believe so, though I've never used signalk. Opencpn supports signalk does it not? Vdr simply reads the nmea0183 data stream.

If I mislead. Sorry.

Can signalk into opencpn be directed to the nmea0183 data stream?
rgleason is online now   Reply With Quote
Old 17-06-2022, 02:56   #152
Registered User

Join Date: Jun 2022
Posts: 1
Re: Plugin Polar

Hello


i recently installed the paid version of opencpn on my galaxy tab to create a polardiagram for my ship, but polar_pi is not available in the pluginmanager.


How can i use polar_pi on android, can i?


regards
pneumokogge is offline   Reply With Quote
Old 17-06-2022, 05:41   #153
Registered User

Join Date: Mar 2011
Posts: 666
Re: Plugin Polar

Quote:
Going back to NMEA 0183 would require additional hardware
No. Configure the SignalK to NMEA 183 plugin to transmit NMEA 183 data over a network connection, either TCP or UDP. You are already using a network connection to receive the SignalK data so no additional H/W is required.
Quote:
Opencpn supports signalk does it not? Vdr simply reads the nmea0183 data stream
Rick,
The two are quite separate. SignalK data is encoded as JSON, something similar to:
Code:
navigation": {
        "position": {
          "value": {
            "altitude": 0.0,
            "latitude": 37.81479,
            "longitude": -122.44880152
          }
whereas NMEA 183 as you know is a structured text format, for example:
Code:
$GPGLL,3811.00,S,14430.00,E,223015.00,A,A*7A
For a plugin to support SignalK, it needs to support the OpenCPN Plugin Messaging system and parse the JSON messages.
Code:
SetPluginMessage(wxString& message_id, wxString& message_body) {
	if (message_id == _T("OCPN_CORE_SIGNALK")
        ....
whereas to receive NMEA 183 data, the plugin implements
Code:
SetNMEASentence(wxString &sentence)...
It would appear that the Polar Plugin has yet to support SignalK, hence the suggestion to use the SignalK to NMEA 183 plugin to enable the SignalK Server to convert SignalK data to NMEA 183 for consumption by OpenCPN and its plugins.
stevead is offline   Reply With Quote
Old 17-06-2022, 07:51   #154
Registered User
 
rgleason's Avatar

Join Date: Mar 2012
Location: Boston, MA
Boat: 1981 Bristol 32 Sloop
Posts: 17,685
Images: 2
Re: Plugin Polar

Stevead. Thanks for correcting me and your clear explanation. Perhaps we should add some similar doc to signalk in the manual?
rgleason is online now   Reply With Quote
Old 17-06-2022, 07:53   #155
Registered User
 
rgleason's Avatar

Join Date: Mar 2012
Location: Boston, MA
Boat: 1981 Bristol 32 Sloop
Posts: 17,685
Images: 2
Re: Plugin Polar

Also, what is the overhead for a.pi to support signalk?

There are probably also additional room for errors bugs and other annoyances.
rgleason is online now   Reply With Quote
Old 17-06-2022, 13:21   #156
Registered User

Join Date: Mar 2011
Posts: 666
Re: Plugin Polar

Hi Rick,

I can't comment on a Pi's performance running SignalK. There are various models of Pi's so performance is dependent on whether a user runs a Pi Model 1 (512Mb RAM, 700 MHz Arm 11 CPU), 2, 3 or 4 (1-8Gb RAM, 1.5 GHz, 4 core Arm v8 CPU) .

Also similar to OpenCPN and its plugins, SignalK also has a number of plugins that enable it to connect to NMEA 183, NMEA 2000 or sensors that connect to the Pi using GPIO. Also performance would be impacted by the data rate of the attached sensors and their processing overhead,

That could vary from say a NMEA 2000 GPS emitting data at a rate of 10Hz or an Attitude sensor emitting data at a rate of 50Hz.

Re documentation, it is documented in the OpenCPN Manuals although in my opinion I think it could be made a little easier. Alternatively leave it to the SignalK authors to document how to connect to OpenCPN.

What is lacking and may be useful is a simple table listing plugin such as Dashboard, Tactics, Engine Dashboard, GPS Odometer, VDR, Polars etc. and what type of inputs they support; Eg. NMEA 183, SignalK.

Perhaps extend even further with a listing of the required NMEA 183 sentences or SignalK value pairs.
stevead is offline   Reply With Quote
Old 21-06-2022, 02:55   #157
Registered User
 
rgleason's Avatar

Join Date: Mar 2012
Location: Boston, MA
Boat: 1981 Bristol 32 Sloop
Posts: 17,685
Images: 2
Re: Plugin Polar

Stevead I think your idea for a table is good. Perhaps we should start with a list of plugins that do support signalK and then augment that with ones that support the other communications.
rgleason is online now   Reply With Quote
Old 28-01-2023, 08:42   #158
Registered User

Join Date: Aug 2017
Posts: 4
Re: Plugin Polar

Any one know the minimum NMEA strings to get polar data?
I have MWV, VHW and HDT but that is not enough.
What more do i need?
/ Reidar
Amerona is offline   Reply With Quote
Old 27-04-2023, 15:16   #159
Registered User

Join Date: Oct 2022
Location: RI, USA
Boat: Pogo 2 - Mini 6.50
Posts: 4
Re: Plugin Polar

Hi,

I posted this as an issue in Github a few days ago. So I'll try here:

Plugin version 1.2.2.0 not working on Mac

OpenCPN 5.8.0-0 from official site. MacOS Ventura 13.3.1 (22E261) on M2 MacBook Air. Plugin is installed and enabled, but the button/icon does not appear in the Toolbar.

Anyone have it working on Mac? Is Mac unsupported with this plugin?

Thanks,
Dave
mueyu is offline   Reply With Quote
Old 28-04-2023, 17:36   #160
Registered User
 
rgleason's Avatar

Join Date: Mar 2012
Location: Boston, MA
Boat: 1981 Bristol 32 Sloop
Posts: 17,685
Images: 2
Re: Plugin Polar

Quote:
Originally Posted by mueyu View Post
Hi,

I posted this as an issue in Github a few days ago. So I'll try here:

Plugin version 1.2.2.0 not working on Mac

OpenCPN 5.8.0-0 from official site. MacOS Ventura 13.3.1 (22E261) on M2 MacBook Air. Plugin is installed and enabled, but the button/icon does not appear in the Toolbar.

Anyone have it working on Mac? Is Mac unsupported with this plugin?

Thanks,
Dave
The tarballs exist for darwin macos, see
https://cloudsmith.io/~opencpn/repos...darwin+tarball

The plugin also is in the master catalog and I am able to updated the catalog and install and enable v1.2.2.0 in Windows using O5.8. I believe the MacOS plugin exists and works.
rgleason is online now   Reply With Quote
Old 28-04-2023, 17:57   #161
Registered User

Join Date: Feb 2010
Location: Tierra del Fuego
Boat: Phantom 19
Posts: 6,216
Re: Plugin Polar

Except some z-order issue (for which I will send a PR during the weekend) the 1.2.2.0 version seems to be working on macOS.
But my system is Monterey on Intel, so I can't completely deny that it does not work for mueyu...
Attached Thumbnails
Click image for larger version

Name:	Polar_Diagram_and_OpenCPN_5_8_0-0.jpg
Views:	50
Size:	326.7 KB
ID:	274750  
nohal is offline   Reply With Quote
Old 29-04-2023, 18:51   #162
Registered User

Join Date: Feb 2010
Location: Tierra del Fuego
Boat: Phantom 19
Posts: 6,216
Re: Plugin Polar

mueyu...
While fixing the other problems this plugin had today I found out that there are situations when it simply does not create the toolbar icon. Nothing to do with macOS, it was broken everywhere. Fix sent upstream with the others.
nohal is offline   Reply With Quote
Old 04-05-2023, 04:55   #163
Registered User
 
rgleason's Avatar

Join Date: Mar 2012
Location: Boston, MA
Boat: 1981 Bristol 32 Sloop
Posts: 17,685
Images: 2
Re: Plugin Polar

Polar v1.2.3 has been updated and is in Catalog "master"

Please test

Also autopilot_route v0.4.12 will soon be there to test.
Using TP 1.0.127


Does it work with MacOS?
rgleason is online now   Reply With Quote
Old 13-05-2023, 00:34   #164
Registered User

Join Date: Jun 2009
Posts: 42
Re: Plugin Polar

Is Polar available in O582 under Flatpak? Cannot see in the plugin manager
Save Our Souls is offline   Reply With Quote
Old 22-05-2023, 14:03   #165
Registered User
 
BigAl.NZ's Avatar

Join Date: Sep 2008
Location: Auckland, NZ
Boat: Hood 38 - Wauquiez
Posts: 725
Re: Plugin Polar

I have crossed the pacific and made polars for my boat. The issue is that when the boat surfs down waves you get these unrealistic "peak" speeds - which are never maintainable.

Is there a fix for this?
BigAl.NZ is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off


Advertise Here


All times are GMT -7. The time now is 17:45.


Google+
Powered by vBulletin® Version 3.8.8 Beta 1
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Social Knowledge Networks
Powered by vBulletin® Version 3.8.8 Beta 1
Copyright ©2000 - 2024, vBulletin Solutions, Inc.

ShowCase vBulletin Plugins by Drive Thru Online, Inc.