1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
/******************************************************************************
*
* Project: GDAL
* Purpose: gdal "vector grid invdistnn" subcommand
* Author: Even Rouault <even dot rouault at spatialys.com>
*
******************************************************************************
* Copyright (c) 2025, Even Rouault <even dot rouault at spatialys.com>
*
* SPDX-License-Identifier: MIT
****************************************************************************/
#include "gdalalg_vector_grid_invdistnn.h"
#include <limits>
//! @cond Doxygen_Suppress
#ifndef _
#define _(x) (x)
#endif
/************************************************************************/
/* GDALVectorGridInvdistNNAlgorithm::GDALVectorGridInvdistNNAlgorithm() */
/************************************************************************/
GDALVectorGridInvdistNNAlgorithm::GDALVectorGridInvdistNNAlgorithm(
bool standaloneStep)
: GDALVectorGridAbstractAlgorithm(NAME, DESCRIPTION, HELP_URL,
standaloneStep)
{
AddArg("power", 0, _("Weighting power"), &m_power).SetDefault(m_power);
AddArg("smoothing", 0, _("Smoothing parameter"), &m_smoothing)
.SetDefault(m_smoothing);
AddRadiusArg();
AddMinPointsArg();
m_maxPoints = 12;
AddMaxPointsArg();
AddMinMaxPointsPerQuadrantArg();
AddNodataArg();
}
/************************************************************************/
/* GDALVectorGridInvdistNNAlgorithm::RunImpl() */
/************************************************************************/
std::string GDALVectorGridInvdistNNAlgorithm::GetGridAlgorithm() const
{
std::string ret =
CPLSPrintf("invdistnn:power=%.17g:smoothing=%.17g:nodata=%.17g",
m_power, m_smoothing, m_nodata);
ret += CPLSPrintf(":radius=%.17g", m_radius);
if (m_minPoints > 0)
ret += CPLSPrintf(":min_points=%d", m_minPoints);
if (m_maxPoints < std::numeric_limits<int>::max())
ret += CPLSPrintf(":max_points=%d", m_maxPoints);
if (m_minPointsPerQuadrant > 0)
ret +=
CPLSPrintf(":min_points_per_quadrant=%d", m_minPointsPerQuadrant);
if (m_maxPointsPerQuadrant < std::numeric_limits<int>::max())
ret +=
CPLSPrintf(":max_points_per_quadrant=%d", m_maxPointsPerQuadrant);
return ret;
}
GDALVectorGridInvdistNNAlgorithmStandalone::
~GDALVectorGridInvdistNNAlgorithmStandalone() = default;
//! @endcond
|