QGIS API Documentation
3.14.0-Pi (9f7028fd23)
|
#include <qgsmeshdataprovider.h>
Public Member Functions | |
virtual | ~QgsMeshDatasetSourceInterface ()=default |
Dtor. More... | |
virtual bool | addDataset (const QString &uri)=0 |
Associate dataset with the mesh. More... | |
virtual QgsMeshDataBlock | areFacesActive (QgsMeshDatasetIndex index, int faceIndex, int count) const =0 |
Returns whether the faces are active for particular dataset. More... | |
virtual QgsMesh3dDataBlock | dataset3dValues (QgsMeshDatasetIndex index, int faceIndex, int count) const =0 |
Returns N vector/scalar values from the face index from the dataset for 3d stacked meshes. More... | |
virtual int | datasetCount (int groupIndex) const =0 |
Returns number of datasets loaded in the group. More... | |
int | datasetCount (QgsMeshDatasetIndex index) const |
Returns number of datasets loaded in the group. More... | |
virtual int | datasetGroupCount () const =0 |
Returns number of datasets groups loaded. More... | |
virtual QgsMeshDatasetGroupMetadata | datasetGroupMetadata (int groupIndex) const =0 |
Returns dataset group metadata. More... | |
QgsMeshDatasetGroupMetadata | datasetGroupMetadata (QgsMeshDatasetIndex index) const |
Returns dataset group metadata. More... | |
virtual QgsMeshDatasetMetadata | datasetMetadata (QgsMeshDatasetIndex index) const =0 |
Returns dataset metadata. More... | |
virtual QgsMeshDatasetValue | datasetValue (QgsMeshDatasetIndex index, int valueIndex) const =0 |
Returns vector/scalar value associated with the index from the dataset To read multiple continuous values, use datasetValues() More... | |
virtual QgsMeshDataBlock | datasetValues (QgsMeshDatasetIndex index, int valueIndex, int count) const =0 |
Returns N vector/scalar values from the index from the dataset. More... | |
virtual QStringList | extraDatasets () const =0 |
Returns list of additional dataset file URIs added using addDataset() calls. More... | |
virtual bool | isFaceActive (QgsMeshDatasetIndex index, int faceIndex) const =0 |
Returns whether the face is active for particular dataset. More... | |
virtual bool | persistDatasetGroup (const QString &outputFilePath, const QString &outputDriver, const QgsMeshDatasetGroupMetadata &meta, const QVector< QgsMeshDataBlock > &datasetValues, const QVector< QgsMeshDataBlock > &datasetActive, const QVector< double > ×)=0 |
Creates a new dataset group from a data and persists it into a destination path. More... | |
virtual Q_DECL_DEPRECATED bool | persistDatasetGroup (const QString &path, const QgsMeshDatasetGroupMetadata &meta, const QVector< QgsMeshDataBlock > &datasetValues, const QVector< QgsMeshDataBlock > &datasetActive, const QVector< double > ×) |
Creates a new dataset group from a data and persists it into a destination path. More... | |
Interface for mesh datasets and dataset groups
Dataset is a collection of vector or scalar values on vertices or faces of the mesh. Based on the underlying data provider/format, whole dataset is either stored in memory or read on demand
Datasets are grouped in the dataset groups. A dataset group represents a measured quantity (e.g. depth or wind speed), dataset represents values of the quantity in a particular time.
Definition at line 182 of file qgsmeshdataprovider.h.
|
virtualdefault |
Dtor.
|
pure virtual |
Associate dataset with the mesh.
emits dataChanged when successful
|
pure virtual |
Returns whether the faces are active for particular dataset.
|
pure virtual |
Returns N vector/scalar values from the face index from the dataset for 3d stacked meshes.
See QgsMeshDatasetMetadata::isVector() to check if the returned value is vector or scalar
returns invalid block for DataOnFaces and DataOnVertices.
|
pure virtual |
Returns number of datasets loaded in the group.
int QgsMeshDatasetSourceInterface::datasetCount | ( | QgsMeshDatasetIndex | index | ) | const |
Returns number of datasets loaded in the group.
Definition at line 46 of file qgsmeshdataprovider.cpp.
|
pure virtual |
Returns number of datasets groups loaded.
|
pure virtual |
Returns dataset group metadata.
QgsMeshDatasetGroupMetadata QgsMeshDatasetSourceInterface::datasetGroupMetadata | ( | QgsMeshDatasetIndex | index | ) | const |
Returns dataset group metadata.
Definition at line 51 of file qgsmeshdataprovider.cpp.
|
pure virtual |
Returns dataset metadata.
|
pure virtual |
Returns vector/scalar value associated with the index from the dataset To read multiple continuous values, use datasetValues()
See QgsMeshDatasetMetadata::isVector() or QgsMeshDataBlock::type() to check if the returned value is vector or scalar
Returns invalid value for DataOnVolumes
|
pure virtual |
Returns N vector/scalar values from the index from the dataset.
See QgsMeshDatasetMetadata::isVector() or QgsMeshDataBlock::type() to check if the returned value is vector or scalar
Returns invalid block for DataOnVolumes. Use QgsMeshLayerUtils::datasetValues() if you need block for any type of data type
|
pure virtual |
Returns list of additional dataset file URIs added using addDataset() calls.
|
pure virtual |
Returns whether the face is active for particular dataset.
For example to represent the situation when F1 and F3 are flooded, but F2 is dry, some solvers store water depth on vertices V1-V8 (all non-zero values) and set active flag for F2 to false
. V1 -— V2 -— V5--—V7 | F1 | F2 | F3 | V3 -— V4 -— V6--—V8
|
pure virtual |
Creates a new dataset group from a data and persists it into a destination path.
On success, the mesh's dataset group count is changed
outputFilePath | destination path of the stored file |
outputDriver | output driver name |
meta | new group's metadata |
datasetValues | scalar/vector values for all datasets and all faces/vertices in the group |
datasetActive | active flag values for all datasets in the group. Empty array represents can be used when all faces are active |
times | times in hours for all datasets in the group |
true
on failure, false
on success
|
virtual |
Creates a new dataset group from a data and persists it into a destination path.
On success, the mesh's dataset group count is changed
path | destination path of the stored file in form DRIVER_NAME:path |
meta | new group's metadata |
datasetValues | scalar/vector values for all datasets and all faces/vertices in the group |
datasetActive | active flag values for all datasets in the group. Empty array represents can be used when all faces are active |
times | times in hours for all datasets in the group |
true
on failure, false
on successDefinition at line 56 of file qgsmeshdataprovider.cpp.