Skip to content

Commit 56ba138

Browse files
committed
INTERPOLATE = NONE as default + update of prm in docs
1 parent 39e488b commit 56ba138

File tree

5 files changed

+24
-3
lines changed

5 files changed

+24
-3
lines changed

docs/source/_static/parameter-files/parameter_LEVEL2.prm

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,10 @@ MULTI_SCATTERING = TRUE
156156
# daily tables do not exist or if there is no valid daily value.
157157
# Type: full directory path
158158
DIR_WVPLUT = NULL
159+
# This indicates if the water vapor climatology tables are permitted (FALSE),
160+
# or if only daily tables are allowed (TRUE)
161+
# Type: Logical. Valid values: {TRUE,FALSE}
162+
STRICT_WATER_VAPOR = FALSE
159163
# This specifies a global value for atmospheric water vapor content in
160164
# g cm-2. This parameter can be a dummy value to quickly process an image
161165
# without needing to generate a water vapor database. Note that especially

docs/source/_static/parameter-files/parameter_LEVEL3.prm

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,13 @@ Y_FACTOR = 0.75
222222
# Should selection or weighting be performed?
223223
# Type: Logical. Valid values: {TRUE,FALSE}
224224
SELECT = TRUE
225+
# How to combine individual scores?
226+
# In the default behaviour, the individual scores are summed up.
227+
# You can also choose to multiply the scores. This applies a
228+
# strong penalty on an observation that performs poor in a single score.
229+
# The weigting of scores is applied in both cases.
230+
# Type: Character. Valid values: {ADDITIVE,MULTIPLICATIVE}
231+
COMBINE_SCORES = ADDITIVE
225232
# These parameters specify the function values used for fitting the DOY
226233
# scoring functions. The function type is automatically chosen from the
227234
# given values, i.e.
@@ -251,6 +258,16 @@ DOY_STATIC = 120 180 240
251258
# parts of the year are selected.
252259
# Type: Logical. Valid values: {TRUE,FALSE}
253260
OFF_SEASON = FALSE
261+
# This parameter specifies whether observations with a cloud score of less than 1%
262+
# should be candidates. On one hand, this reduces nodata gaps in the composite. On the other hand,
263+
# it will include clouds if there is no better observation.
264+
# Type: Logical. Valid values: {TRUE,FALSE}
265+
USE_CLOUDY = FALSE
266+
# This parameter specifies whether observations with a haze score of less than 1%
267+
# should be candidates. On one hand, this reduces nodata gaps in the composite. On the other hand,
268+
# it will include haze if there is no better observation.
269+
# Type: Logical. Valid values: {TRUE,FALSE}
270+
USE_HAZY = FALSE
254271
# This parameter controls the strength of the DOY score.
255272
# 0 disables the use of this score.
256273
# Type: Float. Valid values: [0,1]

docs/source/_static/parameter-files/parameter_TSA.prm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ OUTPUT_RMS = FALSE
256256
# Radial Basis Function or harmonic Interpolation.
257257
# Harmonic interpolation can be used as a simple near-real time monitoring component.
258258
# Type: Character. Valid values: {NONE,LINEAR,MOVING,RBF,HARMONIC}
259-
INTERPOLATE = RBF
259+
INTERPOLATE = NONE
260260
# Max temporal distance for the moving average filter in days. For each
261261
# interpolation date, MOVING_MAX days before and after are considered.
262262
# Type: Integer. Valid range: [1,365]

misc/force-version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.7.12-dev:::2024-05-23_13:00:29
1+
3.7.12-dev:::2024-07-11_06:19:54

src/aux-level/param-aux.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1499,7 +1499,7 @@ void write_par_hl_tsi(FILE *fp, bool verbose){
14991499
fprintf(fp, "# Harmonic interpolation can be used as a simple near-real time monitoring component.\n");
15001500
fprintf(fp, "# Type: Character. Valid values: {NONE,LINEAR,MOVING,RBF,HARMONIC}\n");
15011501
}
1502-
fprintf(fp, "INTERPOLATE = RBF\n");
1502+
fprintf(fp, "INTERPOLATE = NONE\n");
15031503

15041504
if (verbose){
15051505
fprintf(fp, "# Max temporal distance for the moving average filter in days. For each\n");

0 commit comments

Comments
 (0)