Skip to content

Commit

Permalink
fixed some order stuff in L2 prm
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfrantz committed Oct 31, 2024
1 parent 876a849 commit 2fea255
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion misc/force-version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.7.12-dev:::2024-10-25_07:35:18
3.7.12-dev:::2024-10-31_11:57:59
12 changes: 6 additions & 6 deletions src/modules/aux-level/param-aux.c
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,8 @@ void write_par_ll_cube(FILE *fp, bool verbose){
fprintf(fp, "# X0000_Y0000 represents this point. It is a good choice to use a coord-\n");
fprintf(fp, "# inate that is North-West of your study area – to avoid negative tile\n");
fprintf(fp, "# numbers. Not used if DO_TILE = FALSE.\n");
fprintf(fp, "# Type: Double. Valid range: [-90,90]\n");
fprintf(fp, "# Type: Double. Valid range: [-180,180]\n");
fprintf(fp, "# Type: Double. Valid range: [-90,90]\n");
}
fprintf(fp, "ORIGIN_LON = -25\n");
fprintf(fp, "ORIGIN_LAT = 60\n");
Expand Down Expand Up @@ -251,16 +251,16 @@ void write_par_ll_atcor(FILE *fp, bool verbose){
fprintf(fp, "# ------------------------------------------------------------------------\n");

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

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

0 comments on commit 2fea255

Please sign in to comment.