Fix date calculation in ol.format.IGC
This commit is contained in:
@@ -127,8 +127,8 @@ ol.format.IGC.prototype.readFeatureFromText = function(text) {
|
||||
}
|
||||
flatCoordinates.push(z);
|
||||
}
|
||||
var date = new Date(year, month, day, hour, minute, second, 0);
|
||||
flatCoordinates.push(date.getTime() / 1000);
|
||||
var dateTime = Date.UTC(year, month, day, hour, minute, second, 0);
|
||||
flatCoordinates.push(dateTime / 1000);
|
||||
}
|
||||
} else if (line.charAt(0) == 'H') {
|
||||
m = ol.format.IGC.HFDTE_RECORD_RE_.exec(line);
|
||||
|
||||
Reference in New Issue
Block a user