mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
ha107 matching 74% done
This commit is contained in:
parent
d038d668b8
commit
ccb764d4a9
1 changed files with 10 additions and 0 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue