diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-11-17 20:58:53 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-11-17 20:58:53 +0100 |
commit | 3d845879adfa68be120b57a2a57184ccd1cc337b (patch) | |
tree | 0e6e26f0b3ff99acb07b28c9d1e99c90a9424ffa /share/csv2json | |
parent | 76c660b3742c5b4605c5fc072afd0aeb0ec5b4cd (diff) |
add csv2json and json2csv helpers for easier station list management
Diffstat (limited to 'share/csv2json')
-rwxr-xr-x | share/csv2json | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/share/csv2json b/share/csv2json new file mode 100755 index 0000000..a91bac9 --- /dev/null +++ b/share/csv2json @@ -0,0 +1,37 @@ +#!/usr/bin/env perl + +use strict; +use warnings; +use 5.010; + +use File::Slurp qw(read_file write_file); +use JSON; +use Text::CSV; + +my @csv_lines = read_file( 'stations.csv', { binmode => ':utf8' } ); +my @stations; +my $csv = Text::CSV->new; + +# skip header +shift @csv_lines; + +for my $line (@csv_lines) { + if ( $csv->parse($line) ) { + my ( $name, $ds100, $uic, $lat, $lon ) = $csv->fields; + my $station = { + name => $name, + ds100 => $ds100, + uic => 0 + $uic, + latlong => undef + }; + if ( $lat and $lon ) { + $station->{latlong} = [ 0 + $lat, 0 + $lon ]; + } + push( @stations, $station ); + } +} + +@stations = sort { $a->{name} cmp $b->{name} } @stations; + +my $json_out = JSON->new->utf8->canonical->pretty->encode( [@stations] ); +write_file( 'stations.json', $json_out ); |