Non-contiguous Temperature Data
Posted: Sun Aug 18, 2019 9:25 am
I have huge number of dives that I did before my current two dive computers (Shearwater Perdix and Garmin Descent Mk1) and I'd like to get the data into MacDive. I have all the data in a database I created myself and have written code to extra each dive in MacDive XML format.
The dive data were recorded using either a Citizen Hyper Aqualand or a Citizen Cyber Aqualand NX. Both these devices record depth every 5 seconds but temperature ever 5 minutes.
This is how a typical dive profile looks:

I've set the sampleInterval to 5 and included the depth on each sample. For the bulk of the samples I have used:
and then the actual temperature every 60th sample.
The blank temperature entries are getting stored as 0.00 and so my profile looks like this:

Is there a way to tell MacDive that the temperature values are NULL rather than zero, and have the temperature values displayed as discrete points?
The dive data were recorded using either a Citizen Hyper Aqualand or a Citizen Cyber Aqualand NX. Both these devices record depth every 5 seconds but temperature ever 5 minutes.
This is how a typical dive profile looks:

I've set the sampleInterval to 5 and included the depth on each sample. For the bulk of the samples I have used:
Code: Select all
<temperature></temperature>
The blank temperature entries are getting stored as 0.00 and so my profile looks like this:

Is there a way to tell MacDive that the temperature values are NULL rather than zero, and have the temperature values displayed as discrete points?