Questions tagged [hdf]

Hierarchical Data Format (HDF, HDF4, or HDF5) is a set of file formats and libraries designed to store and organize large amounts of numerical data.

Hierarchical Data Format (HDF, HDF4, or HDF5) is a set of file formats and libraries designed to store and organize large amounts of numerical data.

Originally developed at the National Center for Supercomputing Applications, it is supported by the non-profit HDF Group, whose mission is to ensure continued development of HDF5 technologies, and the continued accessibility of data stored in HDF.

In keeping with this goal, the HDF format, libraries and associated tools are available under a liberal, BSD-like license for general use. HDF is supported by many commercial and non-commercial software platforms, including Java, MATLAB/Scilab, Octave, IDL, Python, and R. The freely available HDF distribution consists of the library, command-line utilities, test suite source, Java interface, and the Java-based HDF Viewer (HDFView).

There are two major versions of HDF; HDF4 and HDF5, which differ significantly in design and API.

Wikipedia: http://en.wikipedia.org/wiki/Hierarchical_Data_Format

344 questions
0
votes
2 answers

/usr/lib64/libhdf5* vs. /usr/lib64/openmpi/lib/libhdf5*

On our RHEL 6.6 machines we have the following two packages installed hdf5-1.8.5.patch1-7.el6.x86_64 (provides /usr/lib64/libhdf5*) hdf5-openmpi-1.8.5.patch1-7.el6.x86_64 (provides /usr/lib64/openmpi/lib/libhdf5*) These seemingly provide what I…
CptSupermrkt
  • 6,844
  • 12
  • 56
  • 87
0
votes
1 answer

Compiling program using gfortran and the HDF-EOS2 library

I have the problem of linking the HDF-EOS library to a Fortran90 program. I have compiled the library from source to a directory specified in $prefix. My simple compile command is: gfortran -I$prefix/include -L$prefix/lib -Wl,-rpath -Wl,$prefix/lib…
Andre
  • 427
  • 4
  • 17
0
votes
2 answers

Proper way to merge DataFrame columns in Pandas?

Currently what I do is: toConcat = [] for cname in get_columns: toConcat += [df[cname]] res = pd.concat(toConcat, axis=0, ignore_index=True) res = res.dropna() While this works, I wonder if there are other, faster, built-in ways of dealing with…
Cenoc
  • 11,172
  • 21
  • 58
  • 92
0
votes
2 answers

How to store the images with colourmap in MATLAB

I am using HDF satellite data to retrieve bands from that I am concluding different vegetation indices. Every band in hdf data is in grey colour format, its a grey colour scale image. After HDF data processed I can convert into colour by using…
prabu
  • 131
  • 2
  • 5
  • 11
0
votes
0 answers

Is it possible to unzip/zip HDF.Z files in Matlab

I was wondering if it is possible to unzip and re-zip *.HDF.Z files in Matlab. If it is possible, would you please be so kind to tell me? Many thanks! Here is a snip of my code at the moment. % Reading in multiple HDF files pathName =…
jim
  • 1
  • 1
0
votes
3 answers

Issue in Connecting to HDFS Namenode

After a new hadoop single node installation , I got following error in hadoop-root-datanode-localhost.localdomain.log 2014-06-18 23:43:23,594 ERROR org.apache.hadoop.security.UserGroupInformation: PriviledgedActionException as:root…
Surya
  • 3,408
  • 5
  • 27
  • 35
0
votes
4 answers

Read the properties of HDF file in Python

I have a problem reading hdf file in pandas. As of now, I don't know the keys of the file. How do I read the file [data.hdf] in such a case? And, my file is .hdf not .h5 , Does it make a difference it terms data fetching? I see that you need a…
user2517372
-1
votes
2 answers

wanna to read hdf file in dataframe

gss = pd.read_hdf('gss.hdf5', 'gs') this the code i have used on VS code. and i got this Traceback (most recent call last): File "d:\pthon_txt\t.py", line 4, in gss = pd.read_hdf('gss.hdf5', 'gs') …
-1
votes
1 answer

Unable to open .hdf file using h5py in Python

OSError: Unable to open file (file signature not found) I feel that the problem is .hdf file as I don't have .h5 or .hdf5 file. So how to I open .hdf in python?
Aniket
  • 9
  • 1
-1
votes
1 answer

How can I get cygwin to disable fortran?

I'm trying to install the HDF4 library for GDAL using Cygwin, and the readme instructs me to configure the source code as such: ./configure <--disable-fortran> --enable-hdf4-xdr …
emil
  • 25
  • 9
-1
votes
1 answer

How can I access the library link after installing using anaconda?

I installed the hdf5 library using miniconda. Now, I have to do EXPORT LIB_HDF5=/XYZ/ But I don't get anything when I try which hdf5 However, I can see hdf5 when I do conda env list This is the first time I am using conda outside of managing Python…
maximusdooku
  • 5,242
  • 10
  • 54
  • 94
-1
votes
1 answer

HDF5 Real attribute writing in Fortran

I am trying to write an attribute in my HDF file, my code manages to write the proper value for the attribute if it is of type integer, but not for reals. This is the code ! Number of processes is assumed to be 4 ! PROGRAM DATASET_BY_CHUNK USE…
-1
votes
1 answer

Exporting HDF4 data in Matlab

I need a script to export data from Matlab to HDF4 format. The variable which I want to store in hdf4 file has dimensions 3128*242*256 (int 16 type). Thanks
shrey
  • 223
  • 3
  • 16
-2
votes
1 answer

How to extract date from the filename which is in hdf format using Python?

I have a file which is in hdf format. I want to extract date from the file name? how can I do that using Python 2.7?? i have tried using split command and also regex but not working My filename looks like…
Sreerag Ek
  • 13
  • 3
1 2 3
22
23