Be explicit about what type of data is being QC'ed.

The source deviation QCs now tell the user whether raw
or final data is being QC'ed.
This commit is contained in:
D. Berge
2021-05-07 21:29:39 +02:00
parent f87aa08246
commit df3a0b4c50

View File

@@ -201,7 +201,7 @@
check: |
const currentShot = currentItem;
Math.abs(currentShot.error_i) <= parameters.crosslineError
|| `Crossline error: ${currentShot.error_i.toFixed(1)} > ${parameters.crosslineError}`
|| `Crossline error (${currentShot.type}): ${currentShot.error_i.toFixed(1)} > ${parameters.crosslineError}`
-
name: "Inline"
@@ -209,7 +209,7 @@
check: |
const currentShot = currentItem;
Math.abs(currentShot.error_j) <= parameters.inlineError
|| `Inline error: ${currentShot.error_j.toFixed(1)} > ${parameters.inlineError}`
|| `Inline error (${currentShot.type}): ${currentShot.error_j.toFixed(1)} > ${parameters.inlineError}`
-
name: "Centre of source preplot deviation (moving average)"