The Hierarchical Data Format (HDF5) is a binary file format designed to store large amount of numerical data.
1
vote
0answers
16 views
Large Attributes in HDF5 (C++)
I am using the HDF5 C++ API. I have a program that very occasionally has to write attributes larger than 64 kB. It throws an H5::AttributeIException when trying to write such a large attribute.
The ...
0
votes
1answer
53 views
How to read HDF format in R?
I want to work with some data that has the format of hdf. I downloaded the file from here: ftp://goldsmr2.sci.gsfc.nasa.gov/data/s4pa/MERRA/MST1NXMLD.5.2.0/2011/01/
I tried to open/read the file ...
5
votes
1answer
110 views
Is it possible to map a discontiuous data on disk to an array with python?
I want to map a big fortran record (12G) on hard disk to a numpy array. (Mapping instead of loading for saving memory.)
The data stored in fortran record is not continuous as it is divided by record ...
0
votes
0answers
24 views
Are HDF5 fixed-length strings zero-delimited?
In HDF5 you can create a "table" of data using a compound type (structure). Let's say that one variable foo in this structure is a fixed-length ASCII string of four bytes. Some of the strings in the ...
0
votes
1answer
20 views
HDF5 error from MEEP on Ubuntu
I have installed MEEP, everything is running fine however when I try to run this tutorial code for the straight waveguide I get the following message:
-----------
Initializing structure...
Working ...
0
votes
1answer
54 views
HDF vs NoSQL solutions
Hi I get a look in some scientific data stored in HDF5 format and I was wondering if there is any NoSQl solution that will reach the same performance in read/write as HDF5 .
The data of my example ...
0
votes
1answer
22 views
Retrieving 1D arrays from NetCDF char array variables in HDF5 files using Java
Using the Java API for NetCDF, I have an HDF5 file with an array of type CHAR, which according to the documentation is similar to strings containing only ASCII characters: "The char type contains ...
0
votes
1answer
38 views
(In Pandas) Why is frequency information lost when storing in HDF5 as a Table?
I am storing timeseries data in HDF5 format within pandas, Because I want to be able to access the data directly on disk I am using the PyTable format with table=True when writing.
It appears that I ...
1
vote
3answers
31 views
Determining signed state for HDF5 variables in NetCDF
My team has been given HDF5 files to read. They contain structured data with unsigned variables. I and my team were overjoyed to find the NetCDF library, which allows pure-Java reading of HDF5 files, ...
1
vote
2answers
48 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 ...
-1
votes
1answer
120 views
Is the HDF5 C++ library deprecated? [closed]
HDF5 is a great library. Unfortunately, the C++ bindings are a bit rusty (and lacking documentation) compared to the underlying C API, and a thread from 2010 suggests that the development team may ...
1
vote
1answer
40 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
2answers
95 views
How to read HDF table from pandas?
I have an my_file.h5 file that, presumably, contains data in HDF5 format (PyTables). I try to read this file using pandas:
import pandas as pd
store = pd.HDFStore('my_file.h5')
Then I try to use ...
3
votes
1answer
145 views
Working with big data in python and numpy, not enough ram, how to save partial results on disc?
I am trying to implement algorithms for 1000-dimensional data with 200k+ datapoints in python. I want to use numpy, scipy, sklearn, networkx and other usefull libraries. I want to perform operations ...
0
votes
2answers
52 views
Reading HDF5 data sets with the NetCDF Java library
We've been given some files in HDF5 that contain data sets, tabular data in which each column is named and may be of a distinct data type (e.g. "author" of type string, "count" of type unsigned ...
0
votes
1answer
59 views
How to save a Python dtype('object') in an HDF5 file?
I am trying to load data from .mat files into python, so that I can save it in an HDF5 file.
The problem is scipy.io.loadmat returns a dictionary containing arrays of dtype=[('counts', '|O4')])
...
0
votes
1answer
34 views
include libraries for hdf5 in netbeans
I'm trying to write some HDF5 files with my program. To learn how to do it I looked at the tutorial and took an example file. My problem however is that I can't make it run, because I don't know what ...
1
vote
1answer
44 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
116 views
HDFStore.append(string, DataFrame) fails when string column contents are longer than those already there
I have a Pandas DataFrame stored via an HDFStore that essentially stores summary rows about test runs I am doing.
Several of the fields in each row contain descriptive strings of variable length.
...
1
vote
1answer
84 views
How to deal with hdf5 files in R?
I have a file in hdf5 format. I know that it is supposed to be a matrix, but I want to read that matrix in R so that I can study it. I see that there is a h5r package that is supposed to help with ...
0
votes
0answers
33 views
compile Cuda including hdf5lib
At the moment i try to write a makefile for windows for my program. I want to compile it in the cmd on an arbitary system (which must have the cuda and hdf5 libraries...)
In linux I got the right ...
0
votes
0answers
45 views
Using HDF5 with different data types
What is the correct way to read data from .h5 file?
There are different types of data which are stored in the table. The data type is "Compound"
due to the structure of this file.
To open the needed ...
0
votes
0answers
53 views
Append new columns to HDFStore with pandas
I'm using Pandas, and making a HDFStore object. I calculate 500 columns of data, and write it to a table format HDFStore object. Then I close the file, delete the data from memory, do the next 500 ...
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
1answer
47 views
Get the dimensions of a HDF5 dataset
I'm using some HDF5 Files in my C++ program and I have a question regarding the H5Dopen function. Is it possible to get the dimensions of a hdf5 dataset in a given file?
hid_t file, dset;
herr_t ...
1
vote
1answer
50 views
Write data to hdf file using multiprocessing
This seems like a simple issue but I cant get my head around it.
I have a simulation which runs in a double for loop and writes the results to an HDF file. A simple version of this program is shown ...
0
votes
1answer
155 views
Pandas, large data, HDF tables and memory usage when calling a function
Short question
When Pandas work on a HDFStore (eg: .mean() or .apply() ), does it load the full data in memory as a DataFrame, or does it process record-by-record as a Serie?
Long description
I ...
1
vote
1answer
47 views
HDFStore Exception: cannot find the correct atom type : a basic case
I am facing the same problem as the one raised in How to trouble-shoot HDFStore Exception: cannot find the correct atom type.
I reduce it to an example given in the pandas' documentation Storing ...
0
votes
1answer
117 views
Pytables on Enthought Python for OS X 10.8.2
I've been struggling to get pytables and the underlying HDF5 library working on python in OS X, so thought I'd give the Enthought distribution a go (which will also greatly simplify deployment across ...
1
vote
1answer
154 views
How to trouble-shoot HDFStore Exception: cannot find the correct atom type
I am looking for some general guidance on what kinds of data scenarios can cause this exception. I have tried massaging my data in various ways to no avail.
I have googled this exception for days ...
0
votes
0answers
73 views
Strange behaviour of program
I have a MPI program which does parallel I/O using HDF5 library. I have encountered a strange problem when debugging. I have tested for memory leaks using valgrind for a simple test case and no errors ...
1
vote
1answer
146 views
Exception 'HDFStore requires PyTables ' when using HDF5 file in iPython
I am very new to Python and am trying to create a table in pandas with HDFStore as follows
store = HDFStore('store.h5')
I get the exception :
Exception Traceback ...
1
vote
1answer
76 views
HDFStore select_as_multiple generator
Question: How can I create a generator that allows for iteration over multiple columns in a pandas HDFStore object?
I am trying to create a wrapper class for a pandas HDFStore object. One of the ...
1
vote
1answer
125 views
Writing & Appending arrays of float to the only dataset in hdf5 file in C++
I am processing number of files, each processing of the file will output several thousand of arrays of float and I will store the data of all files in one huge dataset in a single hdf5 for further ...
0
votes
1answer
47 views
Storing hierarchical data into hdf5 - how to structure them
I need to store hierarchical data structure into hdf5, where majority of the leaf nodes are non-array types (strings or scalars), onyl a few of them are homogeneous arrays. Those data look similar to ...
0
votes
1answer
235 views
HDF5 for data files written with fortran
The HDF5 data storage uses the C convention, i.e. if I am storing a matrix A(N,M,K) in a binary file, the fastest changing dimension of the stored data will have size N. Apparently when I use the ...
2
votes
2answers
88 views
Appending data to the same dataset in hdf5 in matlab
I have to put all the huge data together into a single dataset in hdf5. Now, the thing is, if you try:
>> hdf5write('hd', '/dataset1', [1;2;3])
>> hdf5write('hd', '/dataset1', [4;5;6], ...
1
vote
0answers
57 views
HDF5 support on Android
How would one use the HDF5 software on Android? Can the native C++ libraries be compiled for the Android platform, and then called using the HDF5 Java bindings?
2
votes
1answer
77 views
HDF5 struct with pointer array
I am trying to write a HDF5 file with a structure which contains an int and a float*
typedef struct s1_t {
int a;
float *b;
} s1_t;
However, upon allocating the float* and putting values into ...
2
votes
1answer
58 views
HDF5 Compound type Native vs. IEEE
I am just picking up HDF5 and I am a bit confused about the difference between creating data for the memory and creating data for the file. What's the difference?
In this example, creating a compound ...
0
votes
1answer
120 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
0answers
74 views
Visual Studio 2012 can't build a 64 bit dll with HDF5 64 bit library
The managed c++ dll uses the 64 bit HDF5 libraries. It compiles fine as a 32 bit dll on a 64 bit machine. If I compile it as a 64 bit dll, I get 72 linker errors. They are all related to the hdf5 ...
1
vote
1answer
61 views
Representing variable-length 2d arrays in HDF5 format?
Looking through the HDF5 C API, I found H5Tvlen_create for creating 1d variable-length datatypes. How about multi-dimensional variable-length datatypes? Are they supported?
Clearly variable-length 1d ...
1
vote
2answers
294 views
Writing Fortran unformatted files with Python
I have some single-precision little-endian unformatted data files written by Fortran77. I am reading these files using Python using the following commands:
import numpy as np
original_data = ...
9
votes
3answers
340 views
PyTables dealing with data with size many times larger than size of memory
I'm trying to understand how PyTables manage data which size is greater than memory size.
Here is comment in code of PyTables (link to GitHub):
# Nodes referenced by a variable are kept in ...
0
votes
1answer
75 views
What is the pythonic way of downloading hdf5 files from http server?
I am trying to download a hdf5 file from http server. I can do this with python subprocess module and wget, but I feel like I am cheating
# wget solution
import subprocess
url = ...
0
votes
0answers
49 views
Reading HDF5 table in C++ - Error when compiling data struct
I am trying to read from a HDF5 file in C++. A trying to define the data struct for a table:
struct LandE{
enum {nFields = 7};
double Luminosity_nue;
double Luminosity_nuebar;
double ...
0
votes
2answers
385 views
g++ compile error: undefined reference to a shared library function which exists
I recently installed the hdf5 library on an ubuntu machine, and am now having trouble linking to the exported functions. I wrote a simple test script readHDF.cpp to explain the issue:
#include ...
0
votes
1answer
176 views
Reading and Operating on a HDF5 File
I found a similar question at C# HDF5 Example code
but I'm having trouble viewing the hdf5 dataset contents correctly.
The dataset I'm looking at contains string headers with strings in the first ...
1
vote
1answer
146 views
How to write big set of data to xls file?
I have really big database which I want write to xlsx/xls file. I already tried to use xlwt, but it allows to write only 65536 rows (some of my tables have more than 72k rows). I also found openpyxl, ...
