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 Rating: Thread Rating: 5 votes, 5.00 average. Display Modes
Old 27-11-2023, 17:08   #3451
Registered User

Join Date: Mar 2016
Location: San Francisco
Boat: Morgan 382
Posts: 2,936
Re: Feature Requests

I don't think that fine level of control exists in any system. And personally, I would never use it. A boat under 30M could be moving at 20kts, and would be just as serious of a hazard in a collision as a tug boat. And at the high speed would need an earlier alarm time. There just isn't in my opinion a safe way to filter the data like you want to.

When I have been in areas with lots of activity it demands more situational awareness. I don't rely on an alarm to notify me of a hazard. I have on occasion turned off the audible alarm during these times because it is always alarming, but still used the visual indicators on the screen. I think that is safer than trying to somehow filter out boats that might or might not be more dangerous because I still have access to all the information.

I doubt many recreational vessels are installing Class A. Class A is much more expensive and complicated to setup and install. However, SOTDMA Class B+ provides the same features as Class A for the low price of Class B.
__________________
-Warren
wholybee is offline   Reply With Quote
Old 28-11-2023, 04:31   #3452
Registered User
 
sailingharry's Avatar

Join Date: Jun 2009
Location: Annapolis, MD
Boat: Sabre 34-1 (sold) and Saga 43
Posts: 2,320
Re: Feature Requests

We will have to agree to disagree. I'm clearly an outlier, as no system allows this.
* A 20 kt power boat is just as much of a risk as a freighter, but I would still be comfortable getting an alarm 5 minutes out for him, and be comfortable passing 100 yards away -- neither would make me comfortable with a freighter.
* Unfortunately, in high traffic areas, it means the alarm is turned off. The on-screen is always on, I think -- but seeing the icon on the screen means you already see them! And for higher speed boats, the screen scale makes the boat off-screen until a short time before CPA.
* I suspect you are right about Class A on pleasure boats.


Alarms are really not a substitute for good watch standing, which means that even installing them at all is a pointless feature that arguably encourages poor watch standing. No prudent mariner should ever hear an alarm about any vessel (or really, any alarm about anything) that was not already identified as a hazard.


The good news is we've moved 50 miles south of Annapolis, so the issue is sort of moot.
sailingharry is offline   Reply With Quote
Old 03-02-2024, 01:19   #3453
Registered User

Join Date: Oct 2006
Location: Norfolk UK
Boat: Hunter 34
Posts: 21
Re: Feature Requests

Re Watchdog Course.
It would be great to have a XTE option from an activated route in Course Alarm with the option to set distance . (The XTE comes up in the activated route box)
Also an arrival at next waypoint alarm, also with set distance to waypoint.
__________________
Richard
s/v Lucky Dragon
HunterWanderer is offline   Reply With Quote
Old 03-02-2024, 06:43   #3454
Registered User

Join Date: Jun 2023
Posts: 1
Re: Feature Requests

Hello,
We use open cpn both for navigation and anchor watch. To save power when we are at anchor, we use an Open cpn on a raspberry pi. This is installed with flatpak, which means that we cannot add new alarms to the anchor watch. Is it possible to add more suitable alarms in open cpn? Alarms that wake us up Typically alarms are diving alarms from submarines or other noisy sounds.
Regards, Roger
Roleiv is offline   Reply With Quote
Old 03-02-2024, 09:17   #3455
Registered User
 
Antipole's Avatar

Join Date: Oct 2019
Location: Emsworth, UK
Boat: Alubat Ovni 395
Posts: 287
Re: Feature Requests

Quote:
Originally Posted by HunterWanderer View Post
Re Watchdog Course.
It would be great to have a XTE option from an activated route in Course Alarm with the option to set distance . (The XTE comes up in the activated route box)
Also an arrival at next waypoint alarm, also with set distance to waypoint.
This JavaScript does this for you:

Code:
xteOff = 0.01;	// nm
arrival = 0.01;
OCPNonNMEAsentence(gotOne);

function gotOne(message){
	if (message.OK){
		if (message.value.slice(3,6) == "XTE"){
			splut = message.value.split(",");
			if (splut[4] > xteOff) OCPNsoundAlarm();
			}
		else if (message.value.slice(3,6) == "RMB"){
			splut = message.value.split(","); 
			if (splut[9] <= arrival) OCPNsoundAlarm();
			}
		}
	OCPNonNMEAsentence(gotOne);
	}
In the forthcoming v3 of the plugin (in beta) it could be simplified to the easier to understand and more efficient
Code:
xteOff = 0.01;	// nm
arrival = 0.01;
OCPNonAllNMEA0183(gotXte, "XTE");
OCPNonAllNMEA0183(gotRmb, "RMB");

function gotXte(message){
	if (message.OK){
		splut = message.value.split(",");
		if (splut[4] > xteOff) OCPNsoundAlarm();
		}
	}

function gotRmb(message){
	if (message.OK){
		splut = message.value.split(",");
		if (splut[9] <= arrival) OCPNsoundAlarm();
		}
	}
