mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
82% complete
This commit is contained in:
parent
a2a8bc012e
commit
48ec641675
1 changed files with 4 additions and 0 deletions
|
|
@ -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."]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue