Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/annefou/odb-governance

ODB Governance for SPREADS
https://github.com/annefou/odb-governance

Last synced: about 24 hours ago
JSON representation

ODB Governance for SPREADS

Awesome Lists containing this project

README

        

* ECMWF ODB governance (as of 11-12 of April 2022) from https://apps.ecmwf.int/odbgov/

* Originally semi-colon separated columns stored into .csv-files

* Changed to TAB-separated .tsv-files

* Also each "==" followed by a number changed to "equal to" followed by (that) number
-- or Excel/LibreOffice misinterprets and issues an error

* The filtering command sequence from csv to tsv:

for f in ~/downloads/apps.ecmwf.int_odbgov_*.csv
do
ff=$(echo $f | perl -pe 's/^.*_(odbgov)/$1/; s/\.csv/.tsv/')
echo "$f to $ff"
perl -pe 's/;/\t/g; s/==(\d+)/equal to $1/g' < $f > $ff
done