mirror of
https://github.com/cheminfo/netcdfjs.git
synced 2026-01-25 16:07:08 +00:00
BREAKING CHANGE: No more default export
You need to import the class using `const { NetCDFReader } = require("netcdfjs")`
1.2 KiB
Executable File
1.2 KiB
Executable File
netcdfjs
[![build status][travis-image]][travis-url]
Read and explore NetCDF v3 files.
Installation
$ npm install netcdfjs
API Documentation
For further information about the grammar you should go to this link.
Example
const { readFileSync } = require("fs");
const { NetCDFReader } = require("netcdfjs");
// http://www.unidata.ucar.edu/software/netcdf/examples/files.html
const data = readFileSync("madis-sao.nc");
var reader = new NetCDFReader(data); // read the header
reader.getDataVariable("wmoId"); // go to offset and read it