Graph vs. Detail difference

Rick Walsh rickmwalsh at gmail.com
Thu Dec 21 12:04:40 PST 2017


On 22 Dec. 2017 6:08 am, "Alexander Maier" <maieralex at me.com> wrote:

Hello,

I have played a little bit with the planing feature. When I use high ascend
and descent rates the graph shows decompression stops (fe. at 6m), but the
details don’t show this in the listing. Possible it can be stops under 1
min. , but the 6m deco stop seams to be more than 1 minute. I also have
planed with normal rates and the graph and detail listing seams to be ok.


Thanks for the report Alexander,

I think the offending line in core/plannernotes.c is

		if (dp->time - lasttime < 10 && !(gaschange_after && dp->next &&
dp->depth.mm != dp->next->depth.mm))
			continue;

I'm on my phone and probably won't have a chance for any coding over the
next few days, but I think it should be something like

		if ((dp->time - lasttime < 10 && lastdepth - dp->depth < 3000) &&
!(gaschange_after && dp->next && dp->depth.mm != dp->next->depth.mm))
			continue;

Or maybe just

		if (dp->time - lasttime == 0 && !(gaschange_after && dp->next &&
dp->depth.mm != dp->next->depth.mm))
			continue;



---

Alexander Maier
Wertachstrasse 19
D-89250 Senden

Email: maieralex at me.com <maieralex at me.com>
Telefon: +49 7307 25364 <+49%207307%2025364>
Mobil: +49 151 50471677 <+49%201515%200471677>


_______________________________________________
subsurface mailing list
subsurface at subsurface-divelog.org
http://lists.subsurface-divelog.org/cgi-bin/mailman/listinfo/subsurface
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.subsurface-divelog.org/pipermail/subsurface/attachments/20171222/64934bd0/attachment-0001.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: Bildschirmfoto 2017-12-21 um 20.02.50.jpeg
Type: image/jpeg
Size: 522715 bytes
Desc: not available
URL: <http://lists.subsurface-divelog.org/pipermail/subsurface/attachments/20171222/64934bd0/attachment-0002.jpeg>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: Bildschirmfoto 2017-12-21 um 20.03.11.jpeg
Type: image/jpeg
Size: 525739 bytes
Desc: not available
URL: <http://lists.subsurface-divelog.org/pipermail/subsurface/attachments/20171222/64934bd0/attachment-0003.jpeg>


More information about the subsurface mailing list