The above compile OK but I have not tested them.
Antipole is offline   Reply With Quote
Old 04-02-2024, 09:39   #3456
Registered User

Join Date: Jun 2022
Location: Cantabria
Boat: Jeanneau - Merry Fisher 925
Posts: 428
Re: Feature Requests

I guess already ask about this feature, but don't know if I got an answer.

could be controlled the thickness of the own range rings?

because I see in some computer very thick but I do no find any control, variable neither a key in the settings.ini file about it.

as you can see in the attachment the width of the circle are really big, I want to make then narrower.
Attached Thumbnails
Click image for larger version

Name:	sshot-1.png
Views:	12
Size:	45.5 KB
ID:	286029  
__________________
Corsair

Roses don't bloom on the sailor's grave
Corsair63 is offline   Reply With Quote
Old 12-02-2024, 04:06   #3457
Registered User

Join Date: Sep 2023
Location: Cruising
Posts: 324
Re: Feature Requests

Think it would possible to add a tick box "centre on boat" on the set scale input box?
Would be useful on slower machines like my Pi3 where zooming is a bit sluggish.
Should I put this in flyspray?

Thnx gang
barcoMeCasa is online now   Reply With Quote
Old 12-02-2024, 04:37   #3458
Registered User

Join Date: Nov 2012
Location: Orust Sweden
Boat: Najad 34
Posts: 4,150
Re: Feature Requests

You've a "center on boat" button (the ship icon) to the right of the chart scale control. Or key "F2".
Hakan is offline   Reply With Quote
Old 12-02-2024, 05:30   #3459
Registered User

Join Date: Sep 2023
Location: Cruising
Posts: 324
Re: Feature Requests

Quote:
Originally Posted by Hakan View Post
You've a "center on boat" button (the ship icon) to the right of the chart scale control. Or key "F2".
Yep, know those thnx. On a small boat with sleep depravation getting thrown about having the choice of one less step would be nice though. Maybe with a few default clickable options while we're at it

I should dig deeper into the javascript plug in , maybe it could do something.

thanks
barcoMeCasa is online now   Reply With Quote
Old 12-02-2024, 22:11   #3460
Registered User
 
Antipole's Avatar

Join Date: Oct 2019
Location: Emsworth, UK
Boat: Alubat Ovni 395
Posts: 287
Re: Feature Requests

Quote:
Originally Posted by barcoMeCasa View Post
I should dig deeper into the javascript plug in , maybe it could do something.
Not with JavaScript plugin v2.1. But, for the forthcoming v3, I am right now adding the capability to centre the chart at a position and, optionally, set the scale.

Maybe you should PM me about exactly what you need?
Antipole is offline   Reply With Quote
Old 13-02-2024, 00:04   #3461
Registered User

Join Date: Sep 2023
Location: Cruising
Posts: 324
Re: Feature Requests

Quote:
Originally Posted by Antipole View Post
Not with JavaScript plugin v2.1. But, for the forthcoming v3, I am right now adding the capability to centre the chart at a position and, optionally, set the scale.

Maybe you should PM me about exactly what you need?
just a quick reply on here in case someone has anything to add..

Thinking a bit about this, what would be useful to me would be a couple of keyboard shortcuts, one sets scale to 1:1000, chart centred on boat and one sets scale to 1:100,000, again chart centred on boat. So basically press a key to see the boat and about either 1Nm or 5Nm radius around. Thnx.
barcoMeCasa is online now   Reply With Quote
Old 13-02-2024, 01:36   #3462
Registered User
 
Antipole's Avatar

Join Date: Oct 2019
Location: Emsworth, UK
Boat: Alubat Ovni 395
Posts: 287
Re: Feature Requests

May be able to help if I have time before setting forth for our 2024 cruise. Please raise as a requested capability in the new JavaScript plugin discussions here.
Antipole is offline   Reply With Quote
Old 13-02-2024, 02:12   #3463
Registered User

Join Date: Sep 2023
Location: Cruising
Posts: 324
Re: Feature Requests

barcoMeCasa is online now   Reply With Quote
Old 15-02-2024, 04:08   #3464
Registered User

Join Date: Sep 2023
Location: Cruising
Posts: 324
Re: Feature Requests

Quote:
Originally Posted by barcoMeCasa View Post
Yep, know those thnx. On a small boat with sleep depravation getting thrown about having the choice of one less step would be nice though.
Just discovered the chart scale plugin, makes life much easier espc with the last button

Every day is a school day
barcoMeCasa is online now   Reply With Quote
Old 18-02-2024, 06:24   #3465
Registered User

Join Date: Feb 2011
Posts: 1,108
Re: Feature Requests

The size of the lines on the tides graphic are way too thin 5.9.0-0-1193etc. How to correct this?
P_Dub 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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Yet anothr of my stupid requests Little Otter Multihull Sailboats 2 29-06-2008 23:29
Any requests for pics at Strictly Sail Oakland? Redbull addict Monohull Sailboats 0 30-03-2007 18:33
Capt.Jack requests permission to come aboard canatc1 Meets & Greets 8 10-04-2006 16:54

Advertise Here


All times are GMT -7. The time now is 01:29.


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.