Tagged Questions

The Hierarchical Data Format (HDF5) is a binary file format designed to store large amount of numerical data.

learn more… | top users | synonyms

18
votes
2answers
3k 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, ~20Mb per TU. After ...
16
votes
4answers
1k views

Python, PyTables, Java - tying all together

Question in nutshell What is the best way to get Python and Java to play nice with each other? More detailed explanation I have a somewhat complicated situation. I'll try my best to explain both ...
14
votes
1answer
220 views

Floating Point Exception with Numpy and PyTables

I have a rather large HDF5 file generated by PyTables that I am attempting to read on a cluster. I am running into a problem with NumPy as I read in an individual chunk. Let's go with the example: ...
13
votes
2answers
450 views

Sharing large datasets between Matlab and R

I need a relatively efficient way to share data between Matlab and R. I have checked SaveR and MATLAB R-link, but SaveR formats Matlab's binary data as text strings first and then prints them to an ...
12
votes
2answers
776 views

Experience with using h5py to do analytical work on big data in Python?

I do a lot of statistical work and use Python as my main language. Some of the data sets I work with though can take 20GB of memory, which makes operating on them using in-memory functions in numpy, ...
12
votes
5answers
2k views

Opinions on NetCDF vs HDF5 for storing scientific data?

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/write via Java but the ...
9
votes
2answers
993 views

MATLAB: Saving several variables to “-v7.3” (HDF5) .mat-files seems to be faster when using the “-append” flag. How come?

I am using MATLAB R2009b and I need to write a larger script that converts the contents of a larger set of .zip files to v7.3 mat files (with an underlying HDF5-datamodel). Reading is OK. The issue is ...
8
votes
4answers
293 views

What are the disadvantages of using .Rdata files compared to HDF5 or netCDF?

I have been asked to change a software that currently exports .Rdata files so that it exports in a 'platform independent binary format' such as HDF5 or netCDF. Two reasons were given: Rdata files ...
8
votes
1answer
693 views

MATLAB: Differences between .mat versions

The official documentation states the following: . But I have noticed that there are other important differences besides those stated in the table above. For example, saving a cell array with about ...
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 ...
6
votes
1answer
175 views

exporting from/importing to numpy, scipy in SQLite and HDF5 formats

There seems to be many choices for Python to interface with SQLite (sqlite3, atpy) and HDF5 (h5py, pyTables) -- I wonder if anyone has experience using these together with numpy arrays or data tables ...
5
votes
1answer
110 views

HDF5 for Python: high level vs low level interfaces. h5py

I've been working with HDF5 files with C and Matlab, both using the same way for reading from and writing to datasets: open file with h5f open dataset with h5d select space with h5s and so on... ...
5
votes
2answers
297 views

Mathematica HDF5 and compound arrays

Does anybody have a workaround in Mathematica for reading HDF5 compound arrays? I have a simple 2D compound type (int/float) in a table but it is currently ignored. An example HDF5 type might be: ...
4
votes
1answer
89 views

Difference between HDF5 file and PyTables file

Is there a difference between HDF5 files and files created by PyTables? PyTables has two functions .isHDFfile() and .isPyTablesFile() suggesting that there is a difference between the two formats. ...
4
votes
2answers
1k views

Fastest way to write hdf5 file with Python?

Given a large (10s of GB) CSV file of mixed text/numbers, what is the fastest way to create an hdf5 file with the same content, while keeping the memory usage reasonable? I'd like to use the h5py ...
4
votes
2answers
336 views

Sparse array support in HDF5

I need to store a 512^3 array on disk in some way and I'm currently using HDF5. Since the array is sparse a lot of disk space gets wasted. Does HDF5 provide any support for sparse array ?
4
votes
2answers
1k 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 via macports ...
4
votes
2answers
871 views

Searching a HDF5 dataset

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, but how do you query it ? ...
4
votes
4answers
459 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 and store in a ...
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
73 views

Simple and effective solution for combining Java, Python, PyTables and HDF5

I'm a newbie in Python, PyTables and HDF5. I'm looking for simple and best solution for my problem. Problem is next. On one side I have many XML files with data. I just wanna parse these files and ...
3
votes
3answers
93 views

Loading Matlab sparse matrix saved with -v7.3 (HDF5) into Python and operating on it

I'm new to python, coming from matlab. I have a large sparse matrix saved in matlab v7.3 (HDF5) format. I've so far found two ways of loading in the file, using h5py and tables. However operating on ...
3
votes
2answers
212 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. ...
3
votes
1answer
172 views

Installing h5py on OS X

I've spent the day trying to get the h5py module of python working, but without success. I've installed HDF5 shared libraries, followed the instructions I could find on the web to get it right. But it ...
3
votes
1answer
136 views

H5F.flush() removed from HDF5DotNet 1.8.7?

I recently upgraded my Hdf5DotNet wrapper library from 1.8.6 to 1.8.7 and noticed that the H5F.flush() method was removed. Anyone know the reasoning behind this?
3
votes
1answer
118 views

Invoke R on a server to extract data, from within R session on host?

Background I have an R script that runs on a host, and starts jobs on a server. The jobs output large hdf5 files. The rest of my work is done on the host. However, the R hdf5 libraries only work on ...
3
votes
1answer
260 views

Concatenate a large number of HDF5 files

