Skip to content

Commit

Permalink
Adding GTSPP reference (#11)
Browse files Browse the repository at this point in the history
* Adding GTSPP reference

* Missing DOI on GTSPP-2010

Thanks to @callumrollo!

* Minimalist text on spike check
  • Loading branch information
castelao authored Aug 21, 2024
1 parent 7203f58 commit 34db336
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/RealtimeQC.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,5 @@ List of all contributors an their contributions.
[bibliography]
== References

* [[GTSPP:1990]] Intergovernmental Oceanographic Commission (1990) GTSPP Real-Time Quality Control Manual. Paris, France, UNESCO, 128pp. (Intergovernmental Oceanographic Commission Manuals and Guides; 22).
* [[BGC_nitrate]] Johnson Kenneth, Maurer Tanya, Plant Joshua, Bittig Henry, Schallenberg Christina, Schmechtig Catherine (2021). BGC-Argo quality control manual for nitrate concentration. https://doi.org/10.13155/84370
23 changes: 23 additions & 0 deletions src/realtime_qc.bib
Original file line number Diff line number Diff line change
@@ -1,4 +1,27 @@

@manual{GTSPP:1990,
title = "GTSPP Real-Time Quality Control Manual",
organization = {UNESCO--IOC},
address ="United Nations Educational, Scientific and Cultural Organization 7, Place de Fontenoy,
75352, {P}aris 07 SP",
year = "1990",
note = "SC-90/WS-74",
series = "Intergovernmental Oceanographic Commission Manuals and Guides; 22",
key = "{UNESCO--IOC}, 1990",
}

@manual{GTSPP:2010,
title = "GTSPP Real-Time Quality Control Manual",
organization = {UNESCO--IOC},
address ="United Nations Educational, Scientific and Cultural Organization 7, Place de Fontenoy,
75352, {P}aris 07 SP",
edition = "First Revised Edition",
year = "2010",
note = "IOC/2010/MG/22Rev.",
key = "{UNESCO--IOC}, 2010",
doi = "10.25607/OBP-1425",
}

@manual{johnson2021bgc,
title={BGC-Argo quality control manual for nitrate concentration},
author={Johnson, Kenneth and Maurer, Tanya and Plant, Joshua and Bittig, Henry and Schallenberg, Christina and Schmechtig, Catherine},
Expand Down
7 changes: 6 additions & 1 deletion src/tests.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,16 @@ X_i = \left| V_i - \frac{V_{i+1} + V_{i-1}}{2} \right|

== Spike

The spike check was first proposed in GTSPP:1990 and defined as:

[stem]
++++
X_i = \left| V_i - \frac{V_{i+1} + V_{i-1}}{2} \right| - \left| \frac{V_{i+1} - V_{i-1}}{2} \right|
X_i = \left| V_i - \frac{V_{i+1} + V_{i-1}}{2} \right| - \left| \frac{V_{i-1} - V_{i+1}}{2} \right|,
++++

where $i$ is the time index, i.e. it assumed the data $V$ was sorted by time.
This check is largely used without any modification.

== Digit Rollover

[stem]
Expand Down

0 comments on commit 34db336

Please sign in to comment.