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