[QGIS Commit] r14401 - trunk/qgis/src/core/symbology-ng

svn_qgis at osgeo.org svn_qgis at osgeo.org
Mon Oct 18 15:48:37 EDT 2010


Author: cfarmer
Date: 2010-10-18 12:48:37 -0700 (Mon, 18 Oct 2010)
New Revision: 14401

Modified:
   trunk/qgis/src/core/symbology-ng/qgsgraduatedsymbolrendererv2.cpp
Log:
[FEATURE] adds 3 new classification algorithms, including natural breaks (jenks), standard deviations, and a 'pretty' algorithm for generating 'human readable' class breaks

Modified: trunk/qgis/src/core/symbology-ng/qgsgraduatedsymbolrendererv2.cpp
===================================================================
--- trunk/qgis/src/core/symbology-ng/qgsgraduatedsymbolrendererv2.cpp	2010-10-18 19:43:08 UTC (rev 14400)
+++ trunk/qgis/src/core/symbology-ng/qgsgraduatedsymbolrendererv2.cpp	2010-10-18 19:48:37 UTC (rev 14401)
@@ -351,8 +351,8 @@
   // from the R statistical programming language.
   // Code ported from R implementation from 'labeling' R package
   //
-  // Computes a sequence of about 'classes' equally spaced 'round' values
-  // which cover the range of of values from 'minimum' to 'maximum'.
+  // Computes a sequence of about 'classes' equally spaced round values
+  // which cover the range of values from 'minimum' to 'maximum'.
   // The values are chosen so that they are 1, 2 or 5 times a power of 10.
 
   QList<double> breaks;



More information about the QGIS-commit mailing list