EDFParser - add option to handle EDF files with UTC timestamps

Needed for SleepStyle CPAP as dates in the data files are UTC and not local
This commit is contained in:
Guy Scharf 2021-07-08 10:35:44 -07:00
parent f0c7cfc991
commit c1a99850c6
2 changed files with 9 additions and 0 deletions

View File

@ -58,6 +58,12 @@ EDFInfo::~EDFInfo()
// delete a;
}
// Set timezone to UTC
void EDFInfo::setTimeZoneUTC () {
TZ_offset = 0;
EDFInfo::localNoDST = QTimeZone(TZ_offset);
}
bool EDFInfo::Open(const QString & name)
{
if (hdrPtr != nullptr) {

View File

@ -142,6 +142,9 @@ class EDFInfo
static QDateTime getStartDT(const QString str); //! \brief Returns the start time using noLocalDST
static void setTimeZoneUTC(); //! \brief Sets noLocalDST to UTC (for EDF files using UTC time)
// The data members follow
static int TZ_offset;