mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Adjust epcoh for time zone offset
This commit is contained in:
parent
b53b0a99e0
commit
efad208143
@ -32,8 +32,6 @@ int SomnoposeLoader::Open(const QString & dirpath)
|
|||||||
|
|
||||||
QString dirtag = "somnopose";
|
QString dirtag = "somnopose";
|
||||||
|
|
||||||
// Could Scan the ZEO folder for a list of CSVs
|
|
||||||
|
|
||||||
QString path(dirpath);
|
QString path(dirpath);
|
||||||
path = path.replace("\\", "/");
|
path = path.replace("\\", "/");
|
||||||
|
|
||||||
@ -91,11 +89,13 @@ int SomnoposeLoader::OpenFile(const QString & filename)
|
|||||||
|
|
||||||
// Check we have all fields available
|
// Check we have all fields available
|
||||||
if ((col_timestamp < 0) || (col_inclination < 0) || (col_orientation < 0)) {
|
if ((col_timestamp < 0) || (col_inclination < 0) || (col_orientation < 0)) {
|
||||||
|
qDebug() << "Header missing one of timestamp, inclination, or orientation";
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
QDateTime epoch(QDate(2001, 1, 1), QTime(0, 0, 0));
|
QDateTime epoch(QDate(2001, 1, 1));
|
||||||
qint64 ep = qint64(epoch.toTime_t()) * 1000, time;
|
qint64 ep = qint64(epoch.toTime_t()+epoch.offsetFromUtc()) * 1000, time;
|
||||||
|
qDebug() << "Epoch starts at" << epoch.toString();
|
||||||
|
|
||||||
double timestamp, orientation, inclination;
|
double timestamp, orientation, inclination;
|
||||||
QString data;
|
QString data;
|
||||||
@ -134,6 +134,7 @@ int SomnoposeLoader::OpenFile(const QString & filename)
|
|||||||
|
|
||||||
if (first) {
|
if (first) {
|
||||||
sid = time / 1000;
|
sid = time / 1000;
|
||||||
|
qDebug() << "First timestamp is" << QDateTime::fromMSecsSinceEpoch(time).toString();
|
||||||
|
|
||||||
if (mach->SessionExists(sid)) {
|
if (mach->SessionExists(sid)) {
|
||||||
return 0; // Already imported
|
return 0; // Already imported
|
||||||
|
Loading…
Reference in New Issue
Block a user