Cruisers Forum
 

Go Back   Cruisers & Sailing Forums > Seamanship, Navigation & Boat Handling > OpenCPN
Cruiser Wiki Click Here to Login
Register Vendors FAQ Community Calendar Today's Posts Log in

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 20-07-2015, 08:02   #31
Registered User

Join Date: Nov 2012
Location: Orust Sweden
Boat: Najad 34
Posts: 4,147
Re: OpenCPN for Android Beta test 4.1.718

A track issue introduced in this beta. (The track function was as normal in 4.1.705 built last week.)
Build: WinXP, VC2010, wx3.0.02
Run: WinXP and W7

Ships own track is not visible but recorded. If I switch the track of using the tool bar icon the track is drawn to the point where it was switched off. If I switch it on again the track is again not shown until it's switched off. The off switching evokes the track again.
If close OCPN and reopen it the recored tracks are correct shown with interruptions where the function was switched off.

Håkan
Hakan is offline   Reply With Quote
Old 20-07-2015, 08:04   #32
Registered User
 
HappySeagull's Avatar

Join Date: Dec 2010
Location: B.C.,Canada
Boat: 29'
Posts: 2,423
Re: OpenCPN for Android Beta test 4.1.718

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

Will you test your user icons? I seem to remember some flakiness there...

