handling more errors

This commit is contained in:
Khalim Conn-Kowlessar 2023-12-24 23:45:25 +00:00
parent e21057ca61
commit 85ad1d3fc5

View file

@ -127,6 +127,7 @@ def load_data():
survey_list["Street / Block Name"] = survey_list["Street / Block Name"].str.replace("eccels", "eccles")
survey_list["Street / Block Name"] = survey_list["Street / Block Name"].str.replace("chatley, road", "chatley road")
survey_list["Street / Block Name"] = survey_list["Street / Block Name"].str.replace("vaughen", "Vaughan")
survey_list["Street / Block Name"] = survey_list["Street / Block Name"].str.replace("cresent", "crescent")
# We now need to merge the survey list onto the asset list
# Could be easier just to do a search on each row, even though it's much slower