Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgselevationutils.cpp 3 : : ------------------ 4 : : Date : November 2020 5 : : Copyright : (C) 2020 by Nyall Dawson 6 : : Email : nyall dot dawson at gmail dot com 7 : : *************************************************************************** 8 : : * * 9 : : * This program is free software; you can redistribute it and/or modify * 10 : : * it under the terms of the GNU General Public License as published by * 11 : : * the Free Software Foundation; either version 2 of the License, or * 12 : : * (at your option) any later version. * 13 : : * * 14 : : ***************************************************************************/ 15 : : 16 : : #include "qgselevationutils.h" 17 : : #include "qgsproject.h" 18 : : #include "qgsmaplayerelevationproperties.h" 19 : : 20 : : 21 : 0 : QgsDoubleRange QgsElevationUtils::calculateZRangeForProject( QgsProject *project ) 22 : : { 23 : 0 : const QMap<QString, QgsMapLayer *> &mapLayers = project->mapLayers(); 24 : 0 : QgsMapLayer *currentLayer = nullptr; 25 : : 26 : 0 : double min = std::numeric_limits<double>::quiet_NaN(); 27 : 0 : double max = std::numeric_limits<double>::quiet_NaN(); 28 : : 29 : 0 : for ( QMap<QString, QgsMapLayer *>::const_iterator it = mapLayers.constBegin(); it != mapLayers.constEnd(); ++it ) 30 : : { 31 : 0 : currentLayer = it.value(); 32 : : 33 : 0 : if ( !currentLayer->elevationProperties() || !currentLayer->elevationProperties()->hasElevation() ) 34 : 0 : continue; 35 : : 36 : 0 : const QgsDoubleRange layerRange = currentLayer->elevationProperties()->calculateZRange( currentLayer ); 37 : 0 : if ( layerRange.isInfinite() ) 38 : 0 : continue; 39 : : 40 : 0 : if ( layerRange.lower() > std::numeric_limits< double >::lowest() ) 41 : : { 42 : 0 : if ( std::isnan( min ) || layerRange.lower() < min ) 43 : 0 : min = layerRange.lower(); 44 : 0 : } 45 : : 46 : 0 : if ( layerRange.upper() < std::numeric_limits< double >::max() ) 47 : : { 48 : 0 : if ( std::isnan( max ) || layerRange.upper() > max ) 49 : 0 : max = layerRange.upper(); 50 : 0 : } 51 : 0 : } 52 : : 53 : 0 : return QgsDoubleRange( std::isnan( min ) ? std::numeric_limits< double >::lowest() : min, 54 : 0 : std::isnan( max ) ? std::numeric_limits< double >::max() : max ); 55 : 0 : } 56 : :