From ee953eef09cc090dc98a09038ab97be55875a2a5 Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Mon, 18 Dec 2023 22:22:11 +0000
Subject: [PATCH] Update stop names

---
 stops/common.php |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/stops/common.php b/stops/common.php
index 54fdfdd..8cf4642 100644
--- a/stops/common.php
+++ b/stops/common.php
@@ -15,3 +15,11 @@
 	
 	return array_values($words);
 }
+
+function normalize_name($string) {
+	return strtr(strtr($string, ['.' => '. ']), ['  ' => ' ']);
+}
+
+function normalize_name_cmp($string) {
+	return normalize_name(mb_strtolower($string, 'UTF-8'));
+}

--
Gitblit v1.9.1