Try to fix FSP / LSP times for the third time

This commit is contained in:
D. Berge
2025-07-29 13:31:17 +02:00
parent f768f31b62
commit 2a0025cdbf

View File

@@ -1213,8 +1213,8 @@ export default {
`${p.num_points} Points</br>\n` +
`${p.length} m ${p.azimuth.toFixed(2)}°</br>\n` +
`${duration} @ ${speed.toFixed(1)} kt</br>\n` +
`<b>${p.fsp}</b> @ ${p.ts0.toISOString()}</br>\n` +
`<b>${p.lsp}</b> @ ${p.ts1.toISOString()}`;
`<b>${p.fsp}</b> @ ${(new Date(p.ts0))?.toISOString()}</br>\n` +
`<b>${p.lsp}</b> @ ${(new Date(p.ts1))?.toISOString()}`;
if (p.remarks) {
html += `</br>\n<hr/>${p.remarks}`;
@@ -1244,8 +1244,8 @@ export default {
html += `${p.num_points} points (${p.missing_shots ? (p.missing_shots + " missing") : "None missing"})<br/>\n`;
html+= `${(p.length??0).toFixed(0)} m ${(p.azimuth??0).toFixed(1)}°<br/>\n`;
html += `${p.duration}<br/>\n`;
html += `<b>${p.fsp}</b> @ ${p.ts0}<br/>\n`;
html += `<b>${p.lsp}</b> @ ${p.ts1}<br/>\n`;
html += `<b>${p.fsp}</b> @ ${(new Date(p.ts0))?.toISOString()}<br/>\n`;
html += `<b>${p.lsp}</b> @ ${(new Date(p.ts1))?.toISOString()}<br/>\n`;
if (p.ntbp) {
html += "<b>Not to be processed</b><br/>\n";
} else if (p.pending) {