File: gdalalg_vector_check_coverage.h

package info (click to toggle)
gdal 3.12.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 92,292 kB
  • sloc: cpp: 1,223,498; ansic: 206,434; python: 26,278; java: 6,001; xml: 4,769; sh: 3,855; cs: 2,513; yacc: 1,306; makefile: 214
file content (64 lines) | stat: -rw-r--r-- 2,032 bytes parent folder | download
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
/******************************************************************************
*
 * Project:  GDAL
 * Purpose:  "gdal vector check-coverage"
 * Author:   Daniel Baston
 *
 ******************************************************************************
 * Copyright (c) 2025, ISciences LLC
 *
 * SPDX-License-Identifier: MIT
 ****************************************************************************/

#ifndef GDALALG_VECTOR_CHECK_COVERAGE_INCLUDED
#define GDALALG_VECTOR_CHECK_COVERAGE_INCLUDED

#include "gdalalg_vector_pipeline.h"
#include "cpl_progress.h"

#include <string>

//! @cond Doxygen_Suppress

/************************************************************************/
/*                     GDALVectorCheckCoverageAlgorithm                 */
/************************************************************************/

class GDALVectorCheckCoverageAlgorithm : public GDALVectorPipelineStepAlgorithm
{
  public:
    static constexpr const char *NAME = "check-coverage";
    static constexpr const char *DESCRIPTION =
        "Check a polygon coverage for validity";
    static constexpr const char *HELP_URL =
        "/programs/gdal_vector_check_coverage.html";

    explicit GDALVectorCheckCoverageAlgorithm(bool standaloneStep = false);

  private:
    bool RunStep(GDALPipelineStepRunContext &ctxt) override;

    std::string m_geomField{};
    bool m_includeValid{false};
    double m_maximumGapWidth{};
};

/************************************************************************/
/*                 GDALVectorCheckCoverageAlgorithmStandalone           */
/************************************************************************/

class GDALVectorCheckCoverageAlgorithmStandalone final
    : public GDALVectorCheckCoverageAlgorithm
{
  public:
    GDALVectorCheckCoverageAlgorithmStandalone()
        : GDALVectorCheckCoverageAlgorithm(/* standaloneStep = */ true)
    {
    }

    ~GDALVectorCheckCoverageAlgorithmStandalone() override;
};

//! @endcond

#endif /* GDALALG_VECTOR_CHECK_COVERAGE_INCLUDED */