From 87e5e1713a1fb919da5e83dcc43bbceb2b31ddd0 Mon Sep 17 00:00:00 2001 From: zyphlar Date: Sat, 30 Dec 2023 00:28:54 +0000 Subject: [PATCH] Spell out CR as County Road in Florida --- qgis-functions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qgis-functions.py b/qgis-functions.py index 1443ca3..6589d3d 100644 --- a/qgis-functions.py +++ b/qgis-functions.py @@ -28,13 +28,13 @@ def formatstreetname(name): # Weird names like 123D we keep upper if re.search("[0-9]+[A-Z]+", name): return name - # Prefixes we want to keep uppercase + # Highway/etc prefixes if name == "US": return "US" if name == "SR": return "SR" if name == "CR": - return "CR" + return "County Road" if name == "C": return "C" # Directions