Thanks
Dave
Dave, UserIcon selection is still peculiar as noted previous beta.
Quote:
I still see a limit to the amount of users' own icons...that is,three, of my own plus the included ones. ....... AHA! I have it. I must choose one of (only) ....three of my custom icons offered.... at the bottom of the list. and only then, later,(by trying to change the icon to one of my own) I get the larger selection of my own icons...oddity!
(http://www.cruisersforum.com/forums/...ml#post1865994)
HappySeagull is offline   Reply With Quote
Old 20-07-2015, 08:07   #33
Marine Service Provider
 
bdbcat's Avatar

Join Date: Mar 2008
Posts: 7,401
Re: OpenCPN for Android Beta test 4.1.718

Nohal...

re:
"Drawing of light sectors looks very ugly - may need anti-aliasing/smoothing?"

This is new. Relates to "disappearing ENC objects" for some GL implementations. If we use smooth drawing, the features fade out as you pan, just like the chart outlines used to. So I turned off smooth drawing.

S52plib.cpp
Code:
    //      Now render the symbol
    if( !m_pdc ) // opengl
    {
#ifdef ocpnUSE_GL
        glPushMatrix();
        glTranslatef( r.x, r.y, 0 );
         
        glScalef(scale_factor, scale_factor, 1);
        glVertexPointer(2, GL_FLOAT, 2 * sizeof(float), buffer.data);

#ifndef __OCPN__ANDROID__
        glEnable( GL_BLEND );
        glEnable( GL_LINE_SMOOTH );
#endif        

.
.
.


I can't reproduce this locally, so I'm just guessing at the correct GL drawing parameters to use. Doesn't happen on emulator. Doesn't happen on any of my four real zoo residents.

So, what I need to know is this:
"What is the cheapest and easiest to obtain tablet/phone that exhibited the earlier problem of disappearing ENC vector chart objects over some region of the screen?" I'll get one for testing....

Thanks
Dave
bdbcat is offline   Reply With Quote
Old 20-07-2015, 08:10   #34
Marine Service Provider
 
bdbcat's Avatar

Join Date: Mar 2008
Posts: 7,401
Re: OpenCPN for Android Beta test 4.1.718

jean pierre...

GPX Export file selector process is broken. I can reproduce it. Fixed for next Beta.

Thanks
Dave
bdbcat is offline   Reply With Quote
Old 20-07-2015, 08:13   #35
Marine Service Provider
 
bdbcat's Avatar

Join Date: Mar 2008
Posts: 7,401
Re: OpenCPN for Android Beta test 4.1.718

Hakan....

Track display problem noted and reproduced. Thanks

Dave
bdbcat is offline   Reply With Quote
Old 20-07-2015, 08:29   #36
Registered User
 
HappySeagull's Avatar

Join Date: Dec 2010
Location: B.C.,Canada
Boat: 29'
Posts: 2,423
Re: OpenCPN for Android Beta test 4.1.718

Opining....
I find where controls are available in the Menu, or along the top(which I like) I do not want them in the Toolbar.

I do not want a toolbar at all , except that I find I need the Zoom buttons and the Toolbox button (the only wayto get advanced settings)

speaking of which (editing toolbar) it takes a lot of twisting and turning the screen to finally get the option to get rid of MOB icon....
HappySeagull is offline   Reply With Quote
Old 20-07-2015, 08:49   #37
Marine Service Provider
 
bdbcat's Avatar

Join Date: Mar 2008
Posts: 7,401
Re: OpenCPN for Android Beta test 4.1.718

Happy....

Pavel (nohal) reports problems with built-in waypoint icons, probably related to your custom icon troubles. I see some problems here too. So, this goes on my punch list.

Thanks
Dave
bdbcat is offline   Reply With Quote
Old 20-07-2015, 09:05   #38
ejs
Registered User

Join Date: Mar 2013
Location: From San Francisco
Boat: Leopard 48
Posts: 175
Re: OpenCPN for Android Beta test 4.1.718

Dave,

The Android toolbar on the bottom is the default behavior on this tablet, I couldn't find any setting to change it. It was also like this in 4.0 before it was upgraded. I also have the Verizon version of the same tablet and it is the same.

It does not seem to waste any extra real estate at the top, in my screenshot, the OpenCPN icon on the left seems to be very close the top of the usable area, maybe a few pixels of black, I bet the Icon does not go exactly to the top of the area that is blocked out for aesthetic reasons. it would be nice if the black Android are could collapse like the "Advanced O" toolbar, that is a great area-saving feature which doesn't detract from usability.

Best, Eric
ejs is offline   Reply With Quote
Old 20-07-2015, 09:38   #39
Registered User

Join Date: Feb 2010
Location: Tierra del Fuego
Boat: Phantom 19
Posts: 6,211
Re: OpenCPN for Android Beta test 4.1.718

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

re:
"Drawing of light sectors looks very ugly - may need anti-aliasing/smoothing?"

This is new. Relates to "disappearing ENC objects" for some GL implementations. If we use smooth drawing, the features fade out as you pan, just like the chart outlines used to. So I turned off smooth drawing.

S52plib.cpp
Code:
    //      Now render the symbol
    if( !m_pdc ) // opengl
    {
#ifdef ocpnUSE_GL
        glPushMatrix();
        glTranslatef( r.x, r.y, 0 );
         
        glScalef(scale_factor, scale_factor, 1);
        glVertexPointer(2, GL_FLOAT, 2 * sizeof(float), buffer.data);

#ifndef __OCPN__ANDROID__
        glEnable( GL_BLEND );
        glEnable( GL_LINE_SMOOTH );
#endif        

.
.
.
I can't reproduce this locally, so I'm just guessing at the correct GL drawing parameters to use. Doesn't happen on emulator. Doesn't happen on any of my four real zoo residents.

So, what I need to know is this:
"What is the cheapest and easiest to obtain tablet/phone that exhibited the earlier problem of disappearing ENC vector chart objects over some region of the screen?" I'll get one for testing....

Thanks
Dave
Dave...
Seems to be mostly Samsung devices. At least my TAB Pro displayed the initial chart boundaries problem for sure. Not exactly falling into the "cheapest possible" category though. I will probably be able to get hold of a low end Galaxy phone tonight so will have a look how we behave there.

Pavel
nohal is online now   Reply With Quote
Old 20-07-2015, 10:05   #40
Registered User

Join Date: Aug 2009
Location: Central New Jersey USA
Boat: Cape Dory 28 (Sold Nov 2019)
Posts: 236
Re: OpenCPN for Android Beta test 4.1.718

Raw beginner with OCPN Android, trying to catch up. Superb application. Is there a provision for standard OpenCPN plugins?
__________________
Good luck and good sailing.
s/v Kerry Deare of Barnegat
kerrydeare is offline   Reply With Quote
Old 20-07-2015, 10:15   #41
bcn
Registered User

Join Date: May 2011
Location: underway whenever possible
Boat: Rangeboat 39
Posts: 4,740
Re: OpenCPN for Android Beta test 4.1.718

This is still very beta.
Functionalities from plug-ins - tbd. which and how - will come later.

In the meanwhile please test & report, and remember: the Wiki needs somebody who takes on with documenting the Android user interface and specialties.

Hubert
bcn is offline   Reply With Quote
Old 20-07-2015, 10:16   #42
ejs
Registered User

Join Date: Mar 2013
Location: From San Francisco
Boat: Leopard 48
Posts: 175
Re: OpenCPN for Android Beta test 4.1.718

Kerry,

Not yet, it is still in the early testing stages. You can root you tablet and run OpenCPN under linux to get plugin-ins but it is a bit more work.

Eric
ejs is offline   Reply With Quote
Old 20-07-2015, 10:18   #43
Registered User

Join Date: Aug 2009
Location: Central New Jersey USA
Boat: Cape Dory 28 (Sold Nov 2019)
Posts: 236
Re: OpenCPN for Android Beta test 4.1.718

Quote:
Originally Posted by bcn View Post
This is still very beta.
Functionalities from plug-ins - tbd. which and how - will come later.

In the meanwhile please test & report, and remember: the Wiki needs somebody who takes on with documenting the Android user interface and specialties.

Hubert
Unfortunately (and I am ashamed to admit this) I have been an OpenCPN user for some time, but I find I cannot contribute at any meaningful level judging from the board comments. I have however been able to chime in with "civilian" observations from time to time. This is a truly outstanding project, and I say that from the perspective of having used most if not all of the other software since about 1992.
__________________
Good luck and good sailing.
s/v Kerry Deare of Barnegat
kerrydeare is offline   Reply With Quote
Old 20-07-2015, 10:47   #44
Registered User
 
HappySeagull's Avatar

Join Date: Dec 2010
Location: B.C.,Canada
Boat: 29'
Posts: 2,423
Re: OpenCPN for Android Beta test 4.1.718

Show Grid enabled is very funky and is only at top of screen. I think this relates to Citlab's issue- it is very similar.

-Old complaint: Unlocked waypoints cannot be moved.

-minor old tweaking issue: UserTCData once "enabled" cannot be "removed". (This may relate to me and my copying to the emulated folder with a filemanager on the phone per android 5.0....?)

....and more Small complaints per small 4" screen in advanced dialogues:

-I still have to rotate the phone to get the advanced dialogues to show or to pan around their window boxes..etc.
-I get blinking effect struggles with some of these.

BUT the present improvements are appreciated!
HappySeagull is offline   Reply With Quote
Old 20-07-2015, 18:48   #45
Registered User
 
HappySeagull's Avatar

Join Date: Dec 2010
Location: B.C.,Canada
Boat: 29'
Posts: 2,423
Re: OpenCPN for Android Beta test 4.1.718

notes per "Tracking"
actually, the track does show- it is the most recent "leg" that does not. I was out zigzagging and I do see the track.


I was unable to export the track to the removeable sdcard (in the Real universe) but I was able to export it to an "emulated" folder (in the Android parallel universe) for what it's worth.
HappySeagull is offline   Reply With Quote
Reply

Tags
enc, 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 for Android Beta test 4.1.530 bdbcat OpenCPN 203 07-05-2017 21:20
OpenCPN for Android Beta test 4.1.705 bdbcat OpenCPN 79 25-07-2015 14:14
OpenCPN for Android Beta test 4.1.630 bdbcat OpenCPN 89 11-07-2015 01:39

Advertise Here


All times are GMT -7. The time now is 20:40.


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.