ha107 matching 73% complete

This commit is contained in:
Khalim Conn-Kowlessar 2024-02-22 17:52:20 +00:00
parent 32352bbde1
commit d038d668b8

View file

@ -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):