h5py is a NumPy-compatible Python module for handling The Hierarchical Data Format (HDF5) files.

learn more… | top users | synonyms

0
votes
2answers
10 views

Error in reading hdf file using h5py package for python

I want to extract data from hdf files that I downloaded from MODIS website. A sample file is provided in the link. I am reading the hdf file by using the following lines of code: >>> ...
0
votes
1answer
22 views

Colormap issue using animation in matplotlib

I use matplotlib.animation to animate data in a 3D array named arr. I read data from a h5 file using h5py library and everything is OK. But when using animation, the colormap got stuck in first frame ...
0
votes
0answers
5 views

Can h5py load a file from a byte array in memory?

My python code is receiving a byte array which represents the bytes of the hdf5 file. I'd like to read this byte array to an in-memory h5py file object without first writing the byte array to disk. ...
0
votes
1answer
25 views

How to store dictionary in HDF5 dataset

I have a dictionary, where key is datetime object and value is tuple of integers: >>> d.items()[0] (datetime.datetime(2012, 4, 5, 23, 30), (14, 1014, 6, 3, 0)) I want to store it in HDF5 ...
1
vote
2answers
49 views

No increase in speed when multithreading python hdf5 parsing function

I have a function that: 1) reads in a hdf5 dataset as integer ascii code 2) converts ascii integers to characters...chr() function 3) joins the characters into a single string function Upon ...
0
votes
0answers
46 views

h5py and Enthought python distribution:

I have followed the thread at h5py gives error after installation to install the h5py python module using brew, and everything seems to be working fine. -bash-3.2$ python Python 2.7.2 ...
1
vote
1answer
43 views

Updating h5py Datasets

