[Hdf-forum] how to know number of members in a group

2013-05-15 Thread Adrien Combourieu
Hi all, i am new using hdf5 library. I use it in C++. I am opening a file with groups and would like to know the number of numbers in a given group. I thought the function h5gn_members was exactly what i am looking for but it is now deprecated. How can i do similar thing now ? Thanks a

Re: [Hdf-forum] Tools to edit hdf5 files?

2013-05-15 Thread Roel Vanhout
Hello, Thanks for the replies. In response to H. Joe Lee, my application is in earth sciences, more specifically in land use modeling, and my data is configuration data for the model. It is in that sense that I may be using hdf5 in an untypical way, it is not data that is acquired by sensors

Re: [Hdf-forum] Reading an HDF5 file in Java

2013-05-15 Thread Roger Martin
Maybe need to be in a static scope to get it to happen earlier than the H5 one example from a linux case I was debugging .. static { try { //System.loadLibrary(jqb);

Re: [Hdf-forum] Reading an HDF5 file in Java

2013-05-15 Thread Peter Cao
you need to set the HDF library path. If you are running your application from your script, add the library to the command line, e.g. java -Djava.library.path=%PATH_TO_THE_DLLS% ... If you are running with eclipse, set VM argument, -Djava.library.path=%PATH_TO_THE_DLLS% under run-Run