encore.hdf5
v0.3.52
Published
HDF5 binding with install
Downloads
12
Readme
module::encore.hdf5
HDF5 binding with install.
How to add to your project
npm add encore.hdf5@stable
Try out
var path = require( 'path' );
var hdf5 = require( '../..' ).hdf5;
var Access = require( '../..' ).globals.Access;
var file = new hdf5.File( path.join( __dirname, './File.h5' ), Access.ACC_RDONLY );
var members = file.getMemberNames();
console.log( members );
/*
log:
[ 'group1' ]
*/
file.close();