Coverage Report

Created: 2026-07-25 06:50

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/gdal/apps/gdalalg_raster_zonal_stats.h
Line
Count
Source
1
/******************************************************************************
2
 *
3
 * Project:  GDAL
4
 * Purpose:  gdal "raster zonal-stats" subcommand
5
 * Author:   Dan Baston
6
 *
7
 ******************************************************************************
8
 * Copyright (c) 2025, ISciences LLC
9
 *
10
 * SPDX-License-Identifier: MIT
11
 ****************************************************************************/
12
13
#ifndef GDALALG_RASTER_ZONAL_STATS_INCLUDED
14
#define GDALALG_RASTER_ZONAL_STATS_INCLUDED
15
16
#include "gdalpipelinestepalgorithm.h"
17
18
//! @cond Doxygen_Suppress
19
20
/************************************************************************/
21
/*                    GDALRasterZonalStatsAlgorithm                     */
22
/************************************************************************/
23
24
class GDALRasterZonalStatsAlgorithm /* non final */
25
    : public GDALPipelineStepAlgorithm
26
{
27
  public:
28
    static constexpr const char *NAME = "zonal-stats";
29
    static constexpr const char *DESCRIPTION =
30
        "Calculate raster zonal statistics";
31
    static constexpr const char *HELP_URL =
32
        "/programs/gdal_raster_zonal_stats.html";
33
34
    explicit GDALRasterZonalStatsAlgorithm(bool bStandalone = false);
35
36
    int GetInputType() const override
37
0
    {
38
0
        return GDAL_OF_RASTER;
39
0
    }
40
41
    int GetOutputType() const override
42
0
    {
43
0
        return GDAL_OF_VECTOR;
44
0
    }
45
46
  private:
47
    bool RunStep(GDALPipelineStepRunContext &ctxt) override;
48
    bool RunImpl(GDALProgressFunc pfnProgress, void *pProgressData) override;
49
50
    GDALArgDatasetValue m_weights{};
51
    GDALArgDatasetValue m_zones{};
52
    std::string m_zonesLayer{};
53
    int m_zonesBand{0};
54
    std::vector<int> m_bands{};
55
    std::vector<std::string> m_stats{};
56
    std::vector<std::string> m_includeFields{};
57
    bool m_includeZoneGeom{false};
58
    std::string m_strategy{};
59
    std::string m_memoryStr{"5%"};
60
    std::string m_pixels{"default"};
61
    int m_weightsBand{0};
62
    size_t m_memoryBytes{
63
        static_cast<size_t>(100) * 1024 *
64
        1024};  // FIXME validation action doesn't seem to run if arg isn't specified, so this never gets sets?
65
};
66
67
/************************************************************************/
68
/*               GDALRasterZonalStatsAlgorithmStandalone                */
69
/************************************************************************/
70
71
class GDALRasterZonalStatsAlgorithmStandalone final
72
    : public GDALRasterZonalStatsAlgorithm
73
{
74
  public:
75
    GDALRasterZonalStatsAlgorithmStandalone()
76
0
        : GDALRasterZonalStatsAlgorithm(/* standaloneStep = */ true)
77
0
    {
78
0
    }
79
80
    ~GDALRasterZonalStatsAlgorithmStandalone() override;
81
};
82
83
//! @endcond
84
85
#endif