I have about 500 HDF5 files each of about 1.5 GB. Each of the files has the same exact structure, which is 7 compound (int,double,double) datasets and variable number of samples. Now I want to ...
3
votes
1answer
132 views

OS X runtime linker finding wrong version of lib

I have a C++ shared library being called from my Python program. The C++ lib is compiled with HDF5 which I installed using homebrew on OS X, so it resides in /usr/local/lib. Now the problem is that I ...
3
votes
1answer
298 views

PyTables batch get and update

I have daily stock data as an HDF5 file created using PyTables. I would like to get a group of rows, process it as an array and then write it back to disk (update rows) using PyTables. I couldn't ...
3
votes
2answers
3k views

shared library locations for matlab mex files:

I am trying to write a matlab mex function which uses libhdf5; My Linux install provides libhdf5-1.8 shared libraries and headers. However, my version of Matlab, r2007b, provides a libhdf5.so from the ...
3
votes
1answer
338 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 performance is influenced ...
2
votes
1answer
53 views

“Put on a map” by using Approximated nearest neighbor in image processing

I used python to read a hdf file(Hierarchical Data Format) that contains image data from a satellite(the name should be MODIS). The python code is able to get the longitude, the latitude and radiance ...
2
votes
1answer
158 views

What is the most elegant way of selecting a subset of columns using pytables?

I have a dataset with 300+ columns in pytables, and I want to be able to choose different subsets easily. There doesn't seem to be a very elegant solution to this, or is there something I'm missing? ...
2
votes
1answer
205 views

Compound datatypes with h5py: datatype inside an attribute

I'm using Silo with HDF5, and I'm having trouble accessing some of the metadata with h5py. It spits out some rather unusual HDF5 structuring, where it puts a DATATYPE inside a DATATYPE. Here's an ...
2
votes
2answers
489 views

How to extend h5py so that I can access data within a hdf5 file?

I have a small python program which creates a hdf5 file using the h5py module. I want to write a python module to work on the data from the hdf5 file. How could I do that? More specifically, I can ...
2
votes
1answer
372 views

hdf5 and ndarray append / time-efficient approach for large data-sets

Background I have a k n-dimensional time-series, each represented as m x (n+1) array holding float values (n columns plus one that represents the date). Example: k (around 4 million) time-series ...
2
votes
2answers
861 views

How do I remove hex values in a python string with regular expressions?

I have a cell array in matlab columns = {'MagX', 'MagY', 'MagZ', ... 'AccelerationX', 'AccelerationX', 'AccelerationX', ... 'AngularRateX', 'AngularRateX', 'AngularRateX', ... ...
2
votes
2answers
246 views

How can I save a row vector to HDF in MATLAB?

For some reason, the hdf5write method in MATLAB is automatically converting my row vectors to column vectors when I re-read them: >> hdf5write('/tmp/data.h5','/data',rand(1,10)); >> ...
2
votes
2answers
384 views

What is the fastest way to load data in Matlab

I have a vast quantity of data (>800Mb) that takes an age to load into Matlab mainly because it's split up into tiny files each <20kB. They are all in a proprietary format which I can read and ...
2
votes
2answers
707 views

“Reading in” large text file into hdf5 via PyTables or PyHDF?

I'm attempting some statistics using SciPy, but my input dataset is quite large (~1.9GB) and in dbf format. The file is large enough that Numpy returns an error message when I try to create an array ...
2
votes
2answers
793 views

Google Protocol Buffers, HDF5, NumPy comparison (transferring data)

I need help to make decision. I have a need to transfer some data in my application and have to make a choice between these 3 technologies. I've read about all technologies a little bit (tutorials, ...
2
votes
2answers
562 views

what is a fast way to output h5py dataset to text?

I am using the h5py python package to read files in HDF5 format. (e.g. somefile.h5) I would like to write the contents of a dataset to a text file. For example, I would like to create a text file ...
1
vote
2answers
46 views

Data persistency of scientific simulation data, Mongodb + HDF5?

I'm developing a Monte Carlo simulation software package that involves multiple physics and simulators. I need to do online analysis, track of the dependency of derived data on raw data, and perform ...
1
vote
2answers
48 views

Is it possible to store multidimensional arrays of arbitrary shape in a PyTables cell?

PyTables supports the creation of tables from user-defined classes that inherit from the IsDescription class. This includes support for multidimensional cells, as in the following example from the ...
1
vote
2answers
37 views

An XML file inside HDF5, h5py

I am using h5py to save data (float numbers), in groups. In addition to the data itself, I need to include an additional file (an .xml file, containing necessary information) within the hdf5. How do i ...
1
vote
0answers
50 views

building pytables on mac os lion

I'm trying to build pytables 2.3.1 on mac lion, but I've faced with this error: tsf-wpa-3-6133:tables-2.3.1 Hesam$ python setup.py build * Found numpy 1.5.1 package installed. * Found numexpr ...
1
vote
1answer
44 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
3answers
44 views

hdf5dump of H5T_STRING

I'm trying to figure out how to dump a text block from an HDF5 file (a Bathymetric Attributed Grid / BAG). When I do h5dump -d /BAG_root/metadata H11703_Office_5m.bag, and anything else I've tried, I ...
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
83 views

Python HDF5 H5Py issues opening multiple files

I am usint the 64-bit version of Enthought Python to process data across multiple HDF5 files. I'm using h5py version 1.3.1 (HDF5 1.8.4) on 64-bit Windows. I have an object that provides a ...

1 2