Cruisers Forum
 


Closed Thread
  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: 4 votes, 4.75 average. Display Modes
Old 14-09-2009, 08:50   #1276
Registered User
 
sinbad7's Avatar

Join Date: Sep 2003
Location: Ubatuba,SP,Brazil (Ex Norway)
Boat: (Ex) Alu. 60' yacht-"Eight Bells"
Posts: 2,731
Images: 57
Send a message via Skype™ to sinbad7
LeaseOnLife..
Quote:
Sindbad, wonderful boats, but please take this to another thread!
Ooops!! Sorry for the intrusion.. a little off topic,but I WAS hoping perhaps to put OpenCPN to follow the race by AIS,which,after all should be of some interest here. Judging by previous 'off-topic' messages,I am not the only one.

As some of our techno guys seem to be under some stress,perhaps we should set up a fresh thread for us mere mortals? On the other hand,as the saying goes: "Large streams from little fountains flow!"
__________________
"And all I ask is a tall ship and a star to steer her by."
sinbad7 is offline  
Old 14-09-2009, 09:36   #1277
Registered User

Join Date: Feb 2009
Posts: 58
NMEA out

Scotte....I have succesfully used SeaClear outputting nmea onto the seatalk network thru the convertor (Raymarine product)....works just fine. I haven't found a way to make Opencpn send the data. Bruce
bhcva is offline  
Old 14-09-2009, 14:25   #1278
Registered User

Join Date: Sep 2009
Location: Angers - France
Boat: Beneteau First 29 Ptizef
Posts: 844
Dave,
I test for a few days 133 903 then 911 and I use Vista.
Two problems was detected :
1)The "Send to GPS" function doesn't work any more .When clicking on it , it happens nothing . It was OK in 132 .
2)The keys F10 and F11 don't works well . Sometimes , when pushing on one , it's happen nothing and I have to push many times . It was the same in 903
Also I would like to suggest some improvements :
1) Active routes :
Possibility to see in a small pop up window the bearing and length of a leg when pointing on it ( instead of opening the properties window to see these informations )
2) Route and WPs activation
When activate a route , the first route's WP is always activated without consideration of the boat position . I suggest the activation of a route activate always the next point AFTER the boat in the route (as it is the case in my Garmin)
3) route/WP management
Add the possibility to modify all WPs directly in the route properties window
4) The functions "delete all WP" and "delete all routes" should be accessed from the general menu ("Max details here ..............Object query") and not from the WP and routes menus
5)Could it be possible to have actual mean speed and times in the tracks properties window instead of the "planned speed" and times calculated with it which is relevant for a planned route but not for tracks .

Many thanks

Jean Pierre
Ptizef is offline  
Old 14-09-2009, 14:49   #1279
Registered User
 
LeaseOnLife's Avatar

Join Date: Apr 2008
Location: out cruising again, currently in Fiji
Boat: Sailboat
Posts: 1,466
F10 & F11 sluggishness

Dave, Jean Pierre

I am glad Jean Pierre mentioned it, I thought it was me, fat-fingering..

F10 & F11 do have a problem.

Here is what I can make reproducible, somewhat:

  • F10 is being ignored every second time.
  • When using F11 after an odd number of F10, it is being ignored, any amounts of F11s don't do anything. hitting F10 one more time or clicking the mouse on the chart area seems to make F11 work.
  • When using F11 after an even number of F10s, it works.
  • Basically, when using F11 after F10 has been ignored, then F11 works.
  • Once F11 works, it works every time until one hits F10.
  • The problem does not occur when using the on screen buttons
Weird, but hopefully this helps

Dirk

PS: I am just getting started with routing on opencpn. Jean Pierre's suggestion get a +1 from me, every single one!
LeaseOnLife is offline  
Old 14-09-2009, 15:18   #1280
Registered User

Join Date: Sep 2009
Location: Rome
Posts: 320
BSB/KAP Map Datum

Well, second post about datum conversion.

Maybe it's simpler that I thought. The KAP file header has a row that specifies how many seconds of latitude/longitude the chart has to be shifted to convert the chart map datum into WGS84. The row is identified with the code DTM/ (Datum Shift Record) followed by 2 comma separated floats specifying the lat/lon seconds towards North/East the chart has to be shifted (negative values for south/west shifts).

Refer to http://www.iho.shom.fr/publicat/free...ns_for_RNC.pdf for (little) more info.

Example: this is an extract of the .KAP file of a chart that needs to be shifted 0.06 minutes South and 0.07 minutes West (those shift values are printed on the paper chart):

