<div dir="auto"><div><br><div class="gmail_extra"><br><div class="gmail_quote">On 22 Dec. 2017 6:08 am, "Alexander Maier" <<a href="mailto:maieralex@me.com">maieralex@me.com</a>> wrote:<br type="attribution"><blockquote class="quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word;line-break:after-white-space">Hello,<div><br></div><div>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.</div></div></blockquote></div></div></div><div dir="auto"><br></div><div dir="auto">Thanks for the report Alexander,</div><div dir="auto"><br></div><div dir="auto">I think the offending line in core/plannernotes.c is</div><div dir="auto"><br></div><div dir="auto"><pre style="word-wrap:normal;font-family:consolas,"liberation mono",courier,monospace;margin-top:0px;margin-bottom:0px;padding:15px 0px;color:rgb(36,41,46);font-size:14px;background-color:rgb(255,255,255)"><div style="padding:0px 15px">               <span style="color:rgb(215,58,73)">if</span> (dp-><span style="color:rgb(0,92,197)">time</span> - lasttime < <span style="color:rgb(0,92,197)">10</span> && !(gaschange_after && dp->next && dp-><a href="http://depth.mm">depth.mm</a> != dp->next-><a href="http://depth.mm">depth.mm</a>))</div><div style="padding:0px 15px">                 <span style="color:rgb(215,58,73)">continue</span>;</div></pre>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</div><div dir="auto"><br></div><div dir="auto"><pre style="word-wrap:normal;font-family:consolas,"liberation mono",courier,monospace;margin-top:0px;margin-bottom:0px;padding:15px 0px;color:rgb(36,41,46);font-size:14px;background-color:rgb(255,255,255)"><div style="padding:0px 15px">                <span style="color:rgb(215,58,73)">if</span> ((dp-><span style="color:rgb(0,92,197)">time</span> - lasttime < <span style="color:rgb(0,92,197)">10 && lastdepth - dp->depth < 3000)</span> && !(gaschange_after && dp->next && dp-><a href="http://depth.mm">depth.mm</a> != dp->next-><a href="http://depth.mm">depth.mm</a>))</div><div style="padding:0px 15px">                 <span style="color:rgb(215,58,73)">continue</span>;</div></pre>Or maybe just</div><div dir="auto"><pre style="word-wrap:normal;font-family:consolas,"liberation mono",courier,monospace;margin-top:0px;margin-bottom:0px;padding:15px 0px;color:rgb(36,41,46);font-size:14px;background-color:rgb(255,255,255)"><div style="padding:0px 15px">                <span style="color:rgb(215,58,73)">if</span> (dp-><span style="color:rgb(0,92,197)">time</span> - lasttime == <span style="color:rgb(0,92,197)">0</span> && !(gaschange_after && dp->next && dp-><a href="http://depth.mm">depth.mm</a> != dp->next-><a href="http://depth.mm">depth.mm</a>))</div><div style="padding:0px 15px">                    <span style="color:rgb(215,58,73)">continue</span>;</div></pre><br></div><div dir="auto"><div class="gmail_extra"><div class="gmail_quote"><blockquote class="quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word;line-break:after-white-space"><div><br><div>
<div style="color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px">--- <br><br>Alexander Maier<br>Wertachstrasse 19<br>D-89250 Senden<br><br><a href="mailto:maieralex@me.com" target="_blank">Email: maieralex@me.com</a><br>Telefon: <a href="tel:+49%207307%2025364" value="+49730725364" target="_blank">+49 7307 25364</a><br>Mobil: <a href="tel:+49%201515%200471677" value="+4915150471677" target="_blank">+49 151 50471677</a></div>

</div><div><br class="m_-3868822117867117796webkit-block-placeholder"></div>

<img id="m_-386882211786711779618E9FFC9-4977-4C0D-858B-1163FE87DD9E" src="cid:99AFE142-F173-4ACF-9749-433FDD5897F0@localdomain"><img id="m_-38688221178671177964AB28485-B745-4E96-BE78-8845A8CB8B7B" src="cid:1B93A43B-251F-4EB0-8DB5-6071B73E8A62@localdomain"></div></div><br>______________________________<wbr>_________________<br>
subsurface mailing list<br>
<a href="mailto:subsurface@subsurface-divelog.org">subsurface@subsurface-divelog.<wbr>org</a><br>
<a href="http://lists.subsurface-divelog.org/cgi-bin/mailman/listinfo/subsurface" rel="noreferrer" target="_blank">http://lists.subsurface-<wbr>divelog.org/cgi-bin/mailman/<wbr>listinfo/subsurface</a><br>
<br></blockquote></div><br></div></div></div>