diff options
author | Patrick Rauscher <prauscher@ohai.su> | 2014-01-15 00:52:58 +0100 |
---|---|---|
committer | Patrick Rauscher <prauscher@ohai.su> | 2014-01-15 00:52:58 +0100 |
commit | 2ecfc2cfd6015729608df339f14e4a2e520a6696 (patch) | |
tree | 7e46ccc5b578857c771bc3316c8a18bf534a7b28 /scripts/acronyms.pl | |
parent | 094d5ccf7e3a7b74d33a7b0db16f37e68d86590c (diff) |
enable DS100-codes for input. could be more efficient maybe, but first version
Diffstat (limited to 'scripts/acronyms.pl')
-rwxr-xr-x | scripts/acronyms.pl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/acronyms.pl b/scripts/acronyms.pl index 3687f40..43634d3 100755 --- a/scripts/acronyms.pl +++ b/scripts/acronyms.pl @@ -48,6 +48,12 @@ sub get_stations { sub get_station_by_name { my ( $name ) = @_; + my $ds100_match = firstval { $nname eq $_->[0] } @stations; + + if ($ds100_match) { + return ($ds100_match); + } + my $nname = lc($name); my $actual_match = firstval { $nname eq lc($_->[1]) } @stations; |