ha107 matching 74% done

This commit is contained in:
Khalim Conn-Kowlessar 2024-02-22 18:01:24 +00:00
parent d038d668b8
commit ccb764d4a9

View file

@ -443,6 +443,16 @@ class DataLoader:
"HONEYHOLE L;ANE", "HONEYHOLES LANE"
)
# Replace "Croft Lane Cherry Willingham, Lincoln" with "Croft Lane, Cherry Willingham, Lincoln"
survey_list["Street / Block Name"] = survey_list["Street / Block Name"].str.replace(
"Croft Lane Cherry Willingham, Lincoln", "Croft Lane, Cherry Willingham, Lincoln"
)
# Replace "Snelland Road Wickenby, Lincoln" with "Snelland Road, Wickenby, Lincoln"
survey_list["Street / Block Name"] = survey_list["Street / Block Name"].str.replace(
"Snelland Road Wickenby, Lincoln", "Snelland Road, Wickenby, Lincoln"
)
return survey_list
def merge_surveys_to_assets(self, asset_list, survey_list, ha_name):