....
PLY/2,42.9825886997,9.3332371953
PLY/3,42.9825757964,9.3534064474
PLY/4,42.9582750305,9.3534199359
DTM/-3.6,-4.2
CPH/0
WPX/1,-5.0727717924e+005,5.4042614513e+004,7.1159982812e+ 001
WPY/1,3.1786827369e+006,2.2571069706e+000,-7.3948263675e+004
....

I hope it will be easy for you to implement such shifts in OCPN. It would be great for non-WGS84/NAD83 charts.

Reards, Marco.
GPS-Marco is offline  
Old 14-09-2009, 15:58   #1281
Marine Service Provider
 
bdbcat's Avatar

Join Date: Mar 2008
Posts: 7,402
GPS-Marco....

Thanks for the info on the DTM record. Didn't know that.

Opencpn implements datum shift for non-WGS84 charts already. We use the datum specified in the KNP field, such as this:

KNP/SC=47600,GD=European 1950
PR=MERCATOR,PP=0.000000,PI=UNKNOWN
SP=UNKNOWN,SK=0,UN=METERS,SD=LOWEST LOW WATER,DX=4.76,DY=4.76

We calculate offsets based upon a transform depending on the "GD=" string value. This transform maps, for example, from European 1950 datum to WGS84 in a very precise way.

I tested this for two Euro 1950 charts which I have. The values calculated by opencpn for the shift offsets in seconds almost exactly matches the value specified by the DTM record in the header.

Also, some chart features like lighthouses match the corresponding CM93 chart for that region within navigational accuracy.

So I think this works correctly now.

Do you have a specific chart/location with a problem? Perhaps you could post the BSB header, including the KNP and DTM records for study.


Thanks again
Dave
bdbcat is offline  
Old 15-09-2009, 01:27   #1282
Registered User

Join Date: Sep 2009
Location: Rome
Posts: 320
Quote:
Originally Posted by bdbcat View Post
GPS-Marco....

Thanks for the info on the DTM record. Didn't know that.

Opencpn implements datum shift for non-WGS84 charts already. We use the datum specified in the KNP field, such as this:

KNP/SC=47600,GD=European 1950
PR=MERCATOR,PP=0.000000,PI=UNKNOWN
SP=UNKNOWN,SK=0,UN=METERS,SD=LOWEST LOW WATER,DX=4.76,DY=4.76

We calculate offsets based upon a transform depending on the "GD=" string value. This transform maps, for example, from European 1950 datum to WGS84 in a very precise way.

I tested this for two Euro 1950 charts which I have. The values calculated by opencpn for the shift offsets in seconds almost exactly matches the value specified by the DTM record in the header.

Also, some chart features like lighthouses match the corresponding CM93 chart for that region within navigational accuracy.

So I think this works correctly now.

Do you have a specific chart/location with a problem? Perhaps you could post the BSB header, including the KNP and DTM records for study.


Thanks again
Dave

Hi Dave, then the issue is really simple to solve. I think to remember the map header specifies GD=European Datum 1950 and not GD=European 1950. So the solution should be just to add a new string to check in the KAP header parser to recognize this GD string as ED50.

Moreover it would be great, if the parser does not recognize the map datum string, to use the DTM data record, if present: just in case some "strange" string is used to describe the datum

I'll be more precise on the exact GD string on the maps I have later on when I'll be back at home.

Let me thank you for you effort.

Ciao, Marco.
GPS-Marco is offline  
Old 15-09-2009, 11:04   #1283
Registered User

Join Date: Sep 2009
Location: Rome
Posts: 320
Quick update about map datum strings in BSB charts. Theese are the GD strings I've found (case sensitive):

GD=EUROPEAN DATUM 1950
GD=ROMA DATUM 1940
GD=ROMA 1940
GD=HERMANSKOGEL DATUM
GD=WGS84
GD=LOCAL DATUM UNKNOWN
GD=Local Datum

Almost all charts have the DTM field set (very useful for charts with GD=local/unknown ...)

Hope this help.

Ciao, Marco.
GPS-Marco is offline  
Old 16-09-2009, 11:42   #1284
Registered User
 
idpnd's Avatar

Join Date: Sep 2007
Location: Almería, ES
Boat: Chiquita 46 - Libertalia
Posts: 1,558
Having finally had a chance to upgrade to the latest CVS, I must say I do concur wiht above remarks, namely:

- The current ship icon looks far too big in all but the most magnified resolutions, and should be reverted to the red circles/cross-hair when zoomed out

- The icon does not seem to render very well, and looks far less attractive than the icons on the menu bar (I believe there is already a corrected version out?)
idpnd is offline  
Old 16-09-2009, 12:39   #1285
Registered User
 
LeaseOnLife's Avatar

