diff options
author | Daniel Friesel <derf@finalrewind.org> | 2022-12-11 12:17:07 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2022-12-11 12:17:07 +0100 |
commit | 905d9148ed2b530634099797388d282cea0a522c (patch) | |
tree | 077f538950a0bddce9732dad21b513f91e2825c4 /bin/db-iris | |
parent | 3697c04f4db98a65d85b339c6067d5b73b6ddd5e (diff) |
db-iris: prefer EVA rather than DS100 to identify stations
DS100 is not always available, for some reasons
Diffstat (limited to 'bin/db-iris')
-rwxr-xr-x | bin/db-iris | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/db-iris b/bin/db-iris index f45996e..2b6025d 100755 --- a/bin/db-iris +++ b/bin/db-iris @@ -239,7 +239,7 @@ sub get_station { exit(1); } elsif ( @stations == 1 ) { - return $stations[0][0]; + return $stations[0][2]; } else { say STDERR "The input '$input_name' is ambiguous. Please choose one " |