Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgspointcloudlayerelevationproperties.cpp 3 : : --------------- 4 : : begin : November 2020 5 : : copyright : (C) 2020 by Nyall Dawson 6 : : email : nyall dot dawson dot com 7 : : ***************************************************************************/ 8 : : 9 : : /*************************************************************************** 10 : : * * 11 : : * This program is free software; you can redistribute it and/or modify * 12 : : * it under the terms of the GNU General Public License as published by * 13 : : * the Free Software Foundation; either version 2 of the License, or * 14 : : * (at your option) any later version. * 15 : : * * 16 : : ***************************************************************************/ 17 : : 18 : : #include "qgspointcloudlayerelevationproperties.h" 19 : : #include "qgspointcloudlayer.h" 20 : : 21 : 0 : QgsPointCloudLayerElevationProperties::QgsPointCloudLayerElevationProperties( QObject *parent ) 22 : 0 : : QgsMapLayerElevationProperties( parent ) 23 : 0 : { 24 : 0 : } 25 : : 26 : 0 : bool QgsPointCloudLayerElevationProperties::hasElevation() const 27 : : { 28 : 0 : return true; 29 : : } 30 : : 31 : 0 : QDomElement QgsPointCloudLayerElevationProperties::writeXml( QDomElement &parentElement, QDomDocument &document, const QgsReadWriteContext & ) 32 : : { 33 : 0 : QDomElement element = document.createElement( QStringLiteral( "elevation" ) ); 34 : 0 : element.setAttribute( QStringLiteral( "zoffset" ), qgsDoubleToString( mZOffset ) ); 35 : 0 : element.setAttribute( QStringLiteral( "zscale" ), qgsDoubleToString( mZScale ) ); 36 : 0 : parentElement.appendChild( element ); 37 : 0 : return element; 38 : 0 : } 39 : : 40 : 0 : bool QgsPointCloudLayerElevationProperties::readXml( const QDomElement &element, const QgsReadWriteContext & ) 41 : : { 42 : 0 : QDomElement elevationElement = element.firstChildElement( QStringLiteral( "elevation" ) ).toElement(); 43 : 0 : mZOffset = elevationElement.attribute( QStringLiteral( "zoffset" ), QStringLiteral( "0" ) ).toDouble(); 44 : 0 : mZScale = elevationElement.attribute( QStringLiteral( "zscale" ), QStringLiteral( "1" ) ).toDouble(); 45 : : return true; 46 : 0 : } 47 : : 48 : 0 : bool QgsPointCloudLayerElevationProperties::isVisibleInZRange( const QgsDoubleRange & ) const 49 : : { 50 : : // TODO -- test actual point cloud z range 51 : 0 : return true; 52 : : } 53 : : 54 : 0 : QgsDoubleRange QgsPointCloudLayerElevationProperties::calculateZRange( QgsMapLayer *layer ) const 55 : : { 56 : 0 : if ( QgsPointCloudLayer *pcLayer = qobject_cast< QgsPointCloudLayer * >( layer ) ) 57 : : { 58 : 0 : if ( pcLayer->dataProvider() ) 59 : : { 60 : : // try to fetch z range from provider metadata 61 : 0 : const QVariant zMin = pcLayer->dataProvider()->metadataStatistic( QStringLiteral( "Z" ), QgsStatisticalSummary::Min ); 62 : 0 : const QVariant zMax = pcLayer->dataProvider()->metadataStatistic( QStringLiteral( "Z" ), QgsStatisticalSummary::Max ); 63 : 0 : if ( zMin.isValid() && zMax.isValid() ) 64 : : { 65 : 0 : return QgsDoubleRange( zMin.toDouble() * mZScale + mZOffset, zMax.toDouble() * mZScale + mZOffset ); 66 : : } 67 : 0 : } 68 : 0 : } 69 : : 70 : 0 : return QgsDoubleRange(); 71 : 0 : }