mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Weighted Average & TAP Graph fixes
This commit is contained in:
parent
67bfda3280
commit
f045b49df5
@ -41,6 +41,9 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry)
|
|||||||
EventDataType miny,maxy;
|
EventDataType miny,maxy;
|
||||||
double minx,maxx;
|
double minx,maxx;
|
||||||
miny=w.min_y, maxy=w.max_y, maxx=w.max_x, minx=w.min_x;
|
miny=w.min_y, maxy=w.max_y, maxx=w.max_x, minx=w.min_x;
|
||||||
|
if (miny<0) {
|
||||||
|
miny=-MAX(fabs(miny),fabs(maxy));
|
||||||
|
}
|
||||||
|
|
||||||
int m;
|
int m;
|
||||||
if (maxy>500) {
|
if (maxy>500) {
|
||||||
|
@ -217,63 +217,67 @@ void gTAPGraph::SetDay(Day *d)
|
|||||||
gLayer::SetDay(d);
|
gLayer::SetDay(d);
|
||||||
m_total=0;
|
m_total=0;
|
||||||
if (!m_day) return;
|
if (!m_day) return;
|
||||||
QVector<qint64> tap;
|
QMap<EventStoreType,qint64> tap;
|
||||||
const int max_value=2600;
|
|
||||||
tap.resize(max_value);
|
|
||||||
|
|
||||||
EventStoreType data=0,lastval=0;
|
EventStoreType data=0,lastval=0;
|
||||||
qint64 time=0,lasttime=0,lastlasttime=0;
|
qint64 time=0,lasttime=0,firsttime=0;
|
||||||
bool first=true;
|
bool first=true;
|
||||||
bool rfirst=true;
|
bool rfirst=true;
|
||||||
|
bool changed;
|
||||||
EventDataType gain=1,offset=0;
|
EventDataType gain=1,offset=0;
|
||||||
for (QVector<Session *>::iterator s=m_day->begin();s!=m_day->end();s++) {
|
for (QVector<Session *>::iterator s=m_day->begin();s!=m_day->end();s++) {
|
||||||
if ((*s)->eventlist.find(m_code)==(*s)->eventlist.end()) continue;
|
if ((*s)->eventlist.find(m_code)==(*s)->eventlist.end()) continue;
|
||||||
for (int q=0;q<(*s)->eventlist[m_code].size();q++) {
|
for (int q=0;q<(*s)->eventlist[m_code].size();q++) {
|
||||||
EventList &el=*(*s)->eventlist[m_code][q];
|
EventList &el=*(*s)->eventlist[m_code][q];
|
||||||
lasttime=el.time(0);
|
firsttime=lasttime=el.time(0);
|
||||||
first=true;
|
lastval=el.raw(0);
|
||||||
|
if (rfirst) {
|
||||||
for (int i=0;i<el.count();i++) {
|
gain=el.gain();
|
||||||
data=el.raw(i);
|
offset=el.offset();
|
||||||
if (data>max_value) {
|
rfirst=false;
|
||||||
qWarning() << "max_value is too small in gTAPGraph::SetDay()";
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
time=el.time(i);
|
|
||||||
if (rfirst) {
|
|
||||||
gain=el.gain();
|
|
||||||
offset=el.offset();
|
|
||||||
rfirst=false;
|
|
||||||
}
|
|
||||||
if (first) {
|
|
||||||
first=false;
|
|
||||||
} else {
|
|
||||||
if (lastval!=data) {
|
|
||||||
int v=(time-lasttime)/1000;
|
|
||||||
tap[lastval]+=v;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
lastlasttime=lasttime;
|
|
||||||
lasttime=time;
|
|
||||||
lastval=data;
|
|
||||||
}
|
}
|
||||||
if (lastval!=data){
|
first=true;
|
||||||
|
changed=false;
|
||||||
|
EventStoreType lastlastval;
|
||||||
|
for (int i=1;i<el.count();i++) {
|
||||||
|
data=el.raw(i);
|
||||||
|
time=el.time(i);
|
||||||
|
if (lastval!=data) {
|
||||||
|
qint64 v=(time-lasttime);
|
||||||
|
if (tap.find(lastval)!=tap.end()) {
|
||||||
|
tap[lastval]+=v;
|
||||||
|
} else {
|
||||||
|
tap[lastval]=v;
|
||||||
|
}
|
||||||
|
changed=true;
|
||||||
|
lasttime=time;
|
||||||
|
lastval=data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (time!=lasttime) {
|
||||||
|
qint64 v=(time-lasttime);
|
||||||
|
if (tap.find(lastval)!=tap.end()) {
|
||||||
|
tap[data]+=v;
|
||||||
|
} else {
|
||||||
|
tap[data]=v;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/*if (lastval!=data){
|
||||||
int v=(time-lastlasttime)/1000L;
|
int v=(time-lastlasttime)/1000L;
|
||||||
tap[data]+=v;
|
tap[data]+=v;
|
||||||
}
|
} */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
m_values.clear();
|
m_values.clear();
|
||||||
m_names.clear();
|
m_names.clear();
|
||||||
m_total=0;
|
m_total=0;
|
||||||
EventDataType val;
|
EventDataType val;
|
||||||
for (int i=0;i<max_value;i++) {
|
|
||||||
if (tap[i]>0) {
|
|
||||||
val=float(i)*gain+offset;
|
|
||||||
m_values.push_back(tap[i]);
|
|
||||||
m_total+=tap[i];
|
|
||||||
|
|
||||||
m_names.push_back(QString::number(val,'f',2));
|
for (QMap<EventStoreType,qint64>::iterator i=tap.begin();i!=tap.end();i++) {
|
||||||
}
|
val=float(i.key())*gain+offset;
|
||||||
|
|
||||||
|
m_values.push_back(i.value()/1000L);
|
||||||
|
m_total+=i.value()/1000L;
|
||||||
|
m_names.push_back(QString::number(val,'f',2));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -31,6 +31,9 @@ void gYAxis::Plot(gGraphWindow &w,float scrx,float scry)
|
|||||||
double miny=w.min_y;
|
double miny=w.min_y;
|
||||||
double maxy=w.max_y;
|
double maxy=w.max_y;
|
||||||
|
|
||||||
|
if (miny<0) {
|
||||||
|
miny=-MAX(fabs(miny),fabs(maxy));
|
||||||
|
}
|
||||||
double dy=maxy-miny;
|
double dy=maxy-miny;
|
||||||
if (dy<=0) {
|
if (dy<=0) {
|
||||||
//miny=miny;
|
//miny=miny;
|
||||||
@ -38,6 +41,7 @@ void gYAxis::Plot(gGraphWindow &w,float scrx,float scry)
|
|||||||
dy=1;
|
dy=1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int m;
|
int m;
|
||||||
if (maxy>500) {
|
if (maxy>500) {
|
||||||
m=ceil(maxy/100.0);
|
m=ceil(maxy/100.0);
|
||||||
@ -91,9 +95,14 @@ void gYAxis::Plot(gGraphWindow &w,float scrx,float scry)
|
|||||||
|
|
||||||
|
|
||||||
double mxy=MAX(fabs(maxy),fabs(miny));
|
double mxy=MAX(fabs(maxy),fabs(miny));
|
||||||
double mny=MIN(fabs(maxy),fabs(miny));
|
double mny=miny;
|
||||||
if (miny<0) mny=-mny;
|
if (miny<0) {
|
||||||
if (maxy<0) mxy=-mxy;
|
mny=-mxy;
|
||||||
|
} else {
|
||||||
|
}
|
||||||
|
//double mny=MIN(fabs(maxy),fabs(miny));
|
||||||
|
//if (miny<0) mny=-mny;
|
||||||
|
//if (maxy<0) mxy=-mxy;
|
||||||
//mny=miny;
|
//mny=miny;
|
||||||
//mxy=maxy;
|
//mxy=maxy;
|
||||||
|
|
||||||
@ -170,7 +179,7 @@ void gYAxis::Plot(gGraphWindow &w,float scrx,float scry)
|
|||||||
vertarray[vertcnt++]=h;
|
vertarray[vertcnt++]=h;
|
||||||
|
|
||||||
if (m_show_major_lines && (i > miny)) {
|
if (m_show_major_lines && (i > miny)) {
|
||||||
majorvertarray[majorvertcnt++]=start_px+1;
|
majorvertarray[majorvertcnt++]=start_px;
|
||||||
majorvertarray[majorvertcnt++]=h;
|
majorvertarray[majorvertcnt++]=h;
|
||||||
majorvertarray[majorvertcnt++]=start_px+width;
|
majorvertarray[majorvertcnt++]=start_px+width;
|
||||||
majorvertarray[majorvertcnt++]=h;
|
majorvertarray[majorvertcnt++]=h;
|
||||||
|
@ -183,15 +183,21 @@ EventDataType Day::sum(ChannelID code)
|
|||||||
EventDataType Day::wavg(ChannelID code)
|
EventDataType Day::wavg(ChannelID code)
|
||||||
{
|
{
|
||||||
double s0=0,s1=0,s2=0;
|
double s0=0,s1=0,s2=0;
|
||||||
|
qint64 d;
|
||||||
for (QVector<Session *>::iterator s=sessions.begin();s!=sessions.end();s++) {
|
for (QVector<Session *>::iterator s=sessions.begin();s!=sessions.end();s++) {
|
||||||
Session & sess=*(*s);
|
Session & sess=*(*s);
|
||||||
if (sess.eventlist.find(code)!=sess.eventlist.end()) {
|
if (sess.eventlist.contains(code)) {
|
||||||
s0=sess.hours();
|
d=sess.last(code)-sess.first(code);
|
||||||
s1+=sess.wavg(code)*s0;
|
s0=double(d)/1000.0;
|
||||||
s2+=s0;
|
if (s0>0) {
|
||||||
|
s1+=sess.wavg(code)*s0;
|
||||||
|
s2+=s0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (s2==0) return 0;
|
if (s2==0)
|
||||||
|
return 0;
|
||||||
|
|
||||||
return (s1/s2);
|
return (s1/s2);
|
||||||
}
|
}
|
||||||
// Total session time in milliseconds
|
// Total session time in milliseconds
|
||||||
@ -297,6 +303,15 @@ int Day::count(ChannelID code)
|
|||||||
}
|
}
|
||||||
return sum;
|
return sum;
|
||||||
}
|
}
|
||||||
|
bool Day::channelExists(ChannelID id)
|
||||||
|
{
|
||||||
|
for (int i=0;i<sessions.size();i++) {
|
||||||
|
if (sessions[i]->channelExists(id))
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
void Day::OpenEvents()
|
void Day::OpenEvents()
|
||||||
{
|
{
|
||||||
QVector<Session *>::iterator s;
|
QVector<Session *>::iterator s;
|
||||||
|
@ -65,7 +65,7 @@ public:
|
|||||||
|
|
||||||
void OpenEvents();
|
void OpenEvents();
|
||||||
QVector<Session *> & getSessions() { return sessions; }
|
QVector<Session *> & getSessions() { return sessions; }
|
||||||
|
bool channelExists(ChannelID id);
|
||||||
protected:
|
protected:
|
||||||
QVector<Session *> sessions;
|
QVector<Session *> sessions;
|
||||||
qint64 d_first,d_last;
|
qint64 d_first,d_last;
|
||||||
|
@ -360,10 +360,10 @@ int PRS1Loader::OpenMachine(Machine *m,QString path,Profile *profile)
|
|||||||
sess->setAvg(CPAP_Pressure,(sess->avg(CPAP_EPAP)+sess->avg(CPAP_IPAP))/2.0);
|
sess->setAvg(CPAP_Pressure,(sess->avg(CPAP_EPAP)+sess->avg(CPAP_IPAP))/2.0);
|
||||||
sess->setWavg(CPAP_Pressure,(sess->wavg(CPAP_EPAP)+sess->wavg(CPAP_IPAP))/2.0);
|
sess->setWavg(CPAP_Pressure,(sess->wavg(CPAP_EPAP)+sess->wavg(CPAP_IPAP))/2.0);
|
||||||
sess->setMin(CPAP_Pressure,sess->min(CPAP_EPAP));
|
sess->setMin(CPAP_Pressure,sess->min(CPAP_EPAP));
|
||||||
sess->setMax(CPAP_Pressure,sess->min(CPAP_IPAP));
|
sess->setMax(CPAP_Pressure,sess->max(CPAP_IPAP));
|
||||||
sess->set90p(CPAP_Pressure,sess->min(CPAP_IPAP));
|
sess->set90p(CPAP_Pressure,sess->p90(CPAP_IPAP));
|
||||||
sess->p90(CPAP_EPAP);
|
sess->p90(CPAP_EPAP);
|
||||||
sess->p90(CPAP_IPAP);
|
//sess->p90(CPAP_IPAP);
|
||||||
} else {
|
} else {
|
||||||
sess->avg(CPAP_Pressure);
|
sess->avg(CPAP_Pressure);
|
||||||
sess->wavg(CPAP_Pressure);
|
sess->wavg(CPAP_Pressure);
|
||||||
|
@ -563,6 +563,7 @@ bool ResmedLoader::LoadBRP(Session *sess,EDFParser &edf)
|
|||||||
long recs=edf.edfsignals[s]->nr*edf.GetNumDataRecords();
|
long recs=edf.edfsignals[s]->nr*edf.GetNumDataRecords();
|
||||||
ChannelID code;
|
ChannelID code;
|
||||||
if (edf.edfsignals[s]->label=="Flow") {
|
if (edf.edfsignals[s]->label=="Flow") {
|
||||||
|
es.gain*=60;
|
||||||
code=CPAP_FlowRate;
|
code=CPAP_FlowRate;
|
||||||
} else if (edf.edfsignals[s]->label=="Mask Pres") {
|
} else if (edf.edfsignals[s]->label=="Mask Pres") {
|
||||||
code=CPAP_MaskPressure;
|
code=CPAP_MaskPressure;
|
||||||
@ -583,8 +584,8 @@ bool ResmedLoader::LoadBRP(Session *sess,EDFParser &edf)
|
|||||||
v=floor(a->min()/1);
|
v=floor(a->min()/1);
|
||||||
a->setMin(v*1); */
|
a->setMin(v*1); */
|
||||||
} else if (code==CPAP_FlowRate) {
|
} else if (code==CPAP_FlowRate) {
|
||||||
a->setMax(1);
|
//a->setMax(1);
|
||||||
a->setMin(-1);
|
//a->setMin(-1);
|
||||||
}
|
}
|
||||||
sess->setMin(code,a->min());
|
sess->setMin(code,a->min());
|
||||||
sess->setMax(code,a->max());
|
sess->setMax(code,a->max());
|
||||||
|
@ -692,7 +692,6 @@ EventDataType Session::wavg(ChannelID id)
|
|||||||
return 0;
|
return 0;
|
||||||
QVector<EventList *> & evec=jj.value();
|
QVector<EventList *> & evec=jj.value();
|
||||||
|
|
||||||
bool first=true;
|
|
||||||
qint64 lasttime=0,time,td;
|
qint64 lasttime=0,time,td;
|
||||||
EventStoreType val,lastval=0;
|
EventStoreType val,lastval=0;
|
||||||
|
|
||||||
@ -701,26 +700,20 @@ EventDataType Session::wavg(ChannelID id)
|
|||||||
EventDataType gain=evec[0]->gain();
|
EventDataType gain=evec[0]->gain();
|
||||||
|
|
||||||
for (int i=0;i<evec.size();i++) {
|
for (int i=0;i<evec.size();i++) {
|
||||||
for (int j=0;j<evec[i]->count();j++) {
|
lastval=evec[i]->raw(0);
|
||||||
|
lasttime=evec[i]->time(0);
|
||||||
|
for (int j=1;j<evec[i]->count();j++) {
|
||||||
val=evec[i]->raw(j);
|
val=evec[i]->raw(j);
|
||||||
time=evec[i]->time(j);
|
time=evec[i]->time(j);
|
||||||
if (first) {
|
td=(time-lasttime);
|
||||||
first=false;
|
|
||||||
} else {
|
|
||||||
td=(time-lasttime);
|
|
||||||
if (vtime.contains(lastval)) {
|
|
||||||
vtime[lastval]+=td;
|
|
||||||
} else vtime[lastval]=td;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
if (vtime.contains(lastval)) {
|
||||||
|
vtime[lastval]+=td;
|
||||||
|
} else vtime[lastval]=td;
|
||||||
lasttime=time;
|
lasttime=time;
|
||||||
lastval=val;
|
lastval=val;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/*td=last()-lasttime;
|
|
||||||
if (vtime.contains(lastval)) {
|
|
||||||
vtime[lastval]+=td;
|
|
||||||
} else vtime[lastval]=td; */
|
|
||||||
|
|
||||||
qint64 s0=0,s1=0,s2=0; // 32bit may all be thats needed here..
|
qint64 s0=0,s1=0,s2=0; // 32bit may all be thats needed here..
|
||||||
for (QHash<EventStoreType,quint32>::iterator i=vtime.begin(); i!=vtime.end(); i++) {
|
for (QHash<EventStoreType,quint32>::iterator i=vtime.begin(); i!=vtime.end(); i++) {
|
||||||
@ -728,8 +721,14 @@ EventDataType Session::wavg(ChannelID id)
|
|||||||
s1+=i.key()*s0;
|
s1+=i.key()*s0;
|
||||||
s2+=s0;
|
s2+=s0;
|
||||||
}
|
}
|
||||||
double j=double(s1)/double(s_last-s_first);
|
double j=double(s1)/double(s2);
|
||||||
EventDataType v=j*gain;
|
EventDataType v=j*gain;
|
||||||
|
if (v>32768*gain) {
|
||||||
|
v=0;
|
||||||
|
}
|
||||||
|
if (v<-(32768*gain)) {
|
||||||
|
v=0;
|
||||||
|
}
|
||||||
m_wavg[id]=v;
|
m_wavg[id]=v;
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
|
136
daily.cpp
136
daily.cpp
@ -755,54 +755,44 @@ void Daily::Load(QDate date)
|
|||||||
}
|
}
|
||||||
html+="</table>"
|
html+="</table>"
|
||||||
"<table cellspacing=0 cellpadding=0 border=0 width='100%'>\n"
|
"<table cellspacing=0 cellpadding=0 border=0 width='100%'>\n"
|
||||||
"<tr height='2'><td colspan=4 height='2'><hr></td></tr>\n";
|
"<tr height='2'><td colspan=5 height='2'><hr></td></tr>\n";
|
||||||
|
|
||||||
if (mode==MODE_BIPAP) {
|
/* if (mode==MODE_BIPAP) {
|
||||||
html+="<tr><td colspan=4 align='center'><i>"+tr("90% EPAP ")+QString().sprintf("%.2f",eap90)+tr("cmH2O")+"</td></tr>\n"
|
html+="<tr><td colspan=4 align='center'><i>"+tr("90% EPAP ")+QString().sprintf("%.2f",eap90)+tr("cmH2O")+"</td></tr>\n"
|
||||||
"<tr><td colspan=4 align='center'><i>"+tr("90% IPAP ")+QString().sprintf("%.2f",iap90)+tr("cmH2O")+"</td></tr>\n";
|
"<tr><td colspan=4 align='center'><i>"+tr("90% IPAP ")+QString().sprintf("%.2f",iap90)+tr("cmH2O")+"</td></tr>\n";
|
||||||
} else if (mode==MODE_APAP) {
|
} else if (mode==MODE_APAP) {
|
||||||
html+=("<tr><td colspan=4 align='center'><i>")+tr("90% Pressure ")+QString().sprintf("%.2f",p90)+("</i></td></tr>\n"); //cpap->summary_weighted_avg(CPAP_PressurePercentValue)
|
html+=("<tr><td colspan=4 align='center'><i>")+tr("90% Auto Pressure ")+QString().sprintf("%.2f",p90)+("</i></td></tr>\n"); //cpap->summary_weighted_avg(CPAP_PressurePercentValue)
|
||||||
} else if (mode==MODE_CPAP) {
|
} else if (mode==MODE_CPAP) {
|
||||||
html+=("<tr><td colspan=4 align='center'><i>")+tr("Pressure ")+QString().sprintf("%.2f",cpap->max(CPAP_Pressure))+("</i></td></tr>\n");
|
html+=("<tr><td colspan=4 align='center'><i>")+tr("CPAP Pressure ")+QString().sprintf("%.2f",cpap->max(CPAP_Pressure))+("</i></td></tr>\n");
|
||||||
}
|
}*/
|
||||||
|
|
||||||
//html+=("<tr><td colspan=4 align=center> </td></tr>\n");
|
//html+=("<tr><td colspan=4 align=center> </td></tr>\n");
|
||||||
|
|
||||||
html+=("<tr><td> </td><td><b>Min</b></td><td><b>Avg</b></td><td><b>Max</b></td></tr>");
|
html+=("<tr><td> </td><td><b>Min</b></td><td><b>Avg</b></td><td><b>90%</b></td><td><b>Max</b></td></tr>");
|
||||||
|
|
||||||
if (mode==MODE_APAP) {
|
|
||||||
html+="<tr><td align=left>"+tr("Pressure:")+"</td><td>"+a.sprintf("%.2f",cpap->min(CPAP_Pressure));
|
|
||||||
html+=(" </td><td>")+a.sprintf("%.2f",cpap->wavg(CPAP_Pressure));
|
|
||||||
html+=("</td><td>")+a.sprintf("%.2f",cpap->max(CPAP_Pressure))+("</td></tr>");
|
|
||||||
|
|
||||||
// html+=wxT("<tr><td><b>")+_("90% Pressure")+wxT("</b></td><td>")+wxString::Format(wxT("%.1fcmH2O"),p90)+wxT("</td></tr>\n");
|
|
||||||
} else if (mode==MODE_BIPAP) {
|
|
||||||
html+=("<tr><td align=left>"+tr("EPAP:")+"</td><td>")+a.sprintf("%.2f",cpap->min(CPAP_EPAP));
|
|
||||||
html+=(" </td><td>")+a.sprintf("%.2f",cpap->wavg(CPAP_EPAP));
|
|
||||||
html+=("</td><td>")+a.sprintf("%.2f",cpap->max(CPAP_EPAP))+("</td></tr>");
|
|
||||||
|
|
||||||
html+=("<tr><td align=left>"+tr("IPAP:")+"</td><td>")+a.sprintf("%.2f",cpap->min(CPAP_IPAP));
|
|
||||||
html+=("</td><td>")+a.sprintf("%.2f",cpap->wavg(CPAP_IPAP));
|
|
||||||
html+=("</td><td>")+a.sprintf("%.2f",cpap->max(CPAP_IPAP))+("</td></tr>");
|
|
||||||
|
|
||||||
html+=("<tr><td align=left>"+tr("PS:")+"</td><td>")+a.sprintf("%.2f",cpap->min(CPAP_PressureSupport));
|
|
||||||
html+=("</td><td>")+a.sprintf("%.2f",cpap->wavg(CPAP_PressureSupport));
|
|
||||||
html+=("</td><td>")+a.sprintf("%.2f",cpap->max(CPAP_PressureSupport))+("</td></tr>");
|
|
||||||
|
|
||||||
|
ChannelID chans[]={CPAP_Pressure,CPAP_EPAP,CPAP_IPAP,CPAP_PressureSupport,CPAP_PatientTriggeredBreaths, CPAP_MinuteVentilation,CPAP_RespiratoryRate,CPAP_FlowLimitGraph,CPAP_Leak,CPAP_Snore,CPAP_TidalVolume,CPAP_Pulse,CPAP_SPO2};
|
||||||
|
int numchans=sizeof(chans)/sizeof(ChannelID);
|
||||||
|
for (int i=0;i<numchans;i++) {
|
||||||
|
ChannelID code=chans[i];
|
||||||
|
if (cpap->channelExists(code)) {
|
||||||
|
html+="<tr><td align=left>"+channel[code].label();
|
||||||
|
html+="</td><td>"+a.sprintf("%.2f",cpap->min(code));
|
||||||
|
html+="</td><td>"+a.sprintf("%.2f",cpap->wavg(code));
|
||||||
|
html+="</td><td>"+a.sprintf("%.2f",cpap->p90(code));
|
||||||
|
html+="</td><td>"+a.sprintf("%.2f",cpap->max(code));
|
||||||
|
html+="</td><tr>";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
html+="<tr><td align=left>"+tr("Leak:");
|
|
||||||
html+="</td><td>"+a.sprintf("%.2f",cpap->min(CPAP_Leak));
|
|
||||||
html+="</td><td>"+a.sprintf("%.2f",cpap->wavg(CPAP_Leak));
|
|
||||||
html+="</td><td>"+a.sprintf("%.2f",cpap->max(CPAP_Leak))+("</td><tr>");
|
|
||||||
|
|
||||||
html+="<tr><td align=left>"+tr("Snore:");
|
/*html+="<tr><td align=left>"+tr("Snore:");
|
||||||
html+="</td><td>"+a.sprintf("%.2f",cpap->min(CPAP_Snore));
|
html+="</td><td>"+a.sprintf("%.2f",cpap->min(CPAP_Snore));
|
||||||
html+="</td><td>"+a.sprintf("%.2f",cpap->avg(CPAP_Snore));
|
html+="</td><td>"+a.sprintf("%.2f",cpap->avg(CPAP_Snore));
|
||||||
html+="</td><td>"+a.sprintf("%.2f",cpap->max(CPAP_Snore))+("</td><tr>");
|
html+="</td><td>"+a.sprintf("%.2f",cpap->max(CPAP_Snore))+("</td><tr>");
|
||||||
|
*/
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
html+="<tr><td colspan=4 align=center><i>"+tr("No CPAP data available")+"</i></td></tr>";
|
html+="<tr><td colspan=5 align=center><i>"+tr("No CPAP data available")+"</i></td></tr>";
|
||||||
html+="<tr><td colspan=4> </td></tr>\n";
|
html+="<tr><td colspan=5> </td></tr>\n";
|
||||||
|
|
||||||
}
|
}
|
||||||
// Instead of doing this, check whether any data exists..
|
// Instead of doing this, check whether any data exists..
|
||||||
@ -820,13 +810,17 @@ void Daily::Load(QDate date)
|
|||||||
if (oxi) {
|
if (oxi) {
|
||||||
html+="<tr><td>"+tr("Pulse:");
|
html+="<tr><td>"+tr("Pulse:");
|
||||||
html+="</td><td>"+a.sprintf("%.2fbpm",oxi->min(OXI_Pulse));
|
html+="</td><td>"+a.sprintf("%.2fbpm",oxi->min(OXI_Pulse));
|
||||||
html+="</td><td>"+a.sprintf("%.2fbpm",oxi->avg(OXI_Pulse));
|
html+="</td><td>"+a.sprintf("%.2fbpm",oxi->wavg(OXI_Pulse));
|
||||||
html+="</td><td>"+a.sprintf("%.2fbpm",oxi->max(OXI_Pulse))+"</td><tr>";
|
html+="</td><td>"+a.sprintf("%.2fbpm",oxi->p90(OXI_Pulse));
|
||||||
|
html+="</td><td>"+a.sprintf("%.2fbpm",oxi->max(OXI_Pulse));
|
||||||
|
html+="</td><tr>";
|
||||||
|
|
||||||
html+="<tr><td>"+tr("SpO2:");
|
html+="<tr><td>"+tr("SpO2:");
|
||||||
html+="</td><td>"+a.sprintf("%.2f%%",oxi->min(OXI_SPO2));
|
html+="</td><td>"+a.sprintf("%.2f%%",oxi->min(OXI_SPO2));
|
||||||
html+="</td><td>"+a.sprintf("%.2f%%",oxi->avg(OXI_SPO2));
|
html+="</td><td>"+a.sprintf("%.2f%%",oxi->wavg(OXI_SPO2));
|
||||||
html+="</td><td>"+a.sprintf("%.2f%%",oxi->max(OXI_SPO2))+"</td><tr>";
|
html+="</td><td>"+a.sprintf("%.2f%%",oxi->p90(OXI_SPO2));
|
||||||
|
html+="</td><td>"+a.sprintf("%.2f%%",oxi->max(OXI_SPO2));
|
||||||
|
html+="</td><tr>";
|
||||||
|
|
||||||
//html+=wxT("<tr><td colspan=4> </td></tr>\n");
|
//html+=wxT("<tr><td colspan=4> </td></tr>\n");
|
||||||
|
|
||||||
@ -838,39 +832,39 @@ void Daily::Load(QDate date)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (cpap) {
|
if (cpap) {
|
||||||
if (mode==MODE_BIPAP) {
|
html+="</table>"
|
||||||
if (pref["EnableGraphSnapshots"].toBool()) {
|
"<table cellspacing=0 cellpadding=0 border=0 width='100%'>\n";
|
||||||
{
|
if (pref["EnableGraphSnapshots"].toBool()) {
|
||||||
html+=("<tr><td colspan=4 align=center><i>")+tr("Time@EPAP")+("</i></td></tr>\n");
|
if (cpap->channelExists(CPAP_Pressure)) {
|
||||||
TAP_EAP->setFixedSize(gwwidth,30);
|
html+=("<tr><td colspan=4 align=center><i>")+tr("Time@Pressure")+("</i></td></tr>\n");
|
||||||
QPixmap pixmap=TAP_EAP->renderPixmap(gwwidth,30,false);
|
TAP->setFixedSize(gwwidth,30);
|
||||||
QByteArray byteArray;
|
QPixmap pixmap=TAP->renderPixmap(gwwidth,30,false);
|
||||||
QBuffer buffer(&byteArray); // use buffer to store pixmap into byteArray
|
QByteArray byteArray;
|
||||||
buffer.open(QIODevice::WriteOnly);
|
QBuffer buffer(&byteArray); // use buffer to store pixmap into byteArray
|
||||||
pixmap.save(&buffer, "PNG");
|
buffer.open(QIODevice::WriteOnly);
|
||||||
html+="<tr><td colspan=4 align=center><img src=\"data:image/png;base64," + byteArray.toBase64() + "\"></td></tr>\n";
|
pixmap.save(&buffer, "PNG");
|
||||||
}
|
html+="<tr><td colspan=4 align=center><img src=\"data:image/png;base64," + byteArray.toBase64() + "\"></td></tr>\n";
|
||||||
{
|
|
||||||
html+=("<tr><td colspan=4 align=center><i>")+tr("Time@IPAP")+("</i></td></tr>\n");
|
|
||||||
TAP_IAP->setFixedSize(gwwidth,30);
|
|
||||||
QPixmap pixmap=TAP_IAP->renderPixmap(gwwidth,30,false);
|
|
||||||
QByteArray byteArray;
|
|
||||||
QBuffer buffer(&byteArray); // use buffer to store pixmap into byteArray
|
|
||||||
buffer.open(QIODevice::WriteOnly);
|
|
||||||
pixmap.save(&buffer, "PNG");
|
|
||||||
html+="<tr><td colspan=4 align=center><img src=\"data:image/png;base64," + byteArray.toBase64() + "\"></td></tr>\n";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} else if (mode==MODE_APAP) {
|
if (cpap->channelExists(CPAP_EPAP)) {
|
||||||
if (pref["EnableGraphSnapshots"].toBool()) {
|
//html+="<tr height='2'><td colspan=4 height='2'><hr></td></tr>\n";
|
||||||
html+=("<tr><td colspan=4 align=center><i>")+tr("Time@Pressure")+("</i></td></tr>\n");
|
html+=("<tr><td colspan=4 align=center><i>")+tr("Time@EPAP")+("</i></td></tr>\n");
|
||||||
TAP->setFixedSize(gwwidth,30);
|
TAP_EAP->setFixedSize(gwwidth,30);
|
||||||
QPixmap pixmap=TAP->renderPixmap(gwwidth,30,false);
|
QPixmap pixmap=TAP_EAP->renderPixmap(gwwidth,30,false);
|
||||||
QByteArray byteArray;
|
QByteArray byteArray;
|
||||||
QBuffer buffer(&byteArray); // use buffer to store pixmap into byteArray
|
QBuffer buffer(&byteArray); // use buffer to store pixmap into byteArray
|
||||||
buffer.open(QIODevice::WriteOnly);
|
buffer.open(QIODevice::WriteOnly);
|
||||||
pixmap.save(&buffer, "PNG");
|
pixmap.save(&buffer, "PNG");
|
||||||
html+="<tr><td colspan=4 align=center><img src=\"data:image/png;base64," + byteArray.toBase64() + "\"></td></tr>\n";
|
html+="<tr><td colspan=4 align=center><img src=\"data:image/png;base64," + byteArray.toBase64() + "\"></td></tr>\n";
|
||||||
|
}
|
||||||
|
if (cpap->channelExists(CPAP_IPAP)) {
|
||||||
|
html+=("<tr><td colspan=4 align=center><i>")+tr("Time@IPAP")+("</i></td></tr>\n");
|
||||||
|
TAP_IAP->setFixedSize(gwwidth,30);
|
||||||
|
QPixmap pixmap=TAP_IAP->renderPixmap(gwwidth,30,false);
|
||||||
|
QByteArray byteArray;
|
||||||
|
QBuffer buffer(&byteArray); // use buffer to store pixmap into byteArray
|
||||||
|
buffer.open(QIODevice::WriteOnly);
|
||||||
|
pixmap.save(&buffer, "PNG");
|
||||||
|
html+="<tr><td colspan=4 align=center><img src=\"data:image/png;base64," + byteArray.toBase64() + "\"></td></tr>\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
html+="</table><hr height=2><table cellpadding=0 cellspacing=0 border=0 width=100%>";
|
html+="</table><hr height=2><table cellpadding=0 cellspacing=0 border=0 width=100%>";
|
||||||
|
6
daily.ui
6
daily.ui
@ -34,7 +34,7 @@
|
|||||||
<widget class="QSplitter" name="splitter">
|
<widget class="QSplitter" name="splitter">
|
||||||
<property name="maximumSize">
|
<property name="maximumSize">
|
||||||
<size>
|
<size>
|
||||||
<width>265</width>
|
<width>300</width>
|
||||||
<height>16777215</height>
|
<height>16777215</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
@ -56,7 +56,7 @@
|
|||||||
</property>
|
</property>
|
||||||
<property name="maximumSize">
|
<property name="maximumSize">
|
||||||
<size>
|
<size>
|
||||||
<width>265</width>
|
<width>300</width>
|
||||||
<height>180</height>
|
<height>180</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
@ -85,7 +85,7 @@
|
|||||||
<widget class="QTabWidget" name="tabWidget">
|
<widget class="QTabWidget" name="tabWidget">
|
||||||
<property name="maximumSize">
|
<property name="maximumSize">
|
||||||
<size>
|
<size>
|
||||||
<width>265</width>
|
<width>300</width>
|
||||||
<height>16777215</height>
|
<height>16777215</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
|
Loading…
Reference in New Issue
Block a user