https://github.com/fhs/go-netcdf
Go binding for the netCDF C library.
https://github.com/fhs/go-netcdf
go netcdf
Last synced: about 1 year ago
JSON representation
Go binding for the netCDF C library.
- Host: GitHub
- URL: https://github.com/fhs/go-netcdf
- Owner: fhs
- License: mit
- Created: 2014-11-14T01:03:13.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2022-02-13T15:45:53.000Z (over 4 years ago)
- Last Synced: 2025-04-06T08:41:26.428Z (about 1 year ago)
- Topics: go, netcdf
- Language: Go
- Size: 138 KB
- Stars: 38
- Watchers: 3
- Forks: 12
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/fhs/go-netcdf)
[](https://godoc.org/github.com/fhs/go-netcdf/netcdf)
[](https://codecov.io/gh/fhs/go-netcdf)
## Overview
Package netcdf is a Go binding for the netCDF C library.
This package supports netCDF version 3, and 4 if
netCDF 4 support is enabled in the C library.
## Documentation
Documentation can be found here:
http://godoc.org/github.com/fhs/go-netcdf/netcdf
## Installation
First, make sure you have the netCDF C library is installed. Most Linux distributions have a package for it: `libnetcdf-dev` in Ubuntu/Debian, `netcdf` in ArchLinux, etc. You can also download the source from [Unidata](https://www.unidata.ucar.edu/downloads/netcdf/index.jsp), compile and install it.
Then, to install go-netcdf, run:
$ go get github.com/fhs/go-netcdf/netcdf