From 7b7317cd55ff25a1f0dd33efd3feadcc31c0f59d Mon Sep 17 00:00:00 2001 From: Matt Way Date: Sat, 21 Sep 2024 14:45:45 +1000 Subject: [PATCH] Handle edge case from EAST GIPPSLAND.csv --- csv-normaliser/main.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/csv-normaliser/main.php b/csv-normaliser/main.php index 68ed719..df4e991 100644 --- a/csv-normaliser/main.php +++ b/csv-normaliser/main.php @@ -77,6 +77,9 @@ if (($handle = fopen($inputFile, "r")) !== FALSE) { if ($currentWard == "Coastal-promontory") { $currentWard = "Coastal-Promontory"; } + if ($currentWard == "East Gippsland Shire") { + $currentWard = "Unsubdivided"; + } } if (trim($data[0]) == "Candidate" || trim($data[0]) == "") { if ($currentWard == null) {