22#include <QJsonDocument>
35 double delta1 = newMean -
mean;
37 double delta2 = newMean - stats.
mean;
38 double variance2 = stats.
stDev * stats.
stDev + delta2 * delta2 - 2 * stats.
count * delta2 * stats.
mean;
66 : mSampledPointsCount( sampledPointsCount ), mStatisticsMap( stats )
73 mStatisticsMap.clear();
80 mStatisticsMap.remove( attribute.name() );
87 defaultVal.
minimum = std::numeric_limits<double>::max();
88 defaultVal.
maximum = std::numeric_limits<double>::lowest();
90 return mStatisticsMap.value( attribute, defaultVal );
95 if ( !mStatisticsMap.contains( attribute ) )
103 if ( !mStatisticsMap.contains( attribute ) )
104 return QMap<int, int>();
105 return mStatisticsMap[ attribute ].classCount;
110 if ( !mStatisticsMap.contains( attribute ) )
111 return std::numeric_limits<double>::quiet_NaN();
112 return mStatisticsMap[ attribute ].minimum;
117 if ( !mStatisticsMap.contains( attribute ) )
118 return std::numeric_limits<double>::quiet_NaN();
119 return mStatisticsMap[ attribute ].maximum;
124 if ( !mStatisticsMap.contains( attribute ) )
125 return std::numeric_limits<double>::quiet_NaN();
126 return mStatisticsMap[ attribute ].mean;
131 if ( !mStatisticsMap.contains( attribute ) )
132 return std::numeric_limits<double>::quiet_NaN();
133 return mStatisticsMap[ attribute ].stDev;
139 for (
auto it = stats.mStatisticsMap.constBegin(); it != stats.mStatisticsMap.constEnd(); it++ )
141 const QString attribute = it.key();
143 if ( mStatisticsMap.contains( attribute ) )
147 mStatisticsMap[ attribute ] = s;
149 mSampledPointsCount += stats.mSampledPointsCount;
155 obj.insert( QStringLiteral(
"sampled-points" ), QJsonValue::fromVariant(
sampledPointsCount() ) );
157 for (
auto it = mStatisticsMap.constBegin(); it != mStatisticsMap.constEnd(); it++ )
160 stats.insert( it.key(), attributeStatisticsToJson( stat ) );
162 obj.insert( QStringLiteral(
"stats" ), stats );
164 QJsonDocument statsDoc( obj );
165 return statsDoc.toJson( QJsonDocument::Compact );
170 QJsonParseError error;
171 QJsonDocument document = QJsonDocument::fromJson( statsByteArray, &error );
172 if ( error.error != QJsonParseError::NoError )
174 QgsMessageLog::logMessage( QObject::tr(
"Failed to load statistics JSON from COPC file, reason: %1" ).arg( error.errorString() ) );
178 QJsonObject statsJson = document.object();
181 stats.mSampledPointsCount = statsJson.value( QStringLiteral(
"sampled-points" ) ).toInt();
182 if ( statsJson.contains( QStringLiteral(
"stats" ) ) )
184 QJsonObject statsObj = statsJson.value( QStringLiteral(
"stats" ) ).toObject();
185 for (
const QString &attr : statsObj.keys() )
187 QJsonObject obj = statsObj.value( attr ).toObject();
189 attrStats.
count = stats.mSampledPointsCount;
190 stats.mStatisticsMap.insert( attr, attrStats );
199 obj.insert( QStringLiteral(
"minimum" ), stats.
minimum );
200 obj.insert( QStringLiteral(
"maximum" ), stats.
maximum );
201 obj.insert( QStringLiteral(
"mean" ), stats.
mean );
202 if ( !std::isnan( stats.
stDev ) )
204 obj.insert( QStringLiteral(
"standard-deviation" ), stats.
stDev );
206 QJsonObject classCount;
209 classCount.insert( QString::number( it.key() ), it.value() );
211 obj.insert( QStringLiteral(
"class-count" ), classCount );
218 QVariantMap m = statsJson.toVariantMap();
219 statsObj.
minimum = m.value( QStringLiteral(
"minimum" ), std::numeric_limits<double>::max() ).toDouble();
220 statsObj.
maximum = m.value( QStringLiteral(
"maximum" ), std::numeric_limits<double>::lowest() ).toDouble();
221 statsObj.
mean = m.value( QStringLiteral(
"mean" ), 0 ).toDouble();
222 statsObj.
stDev = m.value( QStringLiteral(
"standard-deviation" ), std::numeric_limits<double>::quiet_NaN() ).toDouble();
223 QJsonObject classCountJson = statsJson.value( QStringLiteral(
"class-count" ) ).toObject();
224 for (
const QString &key : classCountJson.keys() )
226 statsObj.
classCount.insert( key.toInt(), classCountJson.value( key ).toInt() );
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).
Attribute for point cloud data pair of name and size in bytes.
Class used to store statistics of a point cloud dataset.
static QgsPointCloudStatistics fromStatisticsJson(QByteArray stats)
Creates a statistics object from the JSON object stats.
double maximum(const QString &attribute) const
Returns the maximum value for the attribute attribute If no matching statistic is available then NaN ...
double stDev(const QString &attribute) const
Returns the standard deviation value for the attribute attribute If no matching statistic is availabl...
void clear()
Clears the statistics of all attributes.
QMap< int, int > availableClasses(const QString &attribute) const
Returns a map containing the count of each class of the attribute attribute If no matching statistic ...
QgsPointCloudStatistics()
QList< int > classesOf(const QString &attribute) const
Returns a list of existing classes which are present for the specified attribute.
double mean(const QString &attribute) const
Returns the mean value for the attribute attribute If no matching statistic is available then NaN wil...
void combineWith(const QgsPointCloudStatistics &stats)
Merges the current statistics with the statistics from stats.
double minimum(const QString &attribute) const
Returns the minimum value for the attribute attribute If no matching statistic is available then NaN ...
int sampledPointsCount() const
Returns the number of points used to calculate the statistics.
QByteArray toStatisticsJson() const
Converts the current statistics object into JSON object.
QgsPointCloudAttributeStatistics statisticsOf(const QString &attribute) const
Returns the calculated statistics of attribute attribute.
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c
Class used to store statistics of one attribute of a point cloud dataset.
void cumulateStatistics(const QgsPointCloudAttributeStatistics &stats)
Updates the current point cloud statistics to hold the cumulation of the current statistics and stats...
int singleClassCount(int cls) const
Returns the count of points in given class or -1 on error.
QMap< int, int > classCount