Skip to content

Commit

Permalink
remove preceeding Station word
Browse files Browse the repository at this point in the history
  • Loading branch information
kylerchin committed Oct 27, 2024
1 parent d9653d2 commit e99f880
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/maple/gtfs_ingestion_sequence/stops_into_postgres.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ pub async fn stops_into_postgres(
let name: Option<String> = titlecase_process_new(stop.name.as_ref());
let display_name: Option<String> = name.as_ref().map(|name| {
name.clone()
.replace("Station ", "")
.replace(" Station", "")
.replace(", Bahnhof", "")
.replace(" Banhhof", "")
Expand Down

0 comments on commit e99f880

Please sign in to comment.