Help us improve by taking our short survey: https://www.hdfgroup.org/website-survey/
HDF5 Last Updated on 2025-12-16
The HDF5 Field Guide
Loading...
Searching...
No Matches
HDF5 High Level Lite

Navigate back: Main / HDF5 User Guide


HDF5 Lite APIs

Introduction

The HDF5 Lite API (H5LT) provides simplified functions for common HDF5 operations, combining multiple low-level calls into single high-level functions. This reduces code complexity and makes HDF5 more accessible for straightforward data storage tasks.

See also
HDF5 Lite APIs (H5LT,H5LD) Reference Manual

Dataset Operations

Create and access datasets with single function calls using type-specific functions like H5LTmake_dataset_int, H5LTmake_dataset_float, H5LTread_dataset_int, etc. Query dataset properties with H5LTget_dataset_ndims, H5LTget_dataset_info, and H5LTfind_dataset.

Attribute Operations

Set and read attributes using type-specific functions such as H5LTset_attribute_int, H5LTset_attribute_string, H5LTget_attribute_int, etc. Query attribute information with H5LTget_attribute_ndims and H5LTget_attribute_info.

Utility Functions

Convert between datatypes and text representations using H5LTtext_to_dtype and H5LTdtype_to_text. Validate paths with H5LTpath_valid, and work with file images using H5LTopen_file_image.

Previous Chapter HDF5 Images - Next Chapter HDF5 Table APIs


Navigate back: Main / HDF5 User Guide