50 const QString &baseName,
51 const QString &providerKey,
61 QgsDataProvider::ReadFlags
flags = QgsDataProvider::ReadFlags();
66 QgsMeshLayer::setDataSourcePrivate( meshLayerPath, baseName, providerKey, providerOptions,
flags );
79void QgsMeshLayer::createSimplifiedMeshes()
83 if ( mSimplificationSettings.
isEnabled() && !hasSimplifiedMeshes() )
85 const double reductionFactor = mSimplificationSettings.
reductionFactor();
87 QVector<QgsTriangularMesh *> simplifyMeshes =
88 mTriangularMeshes[0]->simplifyMesh( reductionFactor );
90 for (
int i = 0; i < simplifyMeshes.count() ; ++i )
92 mTriangularMeshes.emplace_back( simplifyMeshes[i] );
97bool QgsMeshLayer::hasSimplifiedMeshes()
const
102 return ( mTriangularMeshes.size() > 1 );
107 delete mDataProvider;
114 return mDataProvider;
121 return mDataProvider;
136 layer->mElevationProperties = mElevationProperties->
clone();
137 layer->mElevationProperties->setParent( layer );
147 return mMeshEditor->
extent();
150 return mDataProvider->
extent();
170 if ( !mDataProvider )
187 for (
const int index : groupsList )
188 assignDefaultStyleToDatasetGroup( index );
192 if ( !groupsList.isEmpty() )
198 if ( meta.
maximum() == std::numeric_limits<double>::quiet_NaN() &&
199 meta.
minimum() == std::numeric_limits<double>::quiet_NaN() )
210 for (
const int i : groupsList )
212 assignDefaultStyleToDatasetGroup( i );
231 applyClassificationOnScalarSettings( meta, scalarSettings );
236 if ( !groupsList.isEmpty() )
250 if ( mDatasetGroupStore->addPersistentDatasets( path ) )
252 mExtraDatasetUri.append( path );
254 if ( !isTemporalBefore &&
dataProvider()->temporalCapabilities()->hasTemporalCapabilities() )
261 QDateTime referenceTime = defaultReferenceTime;
262 if ( !defaultReferenceTime.isValid() )
263 referenceTime = QDateTime( QDate::currentDate(), QTime( 0, 0, 0 ), Qt::UTC );
280 if ( mDatasetGroupStore->addDatasetGroup( datasetGroup ) )
292 return mDatasetGroupStore->saveDatasetGroup( path, datasetGroupIndex, driver );
299 return mNativeMesh.get();
306 return mNativeMesh.get();
313 for (
const std::unique_ptr<QgsTriangularMesh> &lod : mTriangularMeshes )
315 if ( lod && lod->averageTriangleSize() > minimumTriangleSize )
319 if ( !mTriangularMeshes.empty() )
320 return mTriangularMeshes.back().get();
329 return mTriangularMeshes.size();
336 if ( mTriangularMeshes.empty() )
339 return mTriangularMeshes.front().get();
341 if ( lodIndex >=
int( mTriangularMeshes.size() ) )
342 return mTriangularMeshes.back().get();
344 return mTriangularMeshes.at( lodIndex ).get();
359 if ( mTriangularMeshes.empty() )
362 mTriangularMeshes.emplace_back( baseMesh );
365 if ( mTriangularMeshes[0].get()->update( mNativeMesh.get(), transform ) )
366 mTriangularMeshes.resize( 1 );
368 createSimplifiedMeshes();
375 return mRendererCache.get();
382 return mRendererSettings;
391 mRendererSettings = settings;
407 return mTimeSettings;
414 mTimeSettings = settings;
423 return QgsMeshLayerUtils::formatTime( hours, mTemporalProperties->
referenceTime(), mTimeSettings );
425 return QgsMeshLayerUtils::formatTime( hours, QDateTime(), mTimeSettings );
432 return mDatasetGroupStore->datasetGroupCount();
439 return mDatasetGroupStore->extraDatasetGroupCount();
446 return mDatasetGroupStore->datasetGroupIndexes();
453 return mDatasetGroupStore->enabledDatasetGroupIndexes();
460 return mDatasetGroupStore->datasetGroupMetadata( index );
467 return mDatasetGroupStore->datasetCount( index.
group() );
474 return mDatasetGroupStore->datasetMetadata( index );
481 return mDatasetGroupStore->datasetValue( index, valueIndex );
488 return mDatasetGroupStore->datasetValues( index, valueIndex, count );
495 return mDatasetGroupStore->dataset3dValues( index, faceIndex, count );
502 return mDatasetGroupStore->areFacesActive( index, faceIndex, count );
509 return mDatasetGroupStore->isFaceActive( index, faceIndex );
521 if (
contains( QgsMesh::ElementType::Edge ) )
523 const QgsRectangle searchRectangle( point.
x() - searchRadius, point.
y() - searchRadius, point.
x() + searchRadius, point.
y() + searchRadius );
527 if ( faceIndex >= 0 )
544 const int v1 = face[0], v2 = face[1], v3 = face[2];
549 const double x = QgsMeshLayerUtils::interpolateFromVerticesData( p1, p2, p3, val1.
x(), val2.
x(), val3.
x(), point );
550 double y = std::numeric_limits<double>::quiet_NaN();
553 y = QgsMeshLayerUtils::interpolateFromVerticesData( p1, p2, p3, val1.
y(), val2.
y(), val3.
y(), point );
568 value = block2d.
value( 0 );
598 if ( faceIndex >= 0 )
614 const int selectedIndex = closestEdge( point, searchRadius, projectedPoint );
616 if ( selectedIndex >= 0 )
630 const int v1 = edge.first, v2 = edge.second;
634 const double edgeLength = p1.
distance( p2 );
635 const double dist1 = p1.
distance( projectedPoint.
x(), projectedPoint.
y() );
636 value = QgsMeshLayerUtils::interpolateFromVerticesData( dist1 / edgeLength, val1, val2 );
660 if ( ! mTemporalProperties->
isActive() )
663 const QDateTime layerReferenceTime = mTemporalProperties->
referenceTime();
664 QDateTime utcTime = timeRange.begin();
665 if ( utcTime.timeSpec() != Qt::UTC )
666 utcTime.setTimeSpec( Qt::UTC );
667 const qint64 startTime = layerReferenceTime.msecsTo( utcTime );
669 return mDatasetGroupStore->datasetIndexAtTime( startTime, datasetGroupIndex, mTemporalProperties->
matchingMethod() );
676 return mDatasetGroupStore->datasetIndexAtTime( relativeTime.
seconds() * 1000, datasetGroupIndex, mTemporalProperties->
matchingMethod() );
683 qint64 usedRelativeTime1 = startRelativeTime.
seconds() * 1000;
684 qint64 usedRelativeTime2 = endRelativeTime.
seconds() * 1000;
696 return mDatasetGroupStore->datasetIndexInTimeInterval( usedRelativeTime1, usedRelativeTime2, datasetGroupIndex );
703 if ( meta.
extraOptions().contains( QStringLiteral(
"classification" ) ) )
707 const QStringList classes = meta.
extraOptions()[QStringLiteral(
"classification" )].split( QStringLiteral(
";;" ) );
710 if ( meta.
extraOptions().contains( QStringLiteral(
"units" ) ) )
711 units = meta.
extraOptions()[ QStringLiteral(
"units" )];
713 QVector<QVector<double>> bounds;
714 for (
const QString &classe : classes )
716 const QStringList boundsStr = classe.split(
',' );
717 QVector<double> bound;
718 for (
const QString &boundStr : boundsStr )
719 bound.append( boundStr.toDouble() );
720 bounds.append( bound );
723 if ( ( bounds.count() == 1 && bounds.first().count() > 2 ) ||
724 ( bounds.count() > 1 ) )
726 const QVector<double> firstClass = bounds.first();
727 const QVector<double> lastClass = bounds.last();
728 const double minValue = firstClass.count() > 1 ? ( firstClass.first() + firstClass.last() ) / 2 : firstClass.first();
729 const double maxValue = lastClass.count() > 1 ? ( lastClass.first() + lastClass.last() ) / 2 : lastClass.first();
730 const double diff = maxValue - minValue;
731 QList<QgsColorRampShader::ColorRampItem> colorRampItemlist;
732 for (
int i = 0; i < bounds.count(); ++i )
734 const QVector<double> &boundClass = bounds.at( i );
737 if ( !boundClass.isEmpty() )
739 const double scalarValue = ( boundClass.first() + boundClass.last() ) / 2;
740 item.
color = colorRamp->
color( ( scalarValue - minValue ) / diff );
741 if ( i != 0 && i < bounds.count() - 1 )
743 item.
label = QString( (
"%1 - %2 %3" ) ).
744 arg( QString::number( boundClass.first() ) ).
745 arg( QString::number( boundClass.last() ) ).
749 colorRampItemlist.append( item );
752 if ( firstClass.count() == 1 )
753 colorRampItemlist.first().label = QObject::tr(
"below %1 %2" ).
754 arg( QString::number( firstClass.first() ) ).
758 colorRampItemlist.first().label = QString( (
"%1 - %2 %3" ) ).
759 arg( QString::number( firstClass.first() ) ).
760 arg( QString::number( firstClass.last() ) ).
764 if ( lastClass.count() == 1 )
765 colorRampItemlist.last().label = QObject::tr(
"above %1 %2" ).
766 arg( QString::number( lastClass.first() ) ).
770 colorRampItemlist.last().label = QString( (
"%1 - %2 %3" ) ).
771 arg( QString::number( lastClass.first() ) ).
772 arg( QString::number( lastClass.last() ) ).
793 if ( mTemporalProperties->
isActive() )
803 if ( mTemporalProperties->
isActive() )
809void QgsMeshLayer::fillNativeMesh()
813 Q_ASSERT( !mNativeMesh );
815 mNativeMesh.reset(
new QgsMesh() );
823void QgsMeshLayer::onDatasetGroupsAdded(
const QList<int> &datasetGroupIndexes )
828 for (
int datasetGroupIndex : datasetGroupIndexes )
830 if ( !mRendererSettings.
hasSettings( datasetGroupIndex ) )
831 assignDefaultStyleToDatasetGroup( datasetGroupIndex );
838void QgsMeshLayer::onMeshEdited()
842 mRendererCache.reset(
new QgsMeshLayerRendererCache() );
852 return mDatasetGroupStore->datasetGroupTreeItem();
859 mDatasetGroupStore->setDatasetGroupTreeItem( rootItem );
860 updateActiveDatasetGroups();
863int QgsMeshLayer::closestEdge(
const QgsPointXY &point,
double searchRadius,
QgsPointXY &projectedPoint )
const
867 const QgsRectangle searchRectangle( point.
x() - searchRadius, point.
y() - searchRadius, point.
x() + searchRadius, point.
y() + searchRadius );
871 int selectedIndex = -1;
875 double sqrMaxDistFromPoint = pow( searchRadius, 2 );
876 for (
const int edgeIndex : edgeIndexes )
882 const double sqrDist = point.
sqrDistToSegment( vertex1.
x(), vertex1.
y(), vertex2.
x(), vertex2.
y(), projPoint, 0 );
883 if ( sqrDist < sqrMaxDistFromPoint )
885 selectedIndex = edgeIndex;
886 projectedPoint = projPoint;
887 sqrMaxDistFromPoint = sqrDist;
892 return selectedIndex;
907 mTemporalProperties->
setReferenceTime( referenceTime, lDataProvider->temporalCapabilities() );
926 return exactPosition;
927 const QgsRectangle rectangle( point.
x() - searchRadius, point.
y() - searchRadius, point.
x() + searchRadius, point.
y() + searchRadius );
928 double maxDistance = searchRadius;
930 const QList<int> edgeIndexes = mesh->edgeIndexesForRectangle( rectangle );
931 for (
const int edgeIndex : edgeIndexes )
933 const QgsMeshEdge &edge = mesh->edges().at( edgeIndex );
936 const double dist1 = point.
distance( vertex1 );
937 const double dist2 = point.
distance( vertex2 );
938 if ( dist1 < maxDistance )
941 exactPosition = vertex1;
943 if ( dist2 < maxDistance )
946 exactPosition = vertex2;
951 const QList<int> faceIndexes = mesh->faceIndexesForRectangle( rectangle );
952 for (
const int faceIndex : faceIndexes )
954 const QgsMeshFace &face = mesh->triangles().at( faceIndex );
955 for (
int i = 0; i < 3; ++i )
958 const double dist = point.
distance( vertex );
959 if ( dist < maxDistance )
962 exactPosition = vertex;
967 return exactPosition;
975 closestEdge( point, searchRadius, projectedPoint );
977 return projectedPoint;
987 return centroidPosition;
988 const QgsRectangle rectangle( point.
x() - searchRadius, point.
y() - searchRadius, point.
x() + searchRadius, point.
y() + searchRadius );
989 double maxDistance = std::numeric_limits<double>::max();
991 const QList<int> faceIndexes = mesh->faceIndexesForRectangle( rectangle );
992 for (
const int faceIndex : faceIndexes )
994 const int nativefaceIndex = mesh->trianglesToNativeFaces().at( faceIndex );
995 if ( nativefaceIndex < 0 && nativefaceIndex >= mesh->faceCentroids().count() )
999 if ( dist < maxDistance )
1006 return centroidPosition;
1013 mDatasetGroupStore->resetDatasetGroupTreeItem();
1014 updateActiveDatasetGroups();
1021 if ( !mDataProvider )
1024 for (
int i = 0; i < groupCount; ++i )
1028 return QgsInterval( timeStep, Qgis::TemporalUnit::Milliseconds );
1038 const qint64 time = mDatasetGroupStore->datasetRelativeTime( index );
1043 return QgsInterval( time, Qgis::TemporalUnit::Milliseconds );
1050 return mDatasetGroupStore->datasetRelativeTime( index );
1062 message = QObject::tr(
"Face %1 invalid" ).arg( error.
elementIndex );
1065 message = QObject::tr(
"Too many vertices for face %1" ).arg( error.
elementIndex );
1068 message = QObject::tr(
"Face %1 is flat" ).arg( error.
elementIndex );
1071 message = QObject::tr(
"Vertex %1 is a unique shared vertex" ).arg( error.
elementIndex );
1074 message = QObject::tr(
"Vertex %1 is invalid" ).arg( error.
elementIndex );
1077 message = QObject::tr(
"Face %1 is manifold" ).arg( error.
elementIndex );
1116 mRendererCache.reset();
1124 mMeshEditor->deleteLater();
1125 mMeshEditor =
nullptr;
1128 arg(
name(), detailsErrorMessage(
error ) ), QString(), Qgis::MessageLevel::Critical );
1133 mDataProvider->
close();
1136 mExtraDatasetUri.clear();
1140 if ( mDatasetGroupStore->addDatasetGroup( zValueDatasetGroup.get() ) )
1141 zValueDatasetGroup.release();
1158 QString detailsError;
1162 detailsError = tr(
"Unknown inconsistent mesh error" );
1167 detailsError = detailsErrorMessage(
error );
1170 if ( !detailsError.isEmpty() )
1173 arg(
name(), detailsError ), QString(), Qgis::MessageLevel::Critical );
1179 if ( !mDataProvider )
1182 const bool res = mDataProvider->
saveMeshFrame( *mNativeMesh.get() );
1184 if ( continueEditing )
1191 mMeshEditor->deleteLater();
1192 mMeshEditor =
nullptr;
1198 mDatasetGroupStore->setPersistentProvider( mDataProvider, QStringList() );
1209 if ( !mDataProvider )
1212 mTriangularMeshes.clear();
1216 mRendererCache.reset(
new QgsMeshLayerRendererCache() );
1219 if ( continueEditing )
1226 mMeshEditor->deleteLater();
1227 mMeshEditor =
nullptr;
1231 mDatasetGroupStore->setPersistentProvider( mDataProvider, QStringList() );
1246 mTriangularMeshes.at( 0 )->update( mNativeMesh.get(), transform );
1247 mRendererCache.reset(
new QgsMeshLayerRendererCache() );
1257 if ( !mMeshEditor->
reindex( renumber ) )
1260 mTriangularMeshes.clear();
1262 mTriangularMeshes.at( 0 )->update( mNativeMesh.get(), transform );
1263 mRendererCache.reset(
new QgsMeshLayerRendererCache() );
1292 case QgsMesh::ElementType::Vertex:
1294 case QgsMesh::ElementType::Edge:
1296 case QgsMesh::ElementType::Face:
1308 else if ( mDataProvider )
1319 else if ( mDataProvider )
1329 return mNativeMesh->edgeCount();
1330 else if ( mDataProvider )
1335void QgsMeshLayer::updateActiveDatasetGroups()
1341 if ( !mDatasetGroupStore->datasetGroupTreeItem() )
1351 if ( !activeScalarItem && treeItem->childCount() > 0 && oldActiveScalar != -1 )
1352 activeScalarItem = treeItem->
child( 0 );
1354 if ( activeScalarItem && !activeScalarItem->
isEnabled() )
1356 for (
int i = 0; i < treeItem->childCount(); ++i )
1358 activeScalarItem = treeItem->
child( i );
1362 activeScalarItem =
nullptr;
1366 if ( activeScalarItem )
1374 if ( !( activeVectorItem && activeVectorItem->
isEnabled() ) )
1385void QgsMeshLayer::setDataSourcePrivate(
const QString &dataSource,
const QString &baseName,
const QString &provider,
const QgsDataProvider::ProviderOptions &options, QgsDataProvider::ReadFlags flags )
1393 if ( !
mDataSource.isEmpty() && !provider.isEmpty() )
1394 setDataProvider( provider, options,
flags );
1401 switch ( elementType )
1404 return snapOnVertex( point, searchRadius );
1406 return snapOnEdge( point, searchRadius );
1408 return snapOnFace( point, searchRadius );
1431 context.
lastScope()->
setVariable( QStringLiteral(
"_mesh_layer" ), QVariant::fromValue(
this ) );
1433 expression.
prepare( &context );
1435 for (
int i = 0; i < mNativeMesh->vertexCount(); ++i )
1439 if ( expression.
evaluate( &context ).toBool() )
1464 context.
lastScope()->
setVariable( QStringLiteral(
"_mesh_layer" ), QVariant::fromValue(
this ) );
1466 expression.
prepare( &context );
1468 for (
int i = 0; i < mNativeMesh->faceCount(); ++i )
1472 if ( expression.
evaluate( &context ).toBool() )
1516 return mSimplificationSettings;
1523 mSimplificationSettings = simplifySettings;
1534 props[
"color1"] =
"13,8,135,255";
1535 props[
"color2"] =
"240,249,33,255";
1537 "0.0196078;27,6,141,255:0.0392157;38,5,145,255:0.0588235;47,5,150,255:0.0784314;56,4,154,255:0.0980392;65,4,157,255:"
1538 "0.117647;73,3,160,255:0.137255;81,2,163,255:0.156863;89,1,165,255:0.176471;97,0,167,255:0.196078;105,0,168,255:"
1539 "0.215686;113,0,168,255:0.235294;120,1,168,255:0.254902;128,4,168,255:0.27451;135,7,166,255:0.294118;142,12,164,255:"
1540 "0.313725;149,17,161,255:0.333333;156,23,158,255:0.352941;162,29,154,255:0.372549;168,34,150,255:0.392157;174,40,146,255:"
1541 "0.411765;180,46,141,255:0.431373;186,51,136,255:0.45098;191,57,132,255:0.470588;196,62,127,255:0.490196;201,68,122,255:"
1542 "0.509804;205,74,118,255:0.529412;210,79,113,255:0.54902;214,85,109,255:0.568627;218,91,105,255:0.588235;222,97,100,255:"
1543 "0.607843;226,102,96,255:0.627451;230,108,92,255:0.647059;233,114,87,255:0.666667;237,121,83,255:0.686275;240,127,79,255:"
1544 "0.705882;243,133,75,255:0.72549;245,140,70,255:0.745098;247,147,66,255:0.764706;249,154,62,255:0.784314;251,161,57,255:"
1545 "0.803922;252,168,53,255:0.823529;253,175,49,255:0.843137;254,183,45,255:0.862745;254,190,42,255:0.882353;253,198,39,255:"
1546 "0.901961;252,206,37,255:0.921569;251,215,36,255:0.941176;248,223,37,255:0.960784;246,232,38,255:0.980392;243,240,39,255";
1550void QgsMeshLayer::assignDefaultStyleToDatasetGroup(
int groupIndex )
1555 const double groupMin =
metadata.minimum();
1556 const double groupMax =
metadata.maximum();
1559 fcn.classifyColorRamp( 5, -1,
QgsRectangle(),
nullptr );
1588 createSimplifiedMeshes();
1591 if ( !mRendererCache )
1592 mRendererCache.reset(
new QgsMeshLayerRendererCache() );
1604void QgsMeshLayer::checkSymbologyConsistency()
1608 const QList<int> groupIndexes = mDatasetGroupStore->datasetGroupIndexes();
1611 if ( !groupIndexes.empty() )
1628 Q_UNUSED( errorMessage )
1631 const QDomElement elem = node.toElement();
1635 const QDomElement elemRendererSettings = elem.firstChildElement(
"mesh-renderer-settings" );
1636 if ( !elemRendererSettings.isNull() )
1637 mRendererSettings.
readXml( elemRendererSettings, context );
1639 checkSymbologyConsistency();
1641 const QDomElement elemSimplifySettings = elem.firstChildElement(
"mesh-simplify-settings" );
1642 if ( !elemSimplifySettings.isNull() )
1643 mSimplificationSettings.
readXml( elemSimplifySettings, context );
1646 const QDomNode blendModeNode = node.namedItem( QStringLiteral(
"blendMode" ) );
1647 if ( !blendModeNode.isNull() )
1649 const QDomElement e = blendModeNode.toElement();
1656 const QDomNode layerOpacityNode = node.namedItem( QStringLiteral(
"layerOpacity" ) );
1657 if ( !layerOpacityNode.isNull() )
1659 const QDomElement e = layerOpacityNode.toElement();
1672 Q_UNUSED( errorMessage )
1675 QDomElement elem = node.toElement();
1679 const QDomElement elemRendererSettings = mRendererSettings.
writeXml( doc, context );
1680 elem.appendChild( elemRendererSettings );
1682 const QDomElement elemSimplifySettings = mSimplificationSettings.
writeXml( doc, context );
1683 elem.appendChild( elemSimplifySettings );
1686 QDomElement blendModeElement = doc.createElement( QStringLiteral(
"blendMode" ) );
1688 blendModeElement.appendChild( blendModeText );
1689 node.appendChild( blendModeElement );
1694 QDomElement layerOpacityElem = doc.createElement( QStringLiteral(
"layerOpacity" ) );
1695 const QDomText layerOpacityText = doc.createTextNode( QString::number(
opacity() ) );
1696 layerOpacityElem.appendChild( layerOpacityText );
1697 node.appendChild( layerOpacityElem );
1707 return writeSymbology( node, doc, errorMessage, context, categories );
1714 return readSymbology( node, errorMessage, context, categories );
1738 const QDomNode pkeyNode = layer_node.namedItem( QStringLiteral(
"provider" ) );
1740 if ( pkeyNode.isNull() )
1746 const QDomElement pkeyElt = pkeyNode.toElement();
1756 QgsDataProvider::ReadFlags
flags = QgsDataProvider::ReadFlags();
1766 const QDomElement elemExtraDatasets = layer_node.firstChildElement( QStringLiteral(
"extra-datasets" ) );
1767 if ( !elemExtraDatasets.isNull() )
1769 QDomElement elemUri = elemExtraDatasets.firstChildElement( QStringLiteral(
"uri" ) );
1770 while ( !elemUri.isNull() )
1773 mExtraDatasetUri.append( uri );
1774 elemUri = elemUri.nextSiblingElement( QStringLiteral(
"uri" ) );
1778 if ( pkeyNode.toElement().hasAttribute( QStringLiteral(
"time-unit" ) ) )
1779 mTemporalUnit =
static_cast<Qgis::TemporalUnit>( pkeyNode.toElement().attribute( QStringLiteral(
"time-unit" ) ).toInt() );
1782 const QDomElement elemDatasetGroupsStore = layer_node.firstChildElement( QStringLiteral(
"mesh-dataset-groups-store" ) );
1783 if ( elemDatasetGroupsStore.isNull() )
1786 mDatasetGroupStore->readXml( elemDatasetGroupsStore, context );
1797 const QDomElement elemStaticDataset = layer_node.firstChildElement( QStringLiteral(
"static-active-dataset" ) );
1798 if ( elemStaticDataset.hasAttribute( QStringLiteral(
"scalar" ) ) )
1800 mStaticScalarDatasetIndex = elemStaticDataset.attribute( QStringLiteral(
"scalar" ) ).toInt();
1802 if ( elemStaticDataset.hasAttribute( QStringLiteral(
"vector" ) ) )
1804 mStaticVectorDatasetIndex = elemStaticDataset.attribute( QStringLiteral(
"vector" ) ).toInt();
1815 QDomElement mapLayerNode = layer_node.toElement();
1817 if ( mapLayerNode.isNull() || ( QLatin1String(
"maplayer" ) != mapLayerNode.nodeName() ) )
1826 if ( mDataProvider )
1828 QDomElement provider = document.createElement( QStringLiteral(
"provider" ) );
1829 const QDomText providerText = document.createTextNode(
providerType() );
1830 provider.appendChild( providerText );
1831 layer_node.appendChild( provider );
1834 const QStringList extraDatasetUris = mDataProvider->
extraDatasets();
1835 QDomElement elemExtraDatasets = document.createElement( QStringLiteral(
"extra-datasets" ) );
1836 for (
const QString &uri : extraDatasetUris )
1839 QDomElement elemUri = document.createElement( QStringLiteral(
"uri" ) );
1840 elemUri.appendChild( document.createTextNode( path ) );
1841 elemExtraDatasets.appendChild( elemUri );
1843 layer_node.appendChild( elemExtraDatasets );
1846 QDomElement elemStaticDataset = document.createElement( QStringLiteral(
"static-active-dataset" ) );
1847 elemStaticDataset.setAttribute( QStringLiteral(
"scalar" ), mStaticScalarDatasetIndex );
1848 elemStaticDataset.setAttribute( QStringLiteral(
"vector" ), mStaticVectorDatasetIndex );
1849 layer_node.appendChild( elemStaticDataset );
1853 layer_node.appendChild( mDatasetGroupStore->writeXml( document, context ) );
1857 return writeSymbology( layer_node, document, errorMsg, context );
1864 if ( !mMeshEditor && mDataProvider && mDataProvider->
isValid() )
1867 mDatasetGroupStore->setPersistentProvider( mDataProvider, QStringList() );
1871 mNativeMesh.reset(
new QgsMesh );
1879 mTriangularMeshes.clear();
1882 mRendererCache.reset(
new QgsMeshLayerRendererCache() );
1884 checkSymbologyConsistency();
1894 if ( mDataProvider )
1897 return QStringList();
1905 QString myMetadata = QStringLiteral(
"<html>\n<body>\n" );
1910 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Information from provider" ) + QStringLiteral(
"</h1>\n<hr>\n" );
1911 myMetadata += QLatin1String(
"<table class=\"list-view\">\n" );
1914 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Extent" ) + QStringLiteral(
"</td><td>" ) +
extent().
toString() + QStringLiteral(
"</td></tr>\n" );
1917 QLocale locale = QLocale();
1918 locale.setNumberOptions( locale.numberOptions() &= ~QLocale::NumberOption::OmitGroupSeparator );
1922 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" )
1923 + tr(
"Vertex count" ) + QStringLiteral(
"</td><td>" )
1925 + QStringLiteral(
"</td></tr>\n" );
1926 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" )
1927 + tr(
"Face count" ) + QStringLiteral(
"</td><td>" )
1928 + ( locale.toString(
static_cast<qlonglong
>(
meshFaceCount() ) ) )
1929 + QStringLiteral(
"</td></tr>\n" );
1930 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" )
1931 + tr(
"Edge count" ) + QStringLiteral(
"</td><td>" )
1932 + ( locale.toString(
static_cast<qlonglong
>(
meshEdgeCount() ) ) )
1933 + QStringLiteral(
"</td></tr>\n" );
1934 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" )
1935 + tr(
"Dataset groups count" ) + QStringLiteral(
"</td><td>" )
1937 + QStringLiteral(
"</td></tr>\n" );
1941 myMetadata += QLatin1String(
"</table>\n<br><br>" );
1947 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Identification" ) + QStringLiteral(
"</h1>\n<hr>\n" );
1948 myMetadata += htmlFormatter.identificationSectionHtml( );
1949 myMetadata += QLatin1String(
"<br><br>\n" );
1952 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Extent" ) + QStringLiteral(
"</h1>\n<hr>\n" );
1953 myMetadata += htmlFormatter.extentSectionHtml(
isSpatial() );
1954 myMetadata += QLatin1String(
"<br><br>\n" );
1957 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Access" ) + QStringLiteral(
"</h1>\n<hr>\n" );
1958 myMetadata += htmlFormatter.accessSectionHtml( );
1959 myMetadata += QLatin1String(
"<br><br>\n" );
1962 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Contacts" ) + QStringLiteral(
"</h1>\n<hr>\n" );
1963 myMetadata += htmlFormatter.contactsSectionHtml( );
1964 myMetadata += QLatin1String(
"<br><br>\n" );
1967 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Links" ) + QStringLiteral(
"</h1>\n<hr>\n" );
1968 myMetadata += htmlFormatter.linksSectionHtml( );
1969 myMetadata += QLatin1String(
"<br><br>\n" );
1972 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"History" ) + QStringLiteral(
"</h1>\n<hr>\n" );
1973 myMetadata += htmlFormatter.historySectionHtml( );
1974 myMetadata += QLatin1String(
"<br><br>\n" );
1976 myMetadata += QLatin1String(
"\n</body>\n</html>\n" );
1984 return mMeshEditor !=
nullptr;
1991 mDatasetGroupStore->setPersistentProvider(
nullptr, QStringList() );
1993 delete mDataProvider;
1999 if ( !mDataProvider )
2001 QgsDebugMsgLevel( QStringLiteral(
"Unable to get mesh data provider" ), 2 );
2005 mDataProvider->setParent(
this );
2006 QgsDebugMsgLevel( QStringLiteral(
"Instantiated the mesh data provider plugin" ), 2 );
2015 if ( !mTemporalProperties->
isValid() )
2022 mDatasetGroupStore->setPersistentProvider( mDataProvider, mExtraDatasetUri );
2026 if ( provider == QLatin1String(
"mesh_memory" ) )
2035 int globalIndex = mDatasetGroupStore->globalDatasetGroupIndexInSource( mDataProvider, i );
2036 if ( globalIndex != -1 &&
2038 assignDefaultStyleToDatasetGroup( globalIndex );
2053 return mTemporalProperties;
2060 return mElevationProperties;
The Qgis class provides global constants for use throughout the application.
@ TooManyVerticesInFace
A face has more vertices than the maximum number supported per face.
@ InvalidFace
An error occurs due to an invalid face (for example, vertex indexes are unordered)
@ UniqueSharedVertex
A least two faces share only one vertices.
@ ManifoldFace
ManifoldFace.
@ InvalidVertex
An error occurs due to an invalid vertex (for example, vertex index is out of range the available ver...
@ FlatFace
A flat face is present.
BlendMode
Blending modes defining the available composition modes that can be used when painting.
TemporalUnit
Temporal units.
QgsVertexIterator vertices() const
Returns a read-only, Java-style iterator for traversal of vertices of all the geometry,...
Abstract base class for objects which generate elevation profiles.
A ramp shader will color a raster pixel based on a list of values ranges in a ramp.
@ EqualInterval
Uses equal interval.
QgsColorRamp * sourceColorRamp() const
Returns the source color ramp.
@ Exact
Assigns the color of the exact matching value in the color ramp item list.
void setClassificationMode(ClassificationMode classificationMode)
Sets classification mode.
void setColorRampItemList(const QList< QgsColorRampShader::ColorRampItem > &list)
Sets a custom colormap.
void setColorRampType(QgsColorRampShader::Type colorRampType)
Sets the color ramp type.
Abstract base class for color ramps.
virtual QColor color(double value) const =0
Returns the color corresponding to a specified value.
Contains information about the context in which a coordinate transform is executed.
bool hasTemporalCapabilities() const
Returns true if the provider has temporal capabilities available.
@ FlagLoadDefaultStyle
Reset the layer's style to the default for the datasource.
@ FlagTrustDataSource
Trust datasource config (primary key unicity, geometry type and srid, etc). Improves provider load ti...
@ ForceReadOnly
Open layer in a read-only mode (since QGIS 3.28)
QgsCoordinateTransformContext transformContext() const
Returns data provider coordinate transform context.
virtual QgsCoordinateReferenceSystem crs() const =0
Returns the coordinate system for the data source.
void dataChanged()
Emitted whenever a change is made to the data provider which may have caused changes in the provider'...
virtual bool isValid() const =0
Returns true if this is a valid layer.
virtual QStringList subLayers() const
Sub-layers handled by this provider, in order from bottom to top.
virtual void reloadData()
Reloads the data from the source for providers with data caches to synchronize, changes in the data s...
virtual QgsRectangle extent() const =0
Returns the extent of the layer.
virtual void setTransformContext(const QgsCoordinateTransformContext &transformContext)
Sets data coordinate transform context to transformContext.
void setVariable(const QString &name, const QVariant &value, bool isStatic=false)
Convenience method for setting a variable in the context scope by name name and value.
static QgsExpressionContextScope * meshExpressionScope(QgsMesh::ElementType elementType)
Creates a new scope which contains functions relating to mesh layer element elementType.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
QgsExpressionContextScope * lastScope()
Returns the last scope added to the context.
void appendScope(QgsExpressionContextScope *scope)
Appends a scope to the end of the context.
Class for parsing and evaluation of expressions (formerly called "search strings").
bool prepare(const QgsExpressionContext *context)
Gets the expression ready for evaluation - find out column indexes.
QVariant evaluate()
Evaluate the feature and return the result.
static QgsColorRamp * create(const QVariantMap &properties=QVariantMap())
Creates a new QgsColorRamp from a map of properties.
Class defining color to render mesh datasets.
Represents a simple line renderer with width and color varying depending on values.
Represents a width than can vary depending on values.
void setMaximumValue(double maximumValue)
Sets the maximum value used to defined the variable width.
void setMinimumValue(double minimumValue)
Sets the minimum value used to defined the variable width.
A representation of the interval between two datetime values.
double seconds() const
Returns the interval duration in seconds.
Base class for storage of map layer elevation properties.
static QString typeToString(Qgis::LayerType type)
Converts a map layer type to a string value.
static QgsMapLayerLegend * defaultMeshLegend(QgsMeshLayer *ml)
Create new legend implementation for mesh layer.
Base class for utility classes that encapsulate information necessary for rendering of map layers.
Base class for storage of map layer temporal properties.
virtual void setDefaultsFromDataProviderTemporalCapabilities(const QgsDataProviderTemporalCapabilities *capabilities)=0
Sets the layers temporal settings to appropriate defaults based on a provider's temporal capabilities...
Base class for all map layer types.
virtual bool isSpatial() const
Returns true if the layer is considered a spatial layer, ie it has some form of geometry associated w...
void editingStopped()
Emitted when edited changes have been successfully written to the data provider.
QString source() const
Returns the source for the layer.
void setBlendMode(QPainter::CompositionMode blendMode)
Set the blending mode used for rendering a layer.
void trigger3DUpdate()
Will advise any 3D maps that this layer requires to be updated in the scene.
QgsMapLayer::LayerFlags flags() const
Returns the flags for this layer.
void editingStarted()
Emitted when editing on this layer has started.
virtual QString loadDefaultStyle(bool &resultFlag)
Retrieve the default style for this layer if one exists (either as a .qml file on disk or as a record...
QString mLayerName
Name of the layer - used for display.
void triggerRepaint(bool deferredUpdate=false)
Will advise the map canvas (and any other interested party) that this layer requires to be repainted.
QString crsHtmlMetadata() const
Returns a HTML fragment containing the layer's CRS metadata, for use in the htmlMetadata() method.
QgsLayerMetadata metadata
QPainter::CompositionMode blendMode() const
Returns the current blending mode for a layer.
virtual void setOpacity(double opacity)
Sets the opacity for the layer, where opacity is a value between 0 (totally transparent) and 1....
QString mProviderKey
Data provider key (name of the data provider)
QgsCoordinateTransformContext transformContext() const
Returns the layer data provider coordinate transform context or a default transform context if the la...
void rendererChanged()
Signal emitted when renderer is changed.
virtual QgsError error() const
Gets current status error.
void dataSourceChanged()
Emitted whenever the layer's data source has been changed.
void emitStyleChanged()
Triggers an emission of the styleChanged() signal.
void dataChanged()
Data of layer changed.
virtual QgsMapLayer * clone() const =0
Returns a new instance equivalent to this one except for the id which is still unique.
QString mDataSource
Data source description string, varies by layer type.
@ FlagTrustLayerMetadata
Trust layer metadata. Improves layer load time by skipping expensive checks like primary key unicity,...
@ FlagForceReadOnly
Force open as read only.
@ FlagDontResolveLayers
Don't resolve layer paths or create data providers for layers.
void setValid(bool valid)
Sets whether layer is valid or not.
void readCommonStyle(const QDomElement &layerElement, const QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories)
Read style data common to all layer types.
QgsMapLayer::ReadFlags mReadFlags
Read flags. It's up to the subclass to respect these when restoring state from XML.
void setLegend(QgsMapLayerLegend *legend)
Assign a legend controller to the map layer.
@ Rendering
Rendering: scale visibility, simplify method, opacity.
void layerModified()
Emitted when modifications has been done on layer.
void setProviderType(const QString &providerType)
Sets the providerType (provider key)
QString generalHtmlMetadata() const
Returns an HTML fragment containing general metadata information, for use in the htmlMetadata() metho...
void writeCommonStyle(QDomElement &layerElement, QDomDocument &document, const QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories) const
Write style data common to all layer types.
void invalidateWgs84Extent()
Invalidates the WGS84 extent.
bool mShouldValidateCrs
true if the layer's CRS should be validated and invalid CRSes are not permitted.
void setCrs(const QgsCoordinateReferenceSystem &srs, bool emitSignal=true)
Sets layer's spatial reference system.
Abstract class to interpolate 3d stacked mesh data to 2d data.
QgsMeshDataBlock calculate(const QgsMesh3dDataBlock &block3d, QgsFeedback *feedback=nullptr) const
Calculated 2d block values from 3d stacked mesh values.
QgsMesh3dDataBlock is a block of 3d stacked mesh data related N faces defined on base mesh frame.
QgsMeshDataBlock is a block of integers/doubles that can be used to retrieve: active flags (e....
QgsMeshDatasetValue value(int index) const
Returns a value represented by the index For active flag the behavior is undefined.
bool isValid() const
Whether the block is valid.
QDateTime referenceTime() const
Returns the reference time.
Qgis::TemporalUnit temporalUnit() const
Returns the temporal unit used to read data by the data provider.
MatchingTemporalDatasetMethod
Method for selection of temporal mesh dataset from a range time.
qint64 firstTimeStepDuration(int group) const
Returns the duration of the first time step of the dataset group with index group.
Base class for providing data for QgsMeshLayer.
virtual QgsMeshDriverMetadata driverMetadata() const
Returns the mesh driver metadata of the provider.
void setTemporalUnit(Qgis::TemporalUnit unit)
Sets the temporal unit of the provider and reload data if it changes.
QgsMeshDataProviderTemporalCapabilities * temporalCapabilities() override
Returns the provider's temporal capabilities.
virtual void close()=0
Closes the data provider and free every resources used.
virtual int vertexCount() const =0
Returns number of vertices in the native mesh.
virtual void populateMesh(QgsMesh *mesh) const =0
Populates the mesh vertices, edges and faces.
virtual bool saveMeshFrame(const QgsMesh &mesh)=0
Saves the mesh frame to the source.
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.
Class used to register and access all the dataset groups related to a mesh layer.
void datasetGroupsAdded(QList< int > indexes)
Emitted after dataset groups are added.
Tree item for display of the mesh dataset groups.
int datasetGroupIndex() const
QgsMeshDatasetGroupTreeItem * childFromDatasetGroupIndex(int index)
Returns the child with dataset group index Searches as depper as needed on the child hierarchy.
QgsMeshDatasetGroupTreeItem * child(int row) const
Returns a child.
Abstract class that represents a dataset group.
QgsMeshDatasetIndex is index that identifies the dataset group (e.g.
bool isValid() const
Returns whether index is valid, ie at least groups is set.
int group() const
Returns a group index.
int dataset() const
Returns a dataset index within group()
virtual int datasetGroupCount() const =0
Returns number of datasets groups loaded.
virtual QStringList extraDatasets() const =0
Returns list of additional dataset file URIs added using addDataset() calls.
QgsMeshDatasetValue represents single dataset value.
double y() const
Returns y value.
double x() const
Returns x value.
Class that represents an error during mesh editing.
Qgis::MeshEditingErrorType errorType
Class that makes edit operation on a mesh.
QgsMeshEditingError initialize()
Initializes the mesh editor and returns first error if the internal native mesh has topological error...
int validFacesCount() const
Returns the count of valid faces, that is non void faces in the mesh.
bool checkConsistency(QgsMeshEditingError &error) const
Return true if the edited mesh is consistent.
QgsRectangle extent() const
Returns the extent of the edited mesh.
QgsMeshEditingError initializeWithErrorsFix()
Initializes the mesh editor.
int maximumVerticesPerFace() const
Returns the maximum count of vertices per face that the mesh can support.
void stopEditing()
Stops editing.
void meshEdited()
Emitted when the mesh is edited.
void resetTriangularMesh(QgsTriangularMesh *triangularMesh)
Resets the triangular mesh.
bool isModified() const
Returns whether the mesh has been modified.
int validVerticesCount() const
Returns the count of valid vertices, that is non void vertices in the mesh.
bool reindex(bool renumbering)
Reindexes the mesh, that is remove unusued index of face and vertices, this operation void the undo/r...
QgsMeshDatasetGroup * createZValueDatasetGroup()
Creates and returns a scalar dataset group with value on vertex that is can be used to access the Z v...
Mesh layer specific subclass of QgsMapLayerElevationProperties.
QgsMeshLayerElevationProperties * clone() const override
Creates a clone of the properties.
Implementation of QgsAbstractProfileGenerator for mesh layers.
Implementation of threaded rendering for mesh layers.
Implementation of map layer temporal properties for mesh layers.
QDateTime referenceTime() const
Returns the reference time.
bool isValid() const
Returns whether the instance is valid.
void setMatchingMethod(const QgsMeshDataProviderTemporalCapabilities::MatchingTemporalDatasetMethod &matchingMethod)
Sets the method used to match dataset from temporal capabilities.
QgsMeshDataProviderTemporalCapabilities::MatchingTemporalDatasetMethod matchingMethod() const
Returns the method used to match dataset from temporal capabilities.
void setReferenceTime(const QDateTime &referenceTime, const QgsDataProviderTemporalCapabilities *capabilities)
Sets the reference time and update the time extent from the temporal capabilities,...
void setDefaultsFromDataProviderTemporalCapabilities(const QgsDataProviderTemporalCapabilities *capabilities) override
Sets the layers temporal settings to appropriate defaults based on a provider's temporal capabilities...
bool alwaysLoadReferenceTimeFromSource() const
Returns whether the time proporties are automatically reloaded from provider when project is opened o...
QgsDateTimeRange timeExtent() const
Returns the time extent.
Represents a mesh layer supporting display of data on structured or unstructured meshes.
QList< int > selectVerticesByExpression(QgsExpression expression)
Returns a list of vertex indexes that meet the condition defined by expression with the context expre...
void setMeshSimplificationSettings(const QgsMeshSimplificationSettings &meshSimplificationSettings)
Sets mesh simplification settings.
int datasetCount(const QgsMeshDatasetIndex &index) const
Returns the dataset count in the dataset groups.
QList< int > datasetGroupsIndexes() const
Returns the list of indexes of dataset groups handled by the layer.
void stopFrameEditing(const QgsCoordinateTransform &transform)
Stops editing of the mesh, re-indexes the faces and vertices, rebuilds the triangular mesh and its sp...
QgsRectangle extent() const override
Returns the extent of the layer.
void setStaticVectorDatasetIndex(const QgsMeshDatasetIndex &staticVectorDatasetIndex)
Sets the static vector dataset index that is rendered if the temporal properties is not active.
void setStaticScalarDatasetIndex(const QgsMeshDatasetIndex &staticScalarDatasetIndex)
Sets the static scalar dataset index that is rendered if the temporal properties is not active.
bool contains(const QgsMesh::ElementType &type) const
Returns whether the mesh contains at mesh elements of given type.
QgsMeshRendererSettings rendererSettings() const
Returns renderer settings.
QgsMesh3dDataBlock dataset3dValues(const QgsMeshDatasetIndex &index, int faceIndex, int count) const
Returns N vector/scalar values from the face index from the dataset for 3d stacked meshes.
QList< QgsMeshDatasetIndex > datasetIndexInRelativeTimeInterval(const QgsInterval &startRelativeTime, const QgsInterval &endRelativeTime, int datasetGroupIndex) const
Returns a list of dataset indexes from datasets group that are in a interval time from the layer refe...
void activeScalarDatasetGroupChanged(int index)
Emitted when active scalar group dataset is changed.
int datasetGroupCount() const
Returns the dataset groups count handle by the layer.
void updateTriangularMesh(const QgsCoordinateTransform &transform=QgsCoordinateTransform())
Gets native mesh and updates (creates if it doesn't exist) the base triangular mesh.
bool addDatasets(const QString &path, const QDateTime &defaultReferenceTime=QDateTime())
Adds datasets to the mesh from file with path.
bool isModified() const override
Returns whether the mesh frame has been modified since the last save.
void activeVectorDatasetGroupChanged(int index)
Emitted when active vector group dataset is changed.
void reload() override
Synchronises with changes in the datasource.
QgsMeshDatasetIndex activeScalarDatasetAtTime(const QgsDateTimeRange &timeRange) const
Returns dataset index from active scalar group depending on the time range.
QgsPointXY snapOnElement(QgsMesh::ElementType elementType, const QgsPointXY &point, double searchRadius)
Returns the position of the snapped point on the mesh element closest to point intersecting with the ...
bool readXml(const QDomNode &layer_node, QgsReadWriteContext &context) override
Called by readLayerXML(), used by children to read state specific to them from project files.
QStringList subLayers() const override
Returns the sublayers of this layer.
QgsMeshEditor * meshEditor()
Returns a pointer to the mesh editor own by the mesh layer.
void setDatasetGroupTreeRootItem(QgsMeshDatasetGroupTreeItem *rootItem)
Sets the root items of the dataset group tree item.
QgsMeshDatasetValue dataset1dValue(const QgsMeshDatasetIndex &index, const QgsPointXY &point, double searchRadius) const
Returns the value of 1D mesh dataset defined on edge that are in the search area defined by point ans...
QgsMesh * nativeMesh()
Returns native mesh (nullptr before rendering or calling to updateMesh)
QString loadDefaultStyle(bool &resultFlag) FINAL
Retrieve the default style for this layer if one exists (either as a .qml file on disk or as a record...
QgsTriangularMesh * triangularMeshByLodIndex(int lodIndex) const
Returns triangular corresponding to the index of level of details.
QString htmlMetadata() const override
Obtain a formatted HTML string containing assorted metadata for this layer.
int meshFaceCount() const
Returns the faces count of the mesh frame.
QList< int > selectFacesByExpression(QgsExpression expression)
Returns a list of faces indexes that meet the condition defined by expression with the context expres...
QgsMesh3dDataBlock dataset3dValue(const QgsMeshDatasetIndex &index, const QgsPointXY &point) const
Returns the 3d values of stacked 3d mesh defined by the given point.
QgsMapLayerElevationProperties * elevationProperties() override
Returns the layer's elevation properties.
QgsMeshLayer * clone() const override
Returns a new instance equivalent to this one except for the id which is still unique.
void timeSettingsChanged()
Emitted when time format is changed.
QList< int > enabledDatasetGroupsIndexes() const
Returns the list of indexes of enables dataset groups handled by the layer.
void resetDatasetGroupTreeItem()
Reset the dataset group tree item to default from provider.
int triangularMeshLevelOfDetailCount() const
Returns the count of levels of detail of the mesh simplification.
bool rollBackFrameEditing(const QgsCoordinateTransform &transform, bool continueEditing=true)
Rolls Back editing of the mesh frame.
QString encodedSource(const QString &source, const QgsReadWriteContext &context) const override
Called by writeLayerXML(), used by derived classes to encode provider's specific data source to proje...
QgsMeshDatasetIndex staticVectorDatasetIndex() const
Returns the static vector dataset index that is rendered if the temporal properties is not active.
QgsMeshDatasetIndex datasetIndexAtRelativeTime(const QgsInterval &relativeTime, int datasetGroupIndex) const
Returns dataset index from datasets group depending on the relative time from the layer reference tim...
bool writeXml(QDomNode &layer_node, QDomDocument &doc, const QgsReadWriteContext &context) const override
Called by writeLayerXML(), used by children to write state specific to them to project files.
bool commitFrameEditing(const QgsCoordinateTransform &transform, bool continueEditing=true)
Commits editing of the mesh frame, Rebuilds the triangular mesh and its spatial index with transform,...
QgsAbstractProfileGenerator * createProfileGenerator(const QgsProfileRequest &request) override
Given a profile request, returns a new profile generator ready for generating elevation profiles.
QgsMeshDataBlock datasetValues(const QgsMeshDatasetIndex &index, int valueIndex, int count) const
Returns N vector/scalar values from the index from the dataset.
bool writeStyle(QDomNode &node, QDomDocument &doc, QString &errorMessage, const QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories) const override
Write just the symbology information for the layer into the document.
void setTransformContext(const QgsCoordinateTransformContext &transformContext) override
Sets the coordinate transform context to transformContext.
int meshEdgeCount() const
Returns the edges count of the mesh frame.
QgsMeshSimplificationSettings meshSimplificationSettings() const
Returns mesh simplification settings.
QgsMapLayerRenderer * createMapRenderer(QgsRenderContext &rendererContext) override
Returns new instance of QgsMapLayerRenderer that will be used for rendering of given context.
QgsMeshDatasetIndex activeVectorDatasetAtTime(const QgsDateTimeRange &timeRange) const
Returns dataset index from active vector group depending on the time range If the temporal properties...
bool isEditable() const override
Returns true if the layer can be edited.
QgsMeshDataBlock areFacesActive(const QgsMeshDatasetIndex &index, int faceIndex, int count) const
Returns whether the faces are active for particular dataset.
QgsMeshDatasetIndex staticScalarDatasetIndex() const
Returns the static scalar dataset index that is rendered if the temporal properties is not active.
bool isFaceActive(const QgsMeshDatasetIndex &index, int faceIndex) const
Returns N vector/scalar values from the face index from the dataset for 3d stacked meshes.
QgsMeshDatasetMetadata datasetMetadata(const QgsMeshDatasetIndex &index) const
Returns the dataset metadata.
bool saveDataset(const QString &path, int datasetGroupIndex, QString driver)
Saves datasets group on file with the specified driver.
bool supportsEditing() const override
Returns whether the layer supports editing or not.
QgsMeshDataProvider * dataProvider() override
Returns the layer's data provider, it may be nullptr.
QgsInterval firstValidTimeStep() const
Returns the first valid time step of the dataset groups, invalid QgInterval if no time step is presen...
QgsInterval datasetRelativeTime(const QgsMeshDatasetIndex &index)
Returns the relative time of the dataset from the reference time of its group.
QgsMeshDatasetIndex datasetIndexAtTime(const QgsDateTimeRange &timeRange, int datasetGroupIndex) const
Returns dataset index from datasets group depending on the time range.
Q_DECL_DEPRECATED bool startFrameEditing(const QgsCoordinateTransform &transform)
Starts editing of the mesh frame.
bool reindex(const QgsCoordinateTransform &transform, bool renumber)
Re-indexes the faces and vertices, and renumber the indexes if renumber is true.
QgsMeshDatasetValue datasetValue(const QgsMeshDatasetIndex &index, int valueIndex) const
Returns vector/scalar value associated with the index from the dataset To read multiple continuous va...
QgsMeshTimeSettings timeSettings() const
Returns time format settings.
QgsMapLayerTemporalProperties * temporalProperties() override
Returns the layer's temporal properties.
bool writeSymbology(QDomNode &node, QDomDocument &doc, QString &errorMessage, const QgsReadWriteContext &context, QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories) const override
int meshVertexCount() const
Returns the vertices count of the mesh frame.
void setReferenceTime(const QDateTime &referenceTime)
Sets the reference time of the layer.
bool readStyle(const QDomNode &node, QString &errorMessage, QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories) override
Read the style for the current layer from the DOM node supplied.
int extraDatasetGroupCount() const
Returns the extra dataset groups count handle by the layer.
void setRendererSettings(const QgsMeshRendererSettings &settings)
Sets new renderer settings.
qint64 datasetRelativeTimeInMilliseconds(const QgsMeshDatasetIndex &index)
Returns the relative time (in milliseconds) of the dataset from the reference time of its group.
QgsTriangularMesh * triangularMesh(double minimumTriangleSize=0) const
Returns triangular mesh (nullptr before rendering or calling to updateMesh).
void setTemporalMatchingMethod(const QgsMeshDataProviderTemporalCapabilities::MatchingTemporalDatasetMethod &matchingMethod)
Sets the method used to match the temporal dataset from a requested time, see activeVectorDatasetAtTi...
QgsMeshDatasetGroupTreeItem * datasetGroupTreeRootItem() const
Returns the root items of the dataset group tree item.
bool readSymbology(const QDomNode &node, QString &errorMessage, QgsReadWriteContext &context, QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories) override
QString providerType() const
Returns the provider type for this layer.
QString decodedSource(const QString &source, const QString &provider, const QgsReadWriteContext &context) const override
Called by readLayerXML(), used by derived classes to decode provider's specific data source from proj...
void reloaded()
Emitted when the mesh layer is reloaded, see reload()
QString formatTime(double hours)
Returns (date) time in hours formatted to human readable form.
QgsMeshDatasetGroupMetadata datasetGroupMetadata(const QgsMeshDatasetIndex &index) const
Returns the dataset groups metadata.
QgsMeshLayerRendererCache * rendererCache()
Returns native mesh (nullptr before rendering)
void setTimeSettings(const QgsMeshTimeSettings &settings)
Sets time format settings.
QgsMeshLayer(const QString &path=QString(), const QString &baseName=QString(), const QString &providerLib=QStringLiteral("mesh_memory"), const QgsMeshLayer::LayerOptions &options=QgsMeshLayer::LayerOptions())
Constructor - creates a mesh layer.
Represents a mesh renderer settings for mesh object.
void setEnabled(bool enabled)
Sets whether mesh structure rendering is enabled.
Represents a mesh renderer settings for scalar datasets.
void setClassificationMinimumMaximum(double minimum, double maximum)
Sets min/max values used for creation of the color ramp shader.
void setColorRampShader(const QgsColorRampShader &shader)
Sets color ramp shader function.
QgsColorRampShader colorRampShader() const
Returns color ramp shader function.
@ None
Does not use resampling.
@ NeighbourAverage
Does a simple average of values defined for all surrounding faces/vertices.
void setEdgeStrokeWidth(const QgsInterpolatedLineWidth &strokeWidth)
Sets the stroke width used to render edges scalar dataset.
void setDataResamplingMethod(const DataResamplingMethod &dataResamplingMethod)
Sets data interpolation method.
Represents all mesh renderer settings.
void setActiveVectorDatasetGroup(int activeVectorDatasetGroup)
Sets the active vector dataset group.
QgsMeshRendererScalarSettings scalarSettings(int groupIndex) const
Returns renderer settings.
int activeVectorDatasetGroup() const
Returns the active vector dataset group.
bool hasSettings(int datasetGroupIndex) const
Returns whether the group with index has render settings (scalar or vector)
int activeScalarDatasetGroup() const
Returns the active scalar dataset group.
QgsMesh3dAveragingMethod * averagingMethod() const
Returns averaging method for conversion of 3d stacked mesh data to 2d data.
void setActiveScalarDatasetGroup(int activeScalarDatasetGroup)
Sets the active scalar dataset group.
void readXml(const QDomElement &elem, const QgsReadWriteContext &context=QgsReadWriteContext())
Reads configuration from the given DOM element.
void setVectorSettings(int groupIndex, const QgsMeshRendererVectorSettings &settings)
Sets new renderer settings.
QDomElement writeXml(QDomDocument &doc, const QgsReadWriteContext &context=QgsReadWriteContext()) const
Writes configuration to a new DOM element.
void setScalarSettings(int groupIndex, const QgsMeshRendererScalarSettings &settings)
Sets new renderer settings.
void setNativeMeshSettings(const QgsMeshRendererMeshSettings &settings)
Sets new native mesh renderer settings, triggers repaint.
Represents a renderer settings for vector datasets.
void setColorRampShader(const QgsColorRampShader &colorRampShader)
Returns the color ramp shader used to render vector datasets.
Represents an overview renderer settings.
QDomElement writeXml(QDomDocument &doc, const QgsReadWriteContext &context) const
Writes configuration to a new DOM element.
void setEnabled(bool isEnabled)
Sets if the overview is active.
double reductionFactor() const
Returns the reduction factor used to build simplified mesh.
bool isEnabled() const
Returns if the overview is active.
void readXml(const QDomElement &elem, const QgsReadWriteContext &context)
Reads configuration from the given DOM element.
Represents a mesh time settings for mesh datasets.
static void logMessage(const QString &message, const QString &tag=QString(), Qgis::MessageLevel level=Qgis::MessageLevel::Warning, bool notifyUser=true)
Adds a message to the log instance (and creates it if necessary).
static Qgis::BlendMode getBlendModeEnum(QPainter::CompositionMode blendMode)
Returns a BlendMode corresponding to a QPainter::CompositionMode.
static QPainter::CompositionMode getCompositionMode(Qgis::BlendMode blendMode)
Returns a QPainter::CompositionMode corresponding to a BlendMode.
QString writePath(const QString &filename) const
Prepare a filename to save it to the project file.
QString readPath(const QString &filename) const
Turn filename read from the project file to an absolute path.
A class to represent a 2D point.
double distance(double x, double y) const SIP_HOLDGIL
Returns the distance between this point and a specified x, y coordinate.
double sqrDistToSegment(double x1, double y1, double x2, double y2, QgsPointXY &minDistPoint, double epsilon=DEFAULT_SEGMENT_EPSILON) const SIP_HOLDGIL
Returns the minimum distance between this point and a segment.
Point geometry type, with support for z-dimension and m-values.
double distance(double x, double y) const SIP_HOLDGIL
Returns the Cartesian 2D distance between this point and a specified x, y coordinate.
Encapsulates properties and constraints relating to fetching elevation profiles from different source...
QString absoluteToRelativeUri(const QString &providerKey, const QString &uri, const QgsReadWriteContext &context) const
Converts absolute path(s) to relative path(s) in the given provider-specific URI.
static QgsProviderRegistry * instance(const QString &pluginPath=QString())
Means of accessing canonical single instance.
QString relativeToAbsoluteUri(const QString &providerKey, const QString &uri, const QgsReadWriteContext &context) const
Converts relative path(s) to absolute path(s) in the given provider-specific URI.
virtual void setMaximumValue(double value)
Sets the maximum value for the raster shader.
virtual void setMinimumValue(double value)
Sets the minimum value for the raster shader.
The class is used as a container of context for various read/write operations on other objects.
const QgsPathResolver & pathResolver() const
Returns path resolver for conversion between relative and absolute paths.
A rectangle specified with double values.
QString toString(int precision=16) const
Returns a string representation of form xmin,ymin : xmax,ymax Coordinates will be truncated to the sp...
void setMinimal() SIP_HOLDGIL
Set a rectangle so that min corner is at max and max corner is at min.
Contains information about the context of a rendering operation.
QgsCoordinateTransform coordinateTransform() const
Returns the current coordinate transform for the context.
static QgsStyle * defaultStyle()
Returns default application-wide style.
QgsColorRamp * colorRamp(const QString &name) const
Returns a new copy of the specified color ramp.
bool isActive() const
Returns true if the temporal property is active.
void setIsActive(bool active)
Sets whether the temporal property is active.
static QgsMeshEditingError checkTopology(const QgsMesh &mesh, int maxVerticesPerFace)
Checks the topology of the mesh mesh, if error occurs, this mesh can't be edited.
Triangular/Derived Mesh is mesh with vertices in map coordinates.
const QVector< QgsMeshFace > & triangles() const
Returns triangles.
QList< int > edgeIndexesForRectangle(const QgsRectangle &rectangle) const
Finds indexes of edges intersecting given bounding box It uses spatial indexing.
const QVector< QgsMeshVertex > & vertices() const
Returns vertices in map coordinate system.
const QVector< QgsMeshEdge > & edges() const
Returns edges.
bool contains(const QgsMesh::ElementType &type) const
Returns whether the mesh contains mesh elements of given type.
const QVector< int > & trianglesToNativeFaces() const
Returns mapping between triangles and original faces.
int faceIndexForPoint_v2(const QgsPointXY &point) const
Finds index of triangle at given point It uses spatial indexing and don't use geos to be faster.
CORE_EXPORT QgsMeshVertex centroid(const QgsMeshFace &face, const QVector< QgsMeshVertex > &vertices)
Returns the centroid of the face.
#define QgsDebugMsgLevel(str, level)
QVector< int > QgsMeshFace
List of vertex indexes.
QPair< int, int > QgsMeshEdge
Edge is a straight line seqment between 2 points.
#define INVALID_MESHLAYER_TIME
#define QGIS_PROTECT_QOBJECT_THREAD_ACCESS
Setting options for creating vector data providers.
Setting options for loading mesh layers.
QgsCoordinateTransformContext transformContext
Coordinate transform context.
bool loadDefaultStyle
Set to true if the default layer style should be loaded.
bool skipCrsValidation
Controls whether the layer is allowed to have an invalid/unknown CRS.
Mesh - vertices, edges and faces.
ElementType
Defines type of mesh elements.