Merge branch 'ceiling-plot'

This enables plotting the ceiling in deco dives and also adds the
necessary code to the uemis importer. The only other dive computer this
has been tested with the OSTC and that needs a libdivecomputer patch in
order to provide the deco/ceiling information to Subsurface.

Fixes #5
This commit is contained in:
Dirk Hohndel 2012-11-10 11:56:28 +01:00
commit e29a436810
9 changed files with 180 additions and 30 deletions

2
dive.h
View file

@ -233,6 +233,7 @@ struct event {
struct event *next;
duration_t time;
int type, flags, value;
gboolean deleted;
char name[];
};
@ -269,6 +270,7 @@ struct dive {
duration_t duration, surfacetime;
int visibility; /* 0 - 5 star rating */
temperature_t airtemp, watertemp;
pressure_t surface_pressure;
cylinder_t cylinder[MAX_CYLINDERS];
weightsystem_t weightsystem[MAX_WEIGHTSYSTEMS];
char *suit;