[GRASS-SVN] r58159 - grass/trunk/lib/python/temporal

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Nov 6 07:12:36 PST 2013


Author: lucadelu
Date: 2013-11-06 07:12:36 -0800 (Wed, 06 Nov 2013)
New Revision: 58159

Modified:
   grass/trunk/lib/python/temporal/univar_statistics.py
Log:
fix separator position

Modified: grass/trunk/lib/python/temporal/univar_statistics.py
===================================================================
--- grass/trunk/lib/python/temporal/univar_statistics.py	2013-11-06 15:12:08 UTC (rev 58158)
+++ grass/trunk/lib/python/temporal/univar_statistics.py	2013-11-06 15:12:36 UTC (rev 58159)
@@ -63,7 +63,7 @@
         string += "mean_of_abs" + fs + "stddev" + fs + "variance" + fs
         string += "coeff_var" + fs + "sum" + fs + "null_cells" + fs + "cells"
         if extended == True:
-            string += "first_quartile" + fs + "median" + fs
+            string += fs + "first_quartile" + fs + "median" + fs
             string += "third_quartile" + fs + "percentile_90"
 
         print string
@@ -89,9 +89,9 @@
         string += fs + str(stats["max"]) + fs + str(stats["mean_of_abs"])
         string += fs + str(stats["stddev"]) + fs + str(stats["variance"])
         string += fs + str(stats["coeff_var"]) + fs + str(stats["sum"])
-        string += fs + str(stats["null_cells"]) + fs + str(stats["cells"]) + fs
+        string += fs + str(stats["null_cells"]) + fs + str(stats["cells"])
         if extended == True:            
-            string += str(stats["first_quartile"]) + fs + str(stats["median"])
+            string += fs + str(stats["first_quartile"]) + fs + str(stats["median"])
             string += fs + str(stats["third_quartile"]) + fs + str(stats["percentile_90"])
         print string
 



More information about the grass-commit mailing list