You're reading an old version of this documentation. For up-to-date information, please have a look at v0.11.
Dataset structure
The dataset is an essential concept of the ASpecD framework, as it abstracts the different vendor formats and combines both, numerical data and metadata, in an easily accessible way. Even more, the general structure of a dataset allows to compare data of entirely different origin (read: spectroscopic method), as long as their axes are compatible.
Developers of both, the ASpecD framework and even more of packages built upon the ASpecD framework, frequently need to get an overview of the structure of the dataset and its different subclasses, namely the ExperimentalDataset
and CalculatedDataset
. Whereas the API documentation of each class, aspecd.dataset.ExperimentalDataset
and aspecd.dataset.CalculatedDataset
, provides a lot of information, a simple and accessible presentation of the dataset structure is often what is needed.
Therefore, the structure of each of the dataset classes is provided below in YAML format, automatically generated from the actual source code.
Basic dataset
data:
calculated: false
data:
type: numpy.ndarray
dtype: float64
array: []
axes:
- quantity: ''
symbol: ''
unit: ''
label: ''
values:
type: numpy.ndarray
dtype: float64
array: []
- quantity: ''
symbol: ''
unit: ''
label: ''
values:
type: numpy.ndarray
dtype: float64
array: []
metadata: {}
history: []
analyses: []
annotations: []
representations: []
id: ''
label: ''
references: []
tasks: []
_origdata:
calculated: false
data:
type: numpy.ndarray
dtype: float64
array: []
axes:
- quantity: ''
symbol: ''
unit: ''
label: ''
values:
type: numpy.ndarray
dtype: float64
array: []
- quantity: ''
symbol: ''
unit: ''
label: ''
values:
type: numpy.ndarray
dtype: float64
array: []
_package_name: aspecd
_history_pointer: -1
Experimental dataset
data:
calculated: false
data:
type: numpy.ndarray
dtype: float64
array: []
axes:
- quantity: ''
symbol: ''
unit: ''
label: ''
values:
type: numpy.ndarray
dtype: float64
array: []
- quantity: ''
symbol: ''
unit: ''
label: ''
values:
type: numpy.ndarray
dtype: float64
array: []
metadata:
measurement:
start: null
end: null
purpose: ''
operator: ''
labbook_entry: ''
sample:
name: ''
id: null
loi: ''
temperature_control:
temperature:
unit: ''
dimension: ''
name: ''
value: 0.0
controller: ''
history: []
analyses: []
annotations: []
representations: []
id: ''
label: ''
references: []
tasks: []
_origdata:
calculated: false
data:
type: numpy.ndarray
dtype: float64
array: []
axes:
- quantity: ''
symbol: ''
unit: ''
label: ''
values:
type: numpy.ndarray
dtype: float64
array: []
- quantity: ''
symbol: ''
unit: ''
label: ''
values:
type: numpy.ndarray
dtype: float64
array: []
_package_name: aspecd
_history_pointer: -1
Calculated dataset
data:
calculated: true
data:
type: numpy.ndarray
dtype: float64
array: []
axes:
- quantity: ''
symbol: ''
unit: ''
label: ''
values:
type: numpy.ndarray
dtype: float64
array: []
- quantity: ''
symbol: ''
unit: ''
label: ''
values:
type: numpy.ndarray
dtype: float64
array: []
metadata:
calculation:
type: ''
parameters: {}
history: []
analyses: []
annotations: []
representations: []
id: ''
label: ''
references: []
tasks: []
_origdata:
calculated: true
data:
type: numpy.ndarray
dtype: float64
array: []
axes:
- quantity: ''
symbol: ''
unit: ''
label: ''
values:
type: numpy.ndarray
dtype: float64
array: []
- quantity: ''
symbol: ''
unit: ''
label: ''
values:
type: numpy.ndarray
dtype: float64
array: []
_package_name: aspecd
_history_pointer: -1