From 3d845879adfa68be120b57a2a57184ccd1cc337b Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sun, 17 Nov 2019 20:58:53 +0100 Subject: add csv2json and json2csv helpers for easier station list management --- share/csv2json | 37 +++++++++++++++++++++++++++++++++++++ share/json2csv | 30 ++++++++++++++++++++++++++++++ 2 files changed, 67 insertions(+) create mode 100755 share/csv2json create mode 100755 share/json2csv 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 ); diff --git a/share/json2csv b/share/json2csv new file mode 100755 index 0000000..0601f96 --- /dev/null +++ b/share/json2csv @@ -0,0 +1,30 @@ +#!/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 $json_str = read_file('stations.json'); +my $stations = JSON->new->utf8->decode($json_str); +my $csv = Text::CSV->new( { eol => "\n" } ); + +my $buf = ''; + +$csv->combine( 'name', 'DS100', 'UIC (IBNR)', 'Latitude', 'Longitude' ); +$buf .= $csv->string; + +for my $station ( @{$stations} ) { + my @fields = ( $station->{name}, $station->{ds100}, $station->{uic} ); + if ( $station->{latlong} ) { + push( @fields, $station->{latlong}[0], $station->{latlong}[1] ); + } + if ( $csv->combine(@fields) ) { + $buf .= $csv->string; + } +} + +write_file( 'stations.csv', { binmode => ':utf8' }, $buf ); -- cgit v1.2.3