Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
fix ept provider identify test
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
src/core/pointcloud/qgspointclouddataprovider.cpp
|
@@ -326,7 +326,7 @@ struct MapIndexedPointCloudNode |
|
|
_pointXYZ( ptr, i, recordSize, xOffset, xType, yOffset, yType, zOffset, zType, mIndexScale, mIndexOffset, x, y, z ); |
|
|
QgsPoint point( x, y ); |
|
|
|
|
|
if ( mZRange.contains( point.z() ) && extentEngine->contains( &point ) ) |
|
|
if ( mZRange.contains( z ) && extentEngine->contains( &point ) ) |
|
|
{ |
|
|
QVariantMap pointAttr = _attributeMap( ptr, i * recordSize, blockAttributes ); |
|
|
pointAttr[ QStringLiteral( "X" ) ] = x; |
|
|