SPARQL endpoint where the DataCube lives.
Additional info about the DataCube.
Retrieve the maximal and minimal values of a Component (Dimension, Measure, Attribute). Similar to DataCube.componentsMinMax but for a single Component. See also Query.componentMinMax and the examples folder.
Promise<{min: Literal|null, max: Literal|null}>
Retrieve all the possible values a Component (Dimension, Measure, Attribute) can have. Similar to DataCube.componentsValues but for a single Component. See also Query.componentValues and the examples folder.
const values = await dataCube.componentValues(sizeClasses);
}
Retrieve the maximal and minimal values of several Component (Dimension, Measure, Attribute). Similar to DataCube.componentMinMax but for several Components. See also Query.componentMinMax and the examples folder.
Promise<WeakMap<Component, {min: Literal|null, max: Literal|null}>>
Retrieve all the possible values several Component (Dimension, Measure, Attribute) can have. Similar to DataCube.componentValues but for several components. See also Query.componentValues and the examples folder.
const values = await dataCube.componentsValues([timeDimension, sizeDimension, populationMeasure]);
}
Start a new query on the DataCube.
Generated using TypeDoc
DataCube