[GRASS-SVN] r36595 - grass/trunk/imagery/i.modis.qc

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Apr 5 14:04:36 EDT 2009


Author: martinl
Date: 2009-04-05 14:04:36 -0400 (Sun, 05 Apr 2009)
New Revision: 36595

Modified:
   grass/trunk/imagery/i.modis.qc/main.c
Log:
fix i.modis.qc description causing G_parser() segfault 


Modified: grass/trunk/imagery/i.modis.qc/main.c
===================================================================
--- grass/trunk/imagery/i.modis.qc/main.c	2009-04-05 17:54:40 UTC (rev 36594)
+++ grass/trunk/imagery/i.modis.qc/main.c	2009-04-05 18:04:36 UTC (rev 36595)
@@ -89,8 +89,7 @@
     input->key = "productname";
     input->type = TYPE_STRING;
     input->required = YES;
-    input->gisprompt = _("Name of MODIS product type");
-    input->description = _("Name of MODIS product");
+    input->description = _("Name of MODIS product type");
     input->descriptions =_("mod09Q1;surf. refl. 250m 8-days;"
                             "mod09A1;surf. refl. 500m 8-days;"
                             "mod09A1s;surf. refl. 500m 8-days, State QA;"
@@ -101,8 +100,7 @@
     input1->key = "qcname";
     input1->type = TYPE_STRING;
     input1->required = YES;
-    input1->gisprompt = _("Name of QC type to extract");
-    input1->description = _("Name of QC");
+    input1->description = _("Name of QC type to extract");
     input1->descriptions =_("adjcorr;mod09: Adjacency Correction;"
                             "atcorr;mod09: Atmospheric Correction;"
                             "cloud;mod09: Cloud State;"



More information about the grass-commit mailing list