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 03-05-2019, 16:46   #211
Registered User
 
phiggins's Avatar

Join Date: Nov 2004
Location: Davao, Philippines
Posts: 1,776
Send a message via Skype™ to phiggins
Re: OpenCPN Version 5 Released

"while non-trivial to do right on our side"

Seems to me introducing a whole new set of metadata is not trivial.
__________________
Paul,
" One moment you are running along, the next you are no more." Dean Spanley
phiggins is offline   Reply With Quote
Old 03-05-2019, 16:51   #212
Registered User

Join Date: Feb 2010
Location: Tierra del Fuego
Boat: Phantom 19
Posts: 6,235
Re: OpenCPN Version 5 Released

Quote:
Originally Posted by phiggins View Post
"while non-trivial to do right on our side"

Seems to me introducing a whole new set of metadata is not trivial.
Paul...

Handling well defined key-value pairs is a trivial problem. Parsing html, or any other free-form text is non-trivial. Creating such text is also by orders of magnitude more error prone while that text is being created.
There is simply no way you might convince me that what you suggest makes any sense in a situation where we are looking at a sql table storing those key-value pairs, regardless of how many times you will repeat it. It does not.
nohal is offline   Reply With Quote
Old 03-05-2019, 17:02   #213
Registered User
 
phiggins's Avatar

Join Date: Nov 2004
Location: Davao, Philippines
Posts: 1,776
Send a message via Skype™ to phiggins
Re: OpenCPN Version 5 Released

Fine, doesn't matter to me I can change Sat2Chart to create whatever metadata you come up with while the non-Sat2Chart users will have to create their mbtiles then run another program to add the metadata. Just one more reason to use Sat2Chart to create mbtiles.
__________________
Paul,
" One moment you are running along, the next you are no more." Dean Spanley
phiggins is offline   Reply With Quote
Old 03-05-2019, 17:24   #214
Registered User

Join Date: Feb 2010
Location: Tierra del Fuego
Boat: Phantom 19
Posts: 6,235
Re: OpenCPN Version 5 Released

Quote:
Originally Posted by phiggins View Post
Fine, doesn't matter to me I can change Sat2Chart to create whatever metadata you come up with.
We have no plans to contribute to the MBTiles format standard at the moment.
We will consider implementing support for new metadata if there will be new metadata available in the tilesets that get to us.
If your attitude is "I will wait for OpenCPN", you will probably wait for a long time. At least until some other tileset producer introduces metadata you are interested in plus the margin it will take us to realize it exists, decide we want to support it and implement the support...
nohal is offline   Reply With Quote
Old 03-05-2019, 17:39   #215
Registered User
 
phiggins's Avatar

Join Date: Nov 2004
Location: Davao, Philippines
Posts: 1,776
Send a message via Skype™ to phiggins
Re: OpenCPN Version 5 Released

So meanwhile looking at a mbtiles chart, you have no idea what the depth units are. I will start putting it in the Name field along with the Creation date so at least clicking on the oval at the bottom you know what the depth units are.

Nohal, providing support for mbtiles in OpenCpn was brilliant. Mbtiles charts are so much better than kaps. There is no loss of color which is so important for charts created from satellite data. I don't think any other navigation program has it.
__________________
Paul,
" One moment you are running along, the next you are no more." Dean Spanley
phiggins is offline   Reply With Quote
Old 03-05-2019, 19:15   #216
Marine Service Provider
 
bdbcat's Avatar

Join Date: Mar 2008
Posts: 7,514
Re: OpenCPN Version 5 Released

ejs....


Regarding the faults seen on some RPI systems:
Clearly this is trouble with OpenGL. What we need is a gdb (or ddd) stack backtrace of the fault in action. With that we may be able to discover the root cause.



Dave
bdbcat is offline   Reply With Quote
Old 03-05-2019, 22:22   #217
ejs
Registered User

