24 QgsDataProvider::ReadFlags flags )
43 if ( oldUnit != unit )
48 const QDateTime &referenceTime,
49 int groupIndex, quint64 time,
52 QDateTime requestDateTime = referenceTime.addMSecs( time );
56 providerTime = referenceTime.msecsTo( requestDateTime );
89 const QVector<QgsMeshDataBlock> &datasetValues,
90 const QVector<QgsMeshDataBlock> &datasetActive,
91 const QVector<double> × )
94 QString filename = path;
96 QString driverName = QStringLiteral(
"DAT" );
97 QStringList parts = path.split(
':' );
98 if ( parts.size() > 1 )
100 driverName = parts[0];
102 filename = parts.join( QString() );
109 if ( index <
vertices.size() && index >= 0 )
116 if ( index <
faces.size() && index >= 0 )
123 if ( index <
edges.size() && index >= 0 )
137 if ( face1.count() != face2.count() )
141 for (
int i = 0; i < face2.count(); ++i )
142 if ( face2.at( i ) == face1.at( 0 ) )
148 for (
int i = 0; i < face1.count(); ++i )
149 if ( face1.at( i ) != face2.at( ( i + startFace2 ) % ( face2.count() ) ) )
159 case ElementType::Vertex:
161 case ElementType::Edge:
162 return !
edges.isEmpty();
164 return !
faces.isEmpty();
188 case QgsMesh::ElementType::Vertex:
190 case QgsMesh::ElementType::Edge:
Abstract base class for spatial data provider implementations.
virtual void reloadData()
Reloads the data from the source for providers with data caches to synchronize, changes in the data s...
Class for handling properties relating to a mesh data provider's temporal capabilities.
MatchingTemporalDatasetMethod
Method for selection of temporal mesh dataset from a range time.
@ FindClosestDatasetBeforeStartRangeTime
@ FindClosestDatasetFromStartRangeTime
Finds the closest dataset which have its time before the requested start range time.
QgsMeshDataProviderTemporalCapabilities * temporalCapabilities() override
Returns the provider's temporal capabilities.
void setTemporalUnit(QgsUnitTypes::TemporalUnit unit)
Sets the temporal unit of the provider and reload data if it changes.
QgsMeshDataProvider(const QString &uri, const QgsDataProvider::ProviderOptions &providerOptions, QgsDataProvider::ReadFlags flags=QgsDataProvider::ReadFlags())
Ctor.
virtual int vertexCount() const =0
Returns number of vertices in the native mesh.
bool contains(const QgsMesh::ElementType &type) const
Returns whether the mesh contains at mesh elements of given type.
virtual int edgeCount() const =0
Returns number of edges in the native mesh.
virtual int faceCount() const =0
Returns number of faces in the native mesh.
QgsMeshDatasetIndex is index that identifies the dataset group (e.g.
int group() const
Returns a group index.
virtual QgsMeshDataBlock datasetValues(QgsMeshDatasetIndex index, int valueIndex, int count) const =0
Returns N vector/scalar values from the index from the dataset.
virtual int datasetCount(int groupIndex) const =0
Returns number of datasets loaded in the group.
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.
virtual QgsMeshDatasetGroupMetadata datasetGroupMetadata(int groupIndex) const =0
Returns dataset group metadata.
QgsMeshDatasetSourceInterface()
std::unique_ptr< QgsMeshDataProviderTemporalCapabilities > mTemporalCapabilities
QgsMeshDatasetIndex datasetIndexAtTime(const QDateTime &referenceTime, int groupIndex, quint64 time, QgsMeshDataProviderTemporalCapabilities::MatchingTemporalDatasetMethod method) const
Returns the dataset index of the dataset in a specific dataet group at time from the reference time.
Point geometry type, with support for z-dimension and m-values.
TemporalUnit
Temporal units.
QVector< int > QgsMeshFace
List of vertex indexes.
QPair< int, int > QgsMeshEdge
Edge is a straight line seqment between 2 points.
QgsPoint QgsMeshVertex
xyz coords of vertex
Setting options for creating vector data providers.
int vertexCount() const
Returns number of vertices.
QVector< QgsMeshVertex > vertices
QgsMeshFace face(int index) const
Returns a face at the index.
bool contains(const ElementType &type) const
Returns whether the mesh contains at mesh elements of given type.
QVector< QgsMeshFace > faces
static bool compareFaces(const QgsMeshFace &face1, const QgsMeshFace &face2)
Compare two faces, return true if they are equivalent : same indexes and same clock wise.
void clear()
Remove all vertices, edges and faces.
int faceCount() const
Returns number of faces.
ElementType
Defines type of mesh elements.
QgsMeshEdge edge(int index) const
Returns an edge at the index.
QgsMeshVertex vertex(int index) const
Returns a vertex at the index.
int edgeCount() const
Returns number of edge.
QVector< QgsMeshEdge > edges