Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/5tefan/nc2csv
Dump a NetCDF file to CSV.
https://github.com/5tefan/nc2csv
cli csv netcdf
Last synced: 21 days ago
JSON representation
Dump a NetCDF file to CSV.
- Host: GitHub
- URL: https://github.com/5tefan/nc2csv
- Owner: 5tefan
- License: mit
- Created: 2023-09-14T04:47:53.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-14T06:01:54.000Z (over 1 year ago)
- Last Synced: 2024-12-30T08:40:16.423Z (28 days ago)
- Topics: cli, csv, netcdf
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nc2csv
#
Dump NetCDF files to CSV.Frustrated by `ncdump`? Try `nc2csv`!
- See your data in columns
- Easily inspect values across variables## Examples
Save the csv to a file.
```bash
nc2csv file.nc > file.csv
```Consider using with the excellent `xsv` utility: https://github.com/martijn/xsv
```bash
nc2csv file.nc | xsv table | less -S
```Beautiful tables in your terminal!