Commit b409b51f authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

get_station: Support EVA / UIC code

parent 9553442f
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -8488,6 +8488,12 @@ sub get_station {
		return ($ds100_match);
	}
	my $eva_match = firstval { defined $_->[2] and $name eq $_->[2] } @stations;
	if ($eva_match) {
		return ($eva_match);
	}
	return get_station_by_name($name);
}