netcdf-gcms
v3.0.0
Published
Parser from NetCDF files to JSON usable for GC/MS
Downloads
174
Readme
netcdf-gcms
Parser from NetCDF files to JSON usable for GCMS
Installation
$ npm install netcdf-gcms
API Documentation
Example
const netcdfGcms = require("netcdf-gcms");
const fs = require("fs");
const data = fs.readFileSync("Agilent.cdf");
// reads the data from the file
const json = netcdfGcms(data);
// or if you already know the format
const agilentJson = netcdfGcms.fromAgilent(data);
json ===
{
times: [
/* ... */
],
series: [
{
name: "tic",
dimension: 1,
data: [
/* ... */
],
},
{
name: "ms",
dimension: 2,
data: [
[
[
/* ... */
],
[
/* ... */
],
],
],
},
],
};