Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/annefou/odb-governance
- Owner: annefou
- Created: 2023-06-08T13:07:58.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-06-08T13:09:17.000Z (over 1 year ago)
- Last Synced: 2024-11-05T10:51:17.382Z (about 2 months ago)
- Size: 46.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
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