Hi,
I'm just made my first 2 OW dives today, and used a Cressi Leonardo on those dives. I used subsurface to import the diving profiles (way beter software then Cressi's own software), but I encounter 2 problems (On windows 7 install, both Windows as SubSurface is setup to Dutch locale and language):
1) Although (my deadfull) SAC is being correctly calculated, the total amount of gas used isn't displayed. When I print the dive, it is correctly displayed on the printout.
2) The water temperature isn't imported. I presume this is more likely caused by divelib, but I don't know if and how I can check this (can I debug the read somewhere?). When I try to add the watertemperature directly to the XML, both as a seperate divetemperature flag (air and water), or when I combine them in 1 tag, the water temperature isn't read. (When I screw up the syntax, the XML isn't read at all (btw no warning given))
I used the following flag:
<divetemperature air='12.0 C' />
And although I'm no coder, I think I understood :
{
if (!dc->airtemp.mkelvin && !dc->watertemp.mkelvin)
return;
fputs(" <temperature", f);
show_temperature(f, dc->airtemp, " air='", "'");
show_temperature(f, dc->watertemp, " water='", "'");
fputs(" />\n", f);
}
To put them both in the same flag...
Edited to add: Although Cressi software does import the temperature, Divelog 5.0 doesn't. Since Divelog uses the same divelib library, I suspect that is the culprit.