You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add method to assign colors in order to maximize the distance between
features assigned to same color
This is the most cartographically pleasing color arrangement in my
opinion as it creates a nicely distributed set of colors.
Copy file name to clipboardexpand all lines: python/plugins/processing/algs/help/qgis.yaml
+7-3
Original file line number
Diff line number
Diff line change
@@ -545,11 +545,15 @@ qgis:texttofloat: >
545
545
This algorithm modifies the type of a given attribute in a vector layer, converting a text attribute containing numeric strings into a numeric attribute.
546
546
547
547
qgis:topologicalcoloring: >
548
-
This algorithm assigns a color index to polygon features in such a way that no adjacent polygons share the same color index.
548
+
This algorithm assigns a color index to polygon features in such a way that no adjacent polygons share the same color index, whilst minimizing the number of colors required.
549
549
550
-
The algorithm attempts to assign colors so that the total number of colors required is minimized, whilst keeping the count of features assigned to each individual color index balanced. A minimum number of colors can be specified if desired.
550
+
The algorithm allows choice of method to use when assigning colors. The default method attempts to assign colors so that the count of features assigned to each individual color index is balanced.
551
551
552
-
The color index is saved to a new attribute named color_id.
552
+
The 'by assigned area' mode instead assigns colors so that the total area of features assigned to each color is balanced. This mode can be useful to help avoid large features resulting in one of the colors appearing more dominant on a colored map.
553
+
554
+
The 'by distance between colors' mode will assign colors in order to maximize the distance between features of the same color. This mode helps to create a more uniform distribution of colors across a map.
555
+
556
+
A minimum number of colors can be specified if desired. The color index is saved to a new attribute named color_id.
553
557
554
558
qgis:translate: >
555
559
This algorithm moves the geometries within a layer, by offsetting them with a specified x and y displacement.
0 commit comments