ResMed annotations timing fix

This commit is contained in:
Mark Watkins 2011-07-03 01:48:55 +10:00
parent 9cc50bee94
commit ba7ce7123d
3 changed files with 10 additions and 10 deletions

View File

@ -44,7 +44,7 @@ void WaveData::Reload(Day *day)
Waveform *w=(*l); Waveform *w=(*l);
double st=w->start()/86400000.0; double st=w->start()/86400000.0;
double rate=(w->duration()/w->samples())/86400000.0; double rate=double(w->duration())/w->samples()/86400000.0;
//qDebug() << "Waveform Chunk contains " << w->samples() << " samples"; //qDebug() << "Waveform Chunk contains " << w->samples() << " samples";
for (int i=0;i<w->samples();i++) { for (int i=0;i<w->samples();i++) {
QPointD r(st,(*w)[i]); QPointD r(st,(*w)[i]);

View File

@ -90,7 +90,7 @@ bool EDFParser::Parse()
} }
startdate=startDate.toMSecsSinceEpoch(); startdate=startDate.toMSecsSinceEpoch();
//qDebug() << startDate.toString("yyyy-MM-dd HH:mm:ss"); qDebug() << startDate.toString("yyyy-MM-dd HH:mm:ss");
num_header_bytes=QString::fromAscii(header.num_header_bytes,8).toLong(&ok); num_header_bytes=QString::fromAscii(header.num_header_bytes,8).toLong(&ok);
if (!ok) if (!ok)
@ -368,7 +368,7 @@ bool ResmedLoader::LoadEVE(Session *sess,EDFParser &edf)
long pos; long pos;
bool sign,ok; bool sign,ok;
double d; double d;
qint64 tt; double tt;
EventDataType fields[3]; EventDataType fields[3];
MachineCode code; MachineCode code;
//Event *e; //Event *e;
@ -410,8 +410,7 @@ bool ResmedLoader::LoadEVE(Session *sess,EDFParser &edf)
break; break;
} }
if (!sign) d=-d; if (!sign) d=-d;
tt=edf.startdate+(d*1000.0);
tt+=d*1000.0;
duration=0; duration=0;
// First entry // First entry
@ -423,11 +422,12 @@ bool ResmedLoader::LoadEVE(Session *sess,EDFParser &edf)
t+=data[pos]; t+=data[pos];
pos++; pos++;
} while ((data[pos]!=20) && (pos<recs)); // start code } while ((data[pos]!=20) && (pos<recs)); // start code
duration=t.toDouble(&ok)*1000.0; duration=t.toDouble(&ok);
if (!ok) { if (!ok) {
qDebug() << "Faulty EDF EVE file (at %" << pos << ") " << edf.filename; qDebug() << "Faulty EDF EVE file (at %" << pos << ") " << edf.filename;
break; break;
} }
//duration*=1000;
} }
while ((data[pos]==20) && (pos<recs)) { while ((data[pos]==20) && (pos<recs)) {
t=""; t="";
@ -448,14 +448,14 @@ bool ResmedLoader::LoadEVE(Session *sess,EDFParser &edf)
else if (t=="hypopnea") code=CPAP_Hypopnea; else if (t=="hypopnea") code=CPAP_Hypopnea;
else if (t=="central apnea") code=CPAP_ClearAirway; else if (t=="central apnea") code=CPAP_ClearAirway;
if (code!=MC_UNKNOWN) { if (code!=MC_UNKNOWN) {
fields[0]=duration/1000.0; fields[0]=duration;///1000.0;
sess->AddEvent(new Event(tt,code,fields,1)); sess->AddEvent(new Event(tt,code,fields,1));
} else { } else {
if (t!="recording starts") { if (t!="recording starts") {
qDebug() << "Unknown ResMed annotation field: " << t; qDebug() << "Unknown ResMed annotation field: " << t;
} }
} }
// qDebug((tt.toString("yyyy-MM-dd HH:mm:ss")+t).toLatin1()); // qDebug((tt.toString("yyyy-MM-dd HH:mm:ss")+t).toLatin1());
} }
if (pos>=recs) { if (pos>=recs) {
qDebug() << "Short EDF EVE file" << edf.filename; qDebug() << "Short EDF EVE file" << edf.filename;
@ -500,7 +500,7 @@ void ResmedLoader::ToTimeDelta(Session *sess,EDFParser &edf, qint16 *data, Machi
{ {
bool first=true; bool first=true;
double rate=(duration/recs); // milliseconds per record double rate=(duration/recs); // milliseconds per record
qint64 tt=edf.startdate; double tt=edf.startdate;
EventDataType c,last; EventDataType c,last;
//return; //return;
Event *e=new Event(tt,code,&c,1); Event *e=new Event(tt,code,&c,1);

View File

@ -616,7 +616,7 @@ void Daily::Load(QDate date)
html+=(" </td><td>")+a.sprintf("%.2f",cpap->summary_weighted_avg(BIPAP_EAPAverage)); html+=(" </td><td>")+a.sprintf("%.2f",cpap->summary_weighted_avg(BIPAP_EAPAverage));
html+=("</td><td>")+a.sprintf("%.2f",cpap->summary_max(BIPAP_EAPMax))+("</td></tr>"); html+=("</td><td>")+a.sprintf("%.2f",cpap->summary_max(BIPAP_EAPMax))+("</td></tr>");
html+=("<tr><td> align=left"+tr("IPAP:")+"</td><td>")+a.sprintf("%.2f",cpap->summary_min(BIPAP_IAPMin)); html+=("<tr><td align=left>"+tr("IPAP:")+"</td><td>")+a.sprintf("%.2f",cpap->summary_min(BIPAP_IAPMin));
html+=("</td><td>")+a.sprintf("%.2f",cpap->summary_weighted_avg(BIPAP_IAPAverage)); html+=("</td><td>")+a.sprintf("%.2f",cpap->summary_weighted_avg(BIPAP_IAPAverage));
html+=("</td><td>")+a.sprintf("%.2f",cpap->summary_max(BIPAP_IAPMax))+("</td></tr>"); html+=("</td><td>")+a.sprintf("%.2f",cpap->summary_max(BIPAP_IAPMax))+("</td></tr>");