Join Date: Mar 2013
Location: From San Francisco
Boat: Leopard 48
Posts: 182
Re: OpenCPN Version 5 Released

I think this is what you need, I'm not a gdb wiz...

I do notice there is a library mismatch, how can I correct that, it doesn't seem to appear in the package name...

Eric
ejs is offline   Reply With Quote
Old 04-05-2019, 02:25   #218
Registered User
 
transmitterdan's Avatar

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

Eric,

If you try to attach something only certain file types are accepted. For example, the file type .pdf is accepted. This is a good choice because also depending on file type the web site may discard a file as being too long. So a good workaround is to rename the file with .pdf extension then it will attach. Just put in the message the correct file name and we will rename it when downloading.
transmitterdan is offline   Reply With Quote
Old 04-05-2019, 03:07   #219
ejs
Registered User

Join Date: Mar 2013
Location: From San Francisco
Boat: Leopard 48
Posts: 182
Re: OpenCPN Version 5 Released

Sorry, I thought text files were OK. Here is a txt with the extension changed to PDF. Thanks.



Eric
Attached Files
File Type: pdf GDB_output.pdf (4.4 KB, 35 views)
ejs is offline   Reply With Quote
Old 04-05-2019, 09:19   #220
Marine Service Provider
 
bdbcat's Avatar

Join Date: Mar 2008
Posts: 7,514
Re: OpenCPN Version 5 Released

ejs....


OK, good gdb trace. Failing on determining the GL capabilities of the platform.

Not sure why the GL drivers are crashing on these systems. But a reliable way to get them to run without GL requires a build from source, changing the following lines in OCPNPlatform.cpp:


Code:
void OCPNPlatform::Initialize_3( void )
{
    
    bool bcapable = false; //IsGLCapable();

#ifdef ocpnARM         // Boot arm* platforms (meaning rPI) without OpenGL on first run
    bcapable = false;
#endif

Note the "bool bcapable = false" modification.


Anything else we can discover about GL on these units would be useful....


Good luck
Dave
bdbcat is offline   Reply With Quote
Old 04-05-2019, 14:00   #221
mcm
Registered User

Join Date: Oct 2011
Posts: 180
Re: OpenCPN Version 5 Released

where can I download a previous version, ?
mcm is offline   Reply With Quote
Old 04-05-2019, 14:21   #222
Registered User

Join Date: Feb 2010
Location: Tierra del Fuego
Boat: Phantom 19
Posts: 6,235
Re: OpenCPN Version 5 Released

Quote:
Originally Posted by mcm View Post
where can I download a previous version, ?
Which version, of what and for which platform?
nohal is offline   Reply With Quote
Old 04-05-2019, 15:15   #223
mcm
Registered User

Join Date: Oct 2011
Posts: 180
Re: OpenCPN Version 5 Released

the version that had the menu board across the top of the screen and did not need a new gps receiver..win 7 platform, I don't the version of opencpn that has those features but the latest one that does will do just fine. 4. ???
mcm is offline   Reply With Quote
Old 04-05-2019, 15:16   #224
Registered User

Join Date: Feb 2010
Location: Tierra del Fuego
Boat: Phantom 19
Posts: 6,235
Re: OpenCPN Version 5 Released

Quote:
Originally Posted by mcm View Post
the version that had the menu board across the top of the screen and did not need a new gps receiver..win 7 platform, I don't the version of opencpn that has those features but the latest one that does will do just fine. 4. ???
Could you explain why you think OpenCPN 5.0 needs a new GPS receiver? It does not.
nohal is offline   Reply With Quote
Old 04-05-2019, 15:18   #225
mcm
Registered User

Join Date: Oct 2011
Posts: 180
Re: OpenCPN Version 5 Released

The software indicates that the older gps units do not work well with ver 5, any way I prefer the older version to this one..
mcm 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
  Vendor Spotlight
No Threads to Display.


All times are GMT -7. The time now is 00:55.


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.