-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adding formulae for spike and gradient * Adding @catsch to contributors The contributors session need some thinking on how to organize it, but adding @catsch now anyways so we don't forget it later. * Moving tests session into src All source code for the document should be organized inside src. * Fixing identation with spaces * Adding digit rollover * A reminder for global range * Argo's spike for nitrate Adding a note here so we don't miss the comments from @catsch. * Moving tests to AsciiDoc While we don't decide which one to use, let's stay consistent. * Including tests section into main document * Initiating section procedures * Fix: Spike - median Thanks to @callumrollo * Adding DOI for BGC nitrate QC Thanks to @callumrollo * Improving bibtex record
- Loading branch information
Showing
3 changed files
with
63 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
@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}, | ||
year={2021}, | ||
edition={Version 1.0}, | ||
doi={10.13155/84370} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
= Tests | ||
|
||
== Global Range | ||
|
||
== Gradient | ||
|
||
[stem] | ||
++++ | ||
X_i = \left| V_i - \frac{V_{i+1} + V_{i-1}}{2} \right| | ||
++++ | ||
|
||
== Spike | ||
|
||
[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| | ||
++++ | ||
|
||
== Digit Rollover | ||
|
||
[stem] | ||
++++ | ||
X_i = V_i - V_{i-1} | ||
++++ | ||
|
||
== Spike - Median | ||
|
||
Proposed at <<BGC_nitrate>> | ||
|
||
[stem] | ||
++++ | ||
X_i = \left| V_i - median(V_{i-2}, V_{i-1}, V_i, V_{i+1}, V_{i+2}) \right| | ||
++++ |