82% complete

This commit is contained in:
Khalim Conn-Kowlessar 2024-01-22 17:17:57 +00:00
parent a2a8bc012e
commit 48ec641675

View file

@ -156,6 +156,7 @@ class DataLoader:
asset_list["propertyaddress"] = asset_list["propertyaddress"].str.replace("Baggott Place", "Baggotts Place")
asset_list["propertyaddress"] = asset_list["propertyaddress"].str.replace("Cherry Tree", "Cherrytree")
asset_list["propertyaddress"] = asset_list["propertyaddress"].str.replace("Maryhill Close", "Mary Hill Close")
asset_list["propertyaddress"] = asset_list["propertyaddress"].str.replace("Moffat Way", "Moffatt Way")
# Prepare the asset list
asset_list["matching_address"] = asset_list["propertyaddress"].str.lower().str.strip()
@ -260,6 +261,9 @@ class DataLoader:
"Brittania Avenue", "Brittain Avenue"
)
# Moffat Way
# Moffatt Way
matching_lookup = []
for _, row in tqdm(survey_list.iterrows(), total=len(survey_list)):
house_number = row["NO."]