176 lines
3.8 KiB
JavaScript
176 lines
3.8 KiB
JavaScript
const csvParse = require('csv-parse/lib/sync');
|
|
|
|
function _parseFloat(token) {
|
|
let f = parseFloat(token);
|
|
if (isNaN(f)) {
|
|
f = parseFloat(token.substring(0, 10));
|
|
}
|
|
if (isNaN(f)) {
|
|
f = 0.0;
|
|
}
|
|
return f;
|
|
}
|
|
|
|
function replaceDollarNewlinesHack(body) {
|
|
// see if we are using the hack with $ as newlines, replace them for the csv parser
|
|
if (body.endsWith('$')) {
|
|
return body.replace(/\$/g, '\n');
|
|
}
|
|
|
|
return body;
|
|
}
|
|
|
|
function addPointsToTrack(trackInfo, body, format = null) {
|
|
body = replaceDollarNewlinesHack(body);
|
|
|
|
const detectedFormat = format != null ? format : detectFormat(body);
|
|
|
|
let parser;
|
|
switch (detectedFormat) {
|
|
case 'invalid':
|
|
throw new Error('track format cannot be detected');
|
|
|
|
case 1:
|
|
parser = parseObsver1;
|
|
break;
|
|
|
|
case 2:
|
|
parser = parseObsver2;
|
|
break;
|
|
}
|
|
|
|
const points = trackInfo.trackData.points;
|
|
for (const newPoint of parser(body)) {
|
|
points.push(newPoint);
|
|
}
|
|
}
|
|
|
|
function detectFormat(body) {
|
|
if (!body.length) {
|
|
return 'invalid';
|
|
}
|
|
|
|
const firstLinebreakIndex = body.indexOf('\n');
|
|
|
|
if (firstLinebreakIndex === -1) {
|
|
return 1;
|
|
}
|
|
|
|
const firstLine = body.substring(0, firstLinebreakIndex);
|
|
|
|
const match = firstLine.match(/(^|&)OBSDataFormat=([\d]+)($|&)/);
|
|
if (match) {
|
|
return Number(match[2]);
|
|
}
|
|
|
|
if (/^Date;Time/.test(firstLine)) {
|
|
return 1;
|
|
}
|
|
|
|
return 'invalid';
|
|
}
|
|
|
|
function* parseObsver1(body) {
|
|
for (const record of csvParse(body, {
|
|
delimiter: ';',
|
|
encoding: 'utf8',
|
|
columns: ['date', 'time', 'latitude', 'longitude', 'course', 'speed', 'd1', 'd2', 'flag', 'private'],
|
|
relax_column_count: true,
|
|
cast(value, { column }) {
|
|
if (/latitude|longitude|course|speed/.test(column)) {
|
|
return _parseFloat(value);
|
|
} else {
|
|
return value;
|
|
}
|
|
},
|
|
})) {
|
|
if (record.date === 'Date') {
|
|
// ignore header line
|
|
continue;
|
|
}
|
|
|
|
yield record;
|
|
}
|
|
}
|
|
|
|
function* parseObsver2(body) {
|
|
for (const record of csvParse(body, {
|
|
from_line: 2,
|
|
trim: true,
|
|
columns: true,
|
|
skip_empty_lines: true,
|
|
delimiter: ';',
|
|
encoding: 'utf8',
|
|
relax_column_count: true,
|
|
cast(value, context) {
|
|
if (value === '') {
|
|
return null;
|
|
}
|
|
|
|
let type;
|
|
switch (context.column) {
|
|
case 'Millis':
|
|
case 'Left':
|
|
case 'Right':
|
|
case 'Confirmed':
|
|
case 'Invalid':
|
|
case 'InsidePrivacyArea':
|
|
case 'Measurements':
|
|
case 'Satellites':
|
|
type = 'int';
|
|
break;
|
|
|
|
case 'Date':
|
|
case 'Time':
|
|
case 'Comment':
|
|
case 'Marked':
|
|
type = 'string';
|
|
break;
|
|
|
|
case 'Latitude':
|
|
case 'Longitude':
|
|
case 'Altitude':
|
|
case 'Course':
|
|
case 'Speed':
|
|
case 'HDOP':
|
|
case 'BatteryLevel':
|
|
case 'Factor':
|
|
type = 'float';
|
|
break;
|
|
|
|
default:
|
|
type = /^(Tms|Lus|Rus)/.test(context.column) ? 'int' : 'string';
|
|
}
|
|
|
|
switch (type) {
|
|
case 'int':
|
|
return parseInt(value);
|
|
|
|
case 'float':
|
|
return parseFloat(value);
|
|
|
|
case 'string':
|
|
return value;
|
|
}
|
|
},
|
|
})) {
|
|
// We convert the new format back to the old format for storage here, until
|
|
// we upgrade the storage format as well to include all data. But we'll
|
|
// have to upgrade the obsApp first.
|
|
yield {
|
|
date: record.Date,
|
|
time: record.Time,
|
|
latitude: record.Latitude,
|
|
longitude: record.Longitude,
|
|
course: record.Course,
|
|
speed: record.Speed,
|
|
d1: record.Left,
|
|
d2: record.Right,
|
|
flag: Boolean(record.Confirmed),
|
|
private: Boolean(record.InsidePrivacyArea),
|
|
};
|
|
}
|
|
}
|
|
|
|
module.exports = { addPointsToTrack, detectFormat, parseObsver1, parseObsver2 };
|