From f9d165da6720781d74bffbfdfb27b56af4970d19 Mon Sep 17 00:00:00 2001 From: Thomas Fuhrmann Date: Wed, 11 Dec 2024 11:14:25 +0100 Subject: [PATCH] Add GRA color code --- FeatureRenderer.pyt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/FeatureRenderer.pyt b/FeatureRenderer.pyt index 21ac278..f8980fb 100644 --- a/FeatureRenderer.pyt +++ b/FeatureRenderer.pyt @@ -782,5 +782,7 @@ def get_symbol_color(color_string): return { "CMYK": [100, 100, 100, 0, 100], } + elif color_string == "GRA": + return {"CMYK": [10, 10, 10, 21, 100]} else: raise ValueError(f"Execution aborted: unknown color code {color_string}")