Explorar el Código

fixed input descriptions

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@44568 15284696-431f-4ddb-bdfa-cd5b030d7da7
Yann Chemin hace 14 años
padre
commit
f206af031b
Se han modificado 2 ficheros con 3 adiciones y 2 borrados
  1. 2 1
      imagery/i.aster.toar/i.aster.toar.html
  2. 1 1
      imagery/i.aster.toar/main.c

+ 2 - 1
imagery/i.aster.toar/i.aster.toar.html

@@ -1,7 +1,8 @@
 <H2>DESCRIPTION</H2>
 
-<EM>i.aster.toar</EM> calculates the Top Of Atmosphere (TOA) reflectance for Terra-Aster L1B in the visible, NIR and SWIR bands (9 layers) and brigthness temperature for the TIR bands, all from L1B DN values. 
+<EM>i.aster.toar</EM> calculates the Top Of Atmosphere (TOA) reflectance for Terra-Aster L1B in the visible, NIR and SWIR bands (9+1 bands) and brigthness temperature for the TIR bands (5 bands), all from L1B DN values. 
 It is useful after importing your Aster imagery from storage format that is generally in standard DN values range.
+The order of input bands is VNIR: 1,2,3N,3B, SWIR: 4,5,6,7,8,9 TIR: 10,11,12,13,14 in one comma-separated list.
 
 <H2>NOTES</H2>
 Internally, a gain code is defined to modify gains according to spectral bands following the GeoSystems GmbH ATCOR Ver. 2.0 Calibration Files. The function is defined in gain_aster.c file.

+ 1 - 1
imagery/i.aster.toar/main.c

@@ -99,7 +99,7 @@ int main(int argc, char *argv[])
 
     /* Define the different options */
     input = G_define_standard_option(G_OPT_R_INPUTS);
-    input->description = _("Names of ASTER DN layers (9 layers)");
+    input->description = _("Names of ASTER DN layers (15 layers)");
 
     input1 = G_define_option();
     input1->key = _("doy");