Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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!