Join Date: Apr 2008
Location: out cruising again, currently in Fiji
Boat: Sailboat
Posts: 1,466
New bug: Position of AIS target query window partially off screen

Happens every time after a opencpn restart:

AIS target query window shows up partially off the screen. When moved, opencpn remembers the position for all next AIS target queries, until next program start, then the first AIS target query window is back to the initial off screen position

System: XP
Screen: 1024x768
Attached Thumbnails
Click image for larger version

Name:	opencpn-ais-window-off-screen.jpg
Views:	177
Size:	236.9 KB
ID:	9976  
LeaseOnLife is offline  
Old 16-09-2009, 13:26   #1286
Obsfucator, Second Class
 
dacust's Avatar

Join Date: Feb 2008
Location: Southeast USA.
Boat: 1982 Sea Ray SRV360
Posts: 1,745
Another quirk.

After I changed the path for the SENC directory to G:\\charts\\SENC, the window size shrunk for S57 create and load.

The window is very narrow and chops off a lot of the information. Looks like the window width is based on the length of the path.

Very, very minor bug.

-dan
dacust is offline  
Old 16-09-2009, 14:10   #1287
Registered User
 
manimaul's Avatar

Join Date: Feb 2008
Location: Seattle, WA
Posts: 416
Quote:
Originally Posted by idpnd View Post
Having finally had a chance to upgrade to the latest CVS, I must say I do concur wiht above remarks, namely:

- The current ship icon looks far too big in all but the most magnified resolutions, and should be reverted to the red circles/cross-hair when zoomed out

- The icon does not seem to render very well, and looks far less attractive than the icons on the menu bar (I believe there is already a corrected version out?)
The corrections should be in the next cvs upload. See Post #1250

... the original looked much worse in gtk then msw.

Will
__________________
Marine Navigation for Android:
https://mxmariner.com
manimaul is offline  
Old 16-09-2009, 14:51   #1288
Registered User

Join Date: May 2007
Location: Mostly on the boat. Occasionally at our condo in Port St Lucie, FL.
Boat: Manta 42 Sailcat -Toucan Dream
Posts: 82
Dave here are the screen shots you asked for

I'm using XP and the stretched icon seems to happen when I zoom in with raster and vector charts. Also, my $.02 is that the icon is way too big. Something 1/4 the size would be adequate for me.

Thanks.

Regards
Chris
SV Toucan Dream
Attached Thumbnails
Click image for larger version

Name:	Snake Icon 1.jpg
Views:	131
Size:	113.9 KB
ID:	9978   Click image for larger version

Name:	Snake Icon 2.jpg
Views:	172
Size:	179.2 KB
ID:	9979  

Click image for larger version

Name:	Snake Icon 4.jpg
Views:	150
Size:	227.6 KB
ID:	9980   Click image for larger version

Name:	Snake Icon 3.jpg
Views:	160
Size:	225.9 KB
ID:	9981  

chris blair is offline  
Old 16-09-2009, 15:02   #1289
Registered User
 
LeaseOnLife's Avatar

Join Date: Apr 2008
Location: out cruising again, currently in Fiji
Boat: Sailboat
Posts: 1,466
Quote:
Originally Posted by LeaseOnLife View Post
Happens every time after a opencpn restart:

AIS target query window shows up partially off the screen. When moved, opencpn remembers the position for all next AIS target queries, until next program start, then the first AIS target query window is back to the initial off screen position

System: XP
Screen: 1024x768
Adding more findings:
opencpn only remembers the position of the window after pressing OK. If one closes the window with the close button <x> or with Alt-F4, opencpn seems to loose the position and the next time it opens the window again at the default-partially-offscreen position.
LeaseOnLife is offline  
Old 16-09-2009, 15:15   #1290
Registered User
 
sinbad7's Avatar

Join Date: Sep 2003
Location: Ubatuba,SP,Brazil (Ex Norway)
Boat: (Ex) Alu. 60' yacht-"Eight Bells"
Posts: 2,731
Images: 57
Send a message via Skype™ to sinbad7
Manimaul..

Your icons are great and a far cry from the original 'tank ship', BUT, why not make it the same size as the AIS icon? That seems to be just about right in most scales. See attached screendump of AIS ship icons. And just give it a 'plus' sign to indicate it's geo pos. I would further suggest that the yellow and red start point of the routes use the same boat icon. There is no such thing as an automatically adjustable boat icon according to chart scale I suppose?
Attached Thumbnails
Click image for larger version

Name:	ScreenHunter_01 Sep. 16 19.12.jpg
Views:	180
Size:	77.5 KB
ID:	9982  
__________________
"And all I ask is a tall ship and a star to steer her by."
sinbad7 is offline  
Closed Thread


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 11:35.


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.