H5DOappend

fnherr_t H5DOappend(hid_t dset_id, hid_t dxpl_id, uint axis, size_t extension, hid_t memtype, const void * buf)

Appends data to a dataset along a specified dimension.

This function appends data to a chunked dataset. It is designed for use cases where data is continuously added to a dataset, such as time-series data collection.

Parameters

dset_idDataset identifier (must be chunked)
dxpl_idDataset transfer property list identifier
axisDimension along which to append (0-based)
extensionNumber of elements to extend the dataset
memtypeMemory datatype identifier
bufPointer to the data buffer to append

Returns

Non-negative on success, negative on failure.