summaryrefslogtreecommitdiffstats
path: root/dive.c
diff options
context:
space:
mode:
Diffstat (limited to 'dive.c')
-rw-r--r--dive.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/dive.c b/dive.c
index 4bae24526..019b1d0a4 100644
--- a/dive.c
+++ b/dive.c
@@ -2218,3 +2218,23 @@ void set_userid(char *rUserId)
strcpy(prefs.userid, rUserId);
}
#undef MAX_USERID_SIZE
+
+int average_depth(struct diveplan *dive)
+{
+ int integral = 0;
+ int last_time = 0;
+ int last_depth = 0;
+ struct divedatapoint *dp = dive->dp;
+
+ while (dp) {
+ if (dp->time) {
+ /* Ignore gas indication samples */
+ integral += (dp->depth + last_depth) * (dp->time - last_time) / 2;
+ last_time = dp->time;
+ last_depth = dp->depth;
+ }
+ dp = dp->next;
+ }
+
+ return integral / last_time;
+}