Tagged Questions

8
votes
6answers
1k views

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

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 for my kind of material ...
4
votes
4answers
2k 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; struct ...
3
votes
2answers
220 views

HDF5 C++ interface: writing dynamic 2D arrays

I am using the HDF5 C++ API to write 2D array dataset files. The HDF Group has an example to create a HDF5 file from a statically defined array size, which I've modified to suite my needs below. ...
1
vote
1answer
45 views

storing dataset (intances of a C++ class) in hdf

I have an application which needs to store data to hdf file. Is it possible to store dataset in hdf which is actually a C++ object? For example, I want to store data contained in object a below to a ...
1
vote
1answer
80 views

HDF5 built with MS VC++ 2008 and boost 1.39.0 libs in application built with MS VC++ 2010 + boost 1.45.0

I realize that, the title sounds like a recipe for disaster. But I was trying to leverage as much as I could legacy stuff.. but it might be futile. Anyways, the problem is that I upgraded to MS VC++ ...
1
vote
1answer
158 views

Linking HDF5 library into Visual C++ DLL project: unresolved external symbol __imp__*

I'm building a plug-in with MS Visual C++ 2010 Express, and I would like to include capabilities from the HDF5 library. I have tried both building HDF5 from source with CMake, and installing the ...
1
vote
1answer
92 views

Open an HDF5 file error

I created an HDF5 file open function like the following: int OpenHDF5(string sFileName) { // Check for valid HDF5 file if (!H5File::isHdf5(sFileName.c_str())) { // Invalid ...
1
vote
1answer
227 views

Setting Attributes on Datasets using HDF5 C++ api

I'm using HDF5 C++ API in HDF5 1.8.7 and would like to use an H5::Attribute instance to set a couple of scalar attributes in an H5::DataSet instance, but cannot find any examples. It's pretty cut and ...
1
vote
2answers
408 views

How to do queries on hdf5 time series

i store (non equidistant) time series as tables in hdf5 files using the H5TB API. The format is like this: time channel1 channel2 0.0 x x 1.0 x x 2.0 x x ...
1
vote
1answer
141 views

How to split HDF5 compund datatype in C++

I have an HDF5 file with a compound type (int, double, double). Currently I am reading it in a single operation by storing its result in an array of structures, following the example in the ...
1
vote
1answer
785 views

HDF5 .Net wrapper

I'm getting ( http://www.hdfgroup.org/projects/hdf.net/) The specified module could not be found. (Exception from HRESULT: 0x8007007E) from the dependency walker i'm seeing that SZLIBDLL.DLL ...
0
votes
2answers
59 views

Streaming Real and Debug Data To Disk in C++

What is a flexible way to stream data to disk in a c++ program in Windows? I am looking to create a flexible stream of data that may contain arbitrary data (say time, average, a flag if reset, etc) ...
0
votes
2answers
206 views

C++ void pointer

I am using an HDF5 library to read data from an HDF5 file in c++ and the call I am having problems with is the following: status = H5Dread( hdf5_dataset, hdf5_datatype, ...
0
votes
1answer
243 views

HDF5: inserting a set of strings in a dataset

I'm currently learning the HDF5 API and I'm trying to insert a set of C++ std::string into a HDF5 dataset (1 column). In the following snippet, how should I loop over a vector<string> and ...
0
votes
1answer
838 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 again with the modified ...