File format#
The LUE physical data model is a file format that is implemented on top of HDF5. HDF5 is a data model itself, as well as a library of functions with an associated API. More information about HDF5 can be found on the HDF5 support portal.
The LUE data model is a convention for organizing information about large collections of objects in an HDF5 file. In HDF5 information is stored using groups, datasets, and attributes. Groups can contain groups and datasets. Datasets contain multidimensional arrays. Groups and dataset can contain attributes.
In the next figure, the layout of the LUE physical data model is shown.
The API for storing information in a LUE dataset reflects this layout. See for example the next example which
uses the LUE Python package and in which a new dataset is created. The object returned by
lue.data_model.create_dataset
supports adding a universe to the universes collection and a phenomenon to the
phenomena collection. The object returned by lue.data_model.Dataset.add_phenomenon
supports adding
collection property-sets and property-sets.
TODO