mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
ha107 matching 73% complete
This commit is contained in:
parent
32352bbde1
commit
d038d668b8
1 changed files with 10 additions and 0 deletions
|
|
@ -433,6 +433,16 @@ class DataLoader:
|
|||
|
||||
@staticmethod
|
||||
def correct_ha107_survey_list(survey_list):
|
||||
# Replace Front Street, East Stockham with Front Street, East Stockwith
|
||||
survey_list["Street / Block Name"] = survey_list["Street / Block Name"].str.replace(
|
||||
"Front Street, East Stockham", "Front Street, East Stockwith"
|
||||
)
|
||||
|
||||
# Replace "HONEYHOLE L;ANE" with "HONEYHOLES LANE"
|
||||
survey_list["Street / Block Name"] = survey_list["Street / Block Name"].str.replace(
|
||||
"HONEYHOLE L;ANE", "HONEYHOLES LANE"
|
||||
)
|
||||
|
||||
return survey_list
|
||||
|
||||
def merge_surveys_to_assets(self, asset_list, survey_list, ha_name):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue