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 04-02-2016, 13:20   #46
Registered User
 
transmitterdan's Avatar

Join Date: Oct 2011
Boat: Valiant 42
Posts: 6,008
Re: OpenCPN Version 4.2 Released

Quote:
Originally Posted by Gilletarom View Post
Hello Dave,


With W 8.1. Enable the two slider in "Options/User interface"

My first route, already traced, imported or newly drawn with several WP.
I draw a second route with a first WP far from the first route and a second WP very close to a WP of the first route. Popup opens and I select "Yes" or "No". No problem.
BUT
If I place the first WP of the second route very close to a WP of the first route, then crash.
Easily reproduced.
Bug confirmed on Win 10. The fault starts here at line 1040 in Route.cpp:

wxRoutePointListNode *node = pRoutePointList->GetFirst();

For some reason this returns node=NULL then the NULL node pointer is used in the next line:

RoutePoint *data = node->GetData();

Need to figure out whether the GetFirst() method should ever return a NULL route point. I think the bug is that it should not. But still would be a good idea to check for a NULL return pointer. If one adds 2 lines to check for NULL pointer then all works ok:

Code:
    wxRoutePointListNode *node = pRoutePointList->GetFirst();
    if (node == NULL)
        return RBBox;

    RoutePoint *data = node->GetData();
transmitterdan is offline   Reply With Quote
Old 04-02-2016, 13:26   #47
Registered User
 
transmitterdan's Avatar

Join Date: Oct 2011
Boat: Valiant 42
Posts: 6,008
Re: OpenCPN Version 4.2 Released

Quote:
Originally Posted by DomNomade View Post
I checked the opencpn.log and each time I get this entry at the last line:
21:19:19: ***GPS Watchdog timeout at Lat:47.5409 Lon: -2.8979

What does this GPS timeout means ?
on 4.0 on the same platform and same HW ( with no GPS connected, just for testing) I do not have this.

I hope this helps
Dom
Dom,

GPS timeout message is normal if there is no GPS connected. I think this may be a new message since 4.0. It is harmless.
transmitterdan is offline   Reply With Quote
Old 04-02-2016, 13:44   #48
Registered User

Join Date: Feb 2016
Location: France / South Brittany
Boat: DEHLER 31, 9m40
Posts: 6
Re: OpenCPN Version 4.2 Released

OK, thanks
I just mentionned this as it occurred each time I got a crash with the route creation on existing WP .
DomNomade is offline   Reply With Quote
Old 04-02-2016, 14:35   #49
Registered User

Join Date: May 2011
Posts: 847
Re: OpenCPN Version 4.2 Released

Many graphics are missing from the OD plugin pages of the included manual especially from "Interface at the icon Toolbar" and down.

P.S. Where to find the GHSSH high res background man mentioned in the WD plugin as the link doesn't work?

Cheers
Chris


SY Morgane
http://tweedsworld.com
Littlechay is offline   Reply With Quote
Old 04-02-2016, 15:30   #50
Registered User
 
LeaseOnLife's Avatar

Join Date: Apr 2008
Location: out cruising again, currently in Fiji
Boat: Sailboat
Posts: 1,469
Re: OpenCPN Version 4.2 Released

Quote:
Originally Posted by Littlechay View Post

P.S. Where to find the GHSSH high res background man mentioned in the WD plugin as the link doesn't work?
works for me:

http://opencpn.org/ocpn/downloads/data/GshhsHiRes.zip
LeaseOnLife is offline   Reply With Quote
Old 04-02-2016, 15:42   #51
Registered User
 
sbfreddie's Avatar

Join Date: Mar 2012
Location: Southern Texas, Port Isabel
Boat: I Wish
Posts: 175
Images: 1
Send a message via Skype™ to sbfreddie
Re: OpenCPN Version 4.2 Released

Quote:
Originally Posted by bdbcat View Post
sbfreddie...

We do not include the "intermediate" density gshhs files in github repo, because they are so large.

For a linux build, you may want to specifiy the gshhs files to include as documented in CMakeLists.txt...

example:

Code:
$cmake -DBUNDLE_GSHHS=CRUDE ..
Dave
Dave:
I'm a little confused, in the Chart Sources section of the manual it says:

High Resolution Background Map
A more detailed version of the built in background map is available here (http://opencpn.org/ocpn/downloads/data/GshhsHiRes.zip).
It is a big file, 230 mb(unzipped) compared to the standard 26mb, and may slow your computer down. The presentation is better when zoomed in, but most users don't need it.
Install by unzipping and placing the files in the <install_dir>/gshhs .
<install_dir> is normally ...Program Files/OpenCPN on Windows and /usr/share/opencpn/ on a Linux default installation.

So my script downloads this file, then installs it in the /data/gshhs folder before it builds O. Is this the wrong way to do this, because its been working for a couple of years just fine but now it barfs at the make install.

My cmake configure line looks like this:

cmake DPREFIX=${DESTDIR} -DBUNDLE_DOCS=ON -DBUNDLE_TCDATA=ON -DBUNDLE_GSHHS=FULL ../

The cmake, and make part of the build work just fine, it's just the make install that stops because it can't find the missing file.

Ubuntu 14.04.3 running on Tegra TK1 (ARMHF).
Thanks,
Freddie
sbfreddie is offline   Reply With Quote
Old 04-02-2016, 18:18   #52
Registered User

Join Date: May 2011
Posts: 847
Re: OpenCPN Version 4.2 Released

Quote:
Originally Posted by LeaseOnLife View Post
strange; I get a dead link when I click the one in the watchdog section of the help.. it all looks the same though...
Littlechay is offline   Reply With Quote
Old 04-02-2016, 18:55   #53
Marine Service Provider
 
bdbcat's Avatar

Join Date: Mar 2008
Posts: 7,463
Re: OpenCPN Version 4.2 Released

sbfreddie/littlechay...

The file you want is now at:
http://opencpn.navnux.org/data/openc...s_2.2.4.tar.xz

This archive has all of the gshhs resolutions available. The contents should be moved/copied to data/gshhs directory in the build tree, before the "$make install" step.

Feel free to update the doc Wiki to reflect your experiences in building...

Thanks
Dave
bdbcat is offline   Reply With Quote
Old 04-02-2016, 21:41   #54
Registered User

Join Date: May 2010
Posts: 86
Re: OpenCPN Version 4.2 Released

Works great on Windows 10 here. Thanks for all the hard work!

Any update on the Ubuntu repository? I am dying to test my new Simrad 4G.

Cheers, ....Erik.
MarineHandbooks.com
ve7mdl is offline   Reply With Quote
Old 05-02-2016, 01:56   #55
Registered User

Join Date: Nov 2010
Posts: 74
Re: OpenCPN Version 4.2 Released

Hello,

"If the chart is not using WGS 84, but a named, recognized datum, OpenCPN will automatically add necessary corrections."

Is there change in this version ?
My charts BSB with european 1950 are now not good.
It was ok with all the beta before 4.2 (.... 4.1.1308)
Thank you
tiersp is offline   Reply With Quote
Old 05-02-2016, 01:57   #56
Registered User
 
NEVERMIND's Avatar

Join Date: Apr 2011
Location: CORSE
Boat: PRIVILEGE 12
Posts: 157
Images: 3
Re: OpenCPN Version 4.2 Released

Hi,
If i want to build a road near an other waypoint, the windows open: do you want to use this waypoint and after opencpn turn off.

windows 8.1
opencpn 4.2

On MacBook Pro it was correctly
OS X EL CAPITAN 10.11.3

Jean Paul
NEVERMIND is offline   Reply With Quote
Old 05-02-2016, 02:19   #57
Registered User
 
NEVERMIND's Avatar

Join Date: Apr 2011
Location: CORSE
Boat: PRIVILEGE 12
Posts: 157
Images: 3
Re: OpenCPN Version 4.2 Released

Hi,

A way:
i have instaled O Draw on Opencpn 4.0 : same problem
I cleaned this version reboot the pc and instal 4.0: no problem

i do the same process with opencpn 4.2: same problem

Jean Paul
NEVERMIND is offline   Reply With Quote
Old 05-02-2016, 02:35   #58
Registered User
 
NEVERMIND's Avatar

Join Date: Apr 2011
Location: CORSE
Boat: PRIVILEGE 12
Posts: 157
Images: 3
Re: OpenCPN Version 4.2 Released

With Mac is was corectly but the windows for the choose don't appair!

Jean Paul
NEVERMIND is offline   Reply With Quote
Old 05-02-2016, 04:00   #59
Registered User
 
Gilletarom's Avatar

Join Date: Mar 2010
Location: France
Boat: 10.50 mètres
Posts: 3,007
Re: OpenCPN Version 4.2 Released

Dave

Just one question you answer, if you have time. This relates to touch screens. You know, my W10 tablet has a screen of very good quality and only 10 inches diagonally. Therefore, the pixel size is very small.
I try to highlight on this tablet, the little bug spotted by DonNomade. I can not. Yet I know it is because we are already confirmed three of which Hakan to say.

When I want to make a road, I see that with my finger, I can not place a WP really where I want. Then difficult to move and to improve the positioning.

Another idea would be to place a waypoint, roughly. Then, by fixing the position of the waypoint in the "map area", move the chart, not with one finger, but with two fingers. Chart would move and bring the point of the "chart" just under the WP. After that, we would validate. What would hang the WP definitively at this point of the chart.

It would be much easier. Best regards. Gilletarom.
Gilletarom is offline   Reply With Quote
Old 05-02-2016, 04:29   #60
Registered User

Join Date: Apr 2012
Location: Port Steven, NSW, Australia
Boat: Van der Stadt Samoa 48
Posts: 142
Re: OpenCPN Version 4.2 Released

I get the following notice when trying to install 4.2. I have downloaded the program several times with the same response. I am running windows 8.1
Attached Thumbnails
Click image for larger version

Name:	4.2 install error.PNG
Views:	222
Size:	9.9 KB
ID:	118369  
Taarnskov is offline   Reply With Quote
Reply

Tags
enc, lease, opencpn


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
OpenCPN Beta Version 3.1.814 Released bdbcat OpenCPN 185 14-09-2012 07:43
OpenCPN Beta Version 3.1.802 Released bdbcat OpenCPN 158 14-08-2012 10:07
OpenCPN Beta Version 3.1.714 Released bdbcat OpenCPN 91 01-08-2012 17:08

Advertise Here


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


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.