From 48f6dcd45adec36b6e48c1913e03eb6ed8f9e133 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Tue, 19 Nov 2019 21:50:23 +0100 Subject: Rename UIC to EVA. EVA IDs are often (but not always!) UIC IDs --- share/json2csv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'share/json2csv') diff --git a/share/json2csv b/share/json2csv index 0601f96..49aead9 100755 --- a/share/json2csv +++ b/share/json2csv @@ -14,11 +14,11 @@ my $csv = Text::CSV->new( { eol => "\n" } ); my $buf = ''; -$csv->combine( 'name', 'DS100', 'UIC (IBNR)', 'Latitude', 'Longitude' ); +$csv->combine( 'name', 'DS100', 'EVA (not always identical with UIC ID)', 'Latitude', 'Longitude' ); $buf .= $csv->string; for my $station ( @{$stations} ) { - my @fields = ( $station->{name}, $station->{ds100}, $station->{uic} ); + my @fields = ( $station->{name}, $station->{ds100}, $station->{eva} ); if ( $station->{latlong} ) { push( @fields, $station->{latlong}[0], $station->{latlong}[1] ); } -- cgit v1.2.3