Does any one have an idea for updating hdf5 datasets from h5py? Assuming we create a dataset like: import h5py import numpy f = h5py.File('myfile.hdf5') dset = f.create_dataset('mydataset', ...
1
vote
1answer
45 views

HDF5 file (h5py) with version control - hash changes on every save

I am using h5py to store intermediate data from numerical work in an HDF5 file. I have the project under version control, but this doesn't work well with the HDF5 files because every time a script is ...
1
vote
1answer
55 views

Compression of existing file using h5py

I'm currently working on a project regarding compression of HDF5 datasets and recently began using h5py. I followed the basic tutorials and was able to open,create and compress a file while it was ...
0
votes
0answers
31 views

Fast search in a h5py or similar hierarchical database

I need a database for an online catalog; if it's possible one dataset per product. And a simple database; that's what I love h5py. The method visititems of groups it's not fast for large files. ...
0
votes
1answer
54 views

when is h5py useful in storing data?

I am using h5py to store data using python import h5py def store(eigenvalues,eigenvectors,name='01_'): datafile = h5py.File(name+'data.h5', 'w') datafile['eigenvalues'] = ...
1
vote
1answer
77 views

I can't read data back in using h5py. “unable to create group”

I'm trying to complete the trivial example on the quickstart page http://www.h5py.org/docs/intro/quick.html import h5py f = h5py.File('myfile.hdf5','w') dset = f.create_dataset("MyDataset", (100, ...
0
votes
1answer
123 views

h5py In-Memory File and Multiprocessing Error

This one's for you HDF5 and multiprocessing gurus... First of all, I know that the python h5py and multiprocessing modules don't necessarily like eachother, but I'm getting an error that I just can't ...
0
votes
4answers
104 views

Accessing data range with h5py

I have an h5 file that contains 62 different attributes. I would like to access the data range of each one of them. to explain more here what I'm doing import h5py the_file = ...
1
vote
1answer
65 views

How to set cache settings while using h5py high level interface?

I'm trying to increase cache size for my HDF5 files, but it doesn't seem to be working. This is what I have: import h5py with h5py.File("test.h5", 'w') as fid: # cache settings of file ...
0
votes
1answer
80 views

python recursive function and returning non-mutable dictionary

I'm trying to make function VisitAllObjects accept different files and return a dictionary. But what I have currently points to the same name? So once gdata is ran, fdata changes to gdata. How can I ...
1
vote
0answers
52 views

h5py symmetric array using pointers

I've been looking for a way to create a custom h5py array that is in the end symmetric. Ideally it would be an array such that when it was created had a single value that a[i][j] and a[j][i] pointed ...
0
votes
2answers
218 views

Reading in multiple hdf5 files and appending them to a new dictionary

I have a list of hdf5 files which I would like to open and read in the appropriate values into a new dictionary and eventually write to a text file. I don't necessarily know the values, so the user ...
4
votes
1answer
135 views

Issue with Python garbage collector?

I have a simple program which reads a large file containing few million rows, parses each row (numpy array) and converts into an array of doubles (python array) and later writes into an hdf5 file. I ...
2
votes
1answer
403 views

Statistics on huge numpy (HDF5) arrays

I have fairly large 4D arrays [20x20x40x15000] that I save to disk as HDF5 files using h5py. Now the problem is that I want to calculate an average of the entire array i.e. using: ...
1
vote
1answer
70 views

Mixing high-level and low-level interfaces in h5py

I am wondering if there's a way to mix the high-level API with the low-level API using h5py. Example: I have a hdf5 file I'm accessing through the high-level interface. import h5py f = ...
0
votes
2answers
242 views

efficient way to resize numpy or dataset?

I want to understand the effect of resize() function on numpy array vs. an h5py dataset. In my application, I am reading a text file line by line and then after parsing the data, write into an hdf5 ...
0
votes
2answers
219 views

Python crashes in rare cases when running code - how to debug?

I have a problem that I seriously spent months on now! Essentially I am running code that requires to read from and save to HD5 files. I am using h5py for this. It's very hard to debug because the ...
1
vote
2answers
314 views

Check if node exists in h5py

Wondering if there's a simple way to check if a node exists within an HDF5 file using h5py. I couldn't find anything in the docs, so right now I'm using exceptions, which is ugly. # check if node ...
1
vote
1answer
98 views

how to read hdf5 boolean enum created by h5py in C

I've created an array with 3 doubles and one boolen using numpy and written them to file using h5py: import numpy as np import h5py data = np.zeros(10, ...
2
votes
1answer
105 views

Pass hdf5 file to h5py as binary blob / string?

How can I bypass disk I/O in h5py? Currently I have to do something like this: msg = socket.recv() fp = open("tmp.hdf5", 'wb') fp.write(msg) fp.close() f = h5py.File('tmp.hdf5', 'r') ... # alter the ...
2
votes
0answers
602 views

hdf5 / h5py ImportError: libhdf5.so.7

I'm working on a project involving network messaging queues (msgpack, zmq, ...) on a RHEL 6.3 (x86_64) system. I was installing the most recent packages of glib, gevent, pygobject, pygtk, and such in ...
1
vote
2answers
114 views

How do I assign scales (or physical dimensions) to HDF5 datasets in h5py?

I am trying to export scientific data via h5py into an HDF5 container format to be read by other software. I have a 7-dimensional numpy array for which I create a dataset via ...
0
votes
0answers
304 views

Trouble installing h5py on OS X

I've been trying to install the python module h5py on a Mac OS X 10.6.8 so that I can run the developer version of CellProfiler, but it gives me the error below when I try to run CellProfiler. I've ...
1
vote
2answers
791 views

how to export HDF5 file to NumPy using H5PY?

I'm a very newby so please be specific with your answers, many thanks! I have an existing hdf5 file with three arrays, i want to extract one of the arrays using h5py. I have very little programming ...
1
vote
1answer
904 views

h5py gives error after installation [duplicate]

Possible Duplicate: Installing h5py on OS X I am trying to get h5py to work on my OS X Lion 10.7.3 Macbook Pro. It has worked before but somehow it got uninstalled and I can't get it ...
3
votes
1answer
100 views

Can I create an HDF5 link to a hyperslab?

Is it possible to create a link to just a hyperslab of a dataset in HDF5? For example, I have one dataset of size 1000 x 3, representing (a,b,c) as a function of time, let's say. And now I want a ...
4
votes
2answers
469 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 ...
7
votes
1answer
334 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... ...
2
votes
1answer
371 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 ...
3
votes
2answers
190 views

Perplexing assignment behavior with h5py object as instance variable

I'm using h5py to access HDF5 files and store the h5py File objects in a class. But I'm experiencing some strange behavior in attempting to reassign a closed h5py file instance variable with a new ...
4
votes
1answer
736 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 ...
2
votes
1answer
570 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 ...
6
votes
2answers
4k 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 ...
2
votes
2answers
1k 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 ...
25
votes
2answers
2k 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, ...
3
votes
3answers
2k 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 ...