Tagged Questions

5
votes
2answers
410 views

Evaluating HDF5: What limitations/features does HDF5 provide for modelling data?

We are in evaluating technologies that we'll use to store data that we gather during the analysis of C/C++ code. In the case of C++, the amount of data can be relatively large, ~2 …
5
votes
6answers
488 views

Looking for something similar to offsetof() for non-POD types

Hi, I'm looking for a way to obtain offsets of data members of a C++ class which is of non-POD nature. Here's why: I'd like to store data in HDF5 format, which seems most suited …
4
votes
4answers
165 views

hierarchical .Net file format?

Our company has been for a while looking at a file format to hold a large amount of lab sensor data. Each time they run the instrumentation, it generates a file, which we consume …
4
votes
4answers
603 views

How to best write out a std::vector < std::string > container to a HDF5 dataset?

Given a vector of strings, what is the best way to write them out to a HDF5 dataset? At the moment I'm doing something like the following: const unsigned int MaxStrLength = 512 …
3
votes
1answer
94 views

Chunked HDF5 DataSet and slabsize

We are evaluating the performance of HDF5 regarding chunked datasets. Especially we try to figure out if it is possible to read across different contiguous chunks and how the perfo …
1
vote
1answer
136 views

Removing data from a HDF5 file

I'm having a HDF5 file with one-dimensional (N x 1) dataset of compound elements - actually it's a time series. The data is first collected offline into the HFD5 file, and then ana …
1
vote
3answers
227 views

netcdf vs. hdf5?

Anyone out there have enough experience w/ NetCDF and HDF5 to give some pluses / minuses about them as a way of storing scientific data? I've used HDF5 and would like to read/wri …
0
votes
1answer
76 views

R and HDF5 Troubles

I am trying to load an hdf5 into R and running into some problems. Here are the steps I took to configure my environment: R 2.10.0 (x64) on Mac OS X 10.6 hdf5 1.8.3 installed vi …
0
votes
1answer
17 views

Searching a HDF5 dataset

Hi all, I'm currently exploring HDF5. I've read the interesting comments from the thread "Evaluating HDF5" and I understand that HDF5 is a solution of choice for storing the data, …
0
votes
3answers
87 views

JNI Performance

Our main program is in java but the code that extracts our data from storage is written in C. I need to build an HDF5 file from extracted data. Would it be better to use JNI to cal …
-1
votes
1answer
267 views

Delete or update a dataset in HDF5?

I would like to programatically change the data associated with a dataset in an HDF5 file. I can't seem to find a way to either delete a dataset by name (allowing me to add it agai …