Skip to content

Commit 2fea255

Browse files
committed
fixed some order stuff in L2 prm
1 parent 876a849 commit 2fea255

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

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-10-25_07:35:18
1+
3.7.12-dev:::2024-10-31_11:57:59

src/modules/aux-level/param-aux.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,8 @@ void write_par_ll_cube(FILE *fp, bool verbose){
204204
fprintf(fp, "# X0000_Y0000 represents this point. It is a good choice to use a coord-\n");
205205
fprintf(fp, "# inate that is North-West of your study area – to avoid negative tile\n");
206206
fprintf(fp, "# numbers. Not used if DO_TILE = FALSE.\n");
207-
fprintf(fp, "# Type: Double. Valid range: [-90,90]\n");
208207
fprintf(fp, "# Type: Double. Valid range: [-180,180]\n");
208+
fprintf(fp, "# Type: Double. Valid range: [-90,90]\n");
209209
}
210210
fprintf(fp, "ORIGIN_LON = -25\n");
211211
fprintf(fp, "ORIGIN_LAT = 60\n");
@@ -251,16 +251,16 @@ void write_par_ll_atcor(FILE *fp, bool verbose){
251251
fprintf(fp, "# ------------------------------------------------------------------------\n");
252252

253253
if (verbose){
254-
fprintf(fp, "# This indicates if topographic correction should be performed. If TRUE,\n");
255-
fprintf(fp, "# a DEM need to be given.\n");
254+
fprintf(fp, "# This indicates if atmospheric correction should be performed. If TRUE,\n");
255+
fprintf(fp, "# Bottom-of-Atmosphere reflectance is computed. If FALSE, only Top-of-Atmo-\n");
256+
fprintf(fp, "# sphere reflectance is computed.\n");
256257
fprintf(fp, "# Type: Logical. Valid values: {TRUE,FALSE}\n");
257258
}
258259
fprintf(fp, "DO_ATMO = TRUE\n");
259260

260261
if (verbose){
261-
fprintf(fp, "# This indicates if atmospheric correction should be performed. If TRUE,\n");
262-
fprintf(fp, "# Bottom-of-Atmosphere reflectance is computed. If FALSE, only Top-of-Atmo-\n");
263-
fprintf(fp, "# sphere reflectance is computed.\n");
262+
fprintf(fp, "# This indicates if topographic correction should be performed. If TRUE,\n");
263+
fprintf(fp, "# a DEM need to be given.\n");
264264
fprintf(fp, "# Type: Logical. Valid values: {TRUE,FALSE}\n");
265265
}
266266
fprintf(fp, "DO_TOPO = TRUE\n");

0 commit comments

Comments
 (0)