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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
|
/******************************************************************************
*
* Project: GDAL
* Purpose: "gdal vector check-coverage" subcommand
* Author: Daniel Baston
*
******************************************************************************
* Copyright (c) 2025, ISciences LLC
*
* SPDX-License-Identifier: MIT
****************************************************************************/
#include "gdalalg_vector_check_coverage.h"
#include "cpl_error.h"
#include "gdal_priv.h"
#include "gdalalg_vector_geom.h"
#include "ogr_geometry.h"
#include "ogr_geos.h"
#include <cinttypes>
#ifndef _
#define _(x) (x)
#endif
//! @cond Doxygen_Suppress
GDALVectorCheckCoverageAlgorithm::GDALVectorCheckCoverageAlgorithm(
bool standaloneStep)
: GDALVectorPipelineStepAlgorithm(NAME, DESCRIPTION, HELP_URL,
standaloneStep)
{
AddArg("include-valid", 0,
_("Include valid inputs in output, with empty geometry"),
&m_includeValid);
AddArg("geometry-field", 0, _("Name of geometry field to check"),
&m_geomField);
AddArg("maximum-gap-width", 0, _("Maximum width of a gap to be flagged"),
&m_maximumGapWidth)
.SetMinValueIncluded(0);
}
#if defined HAVE_GEOS && \
(GEOS_VERSION_MAJOR > 3 || \
(GEOS_VERSION_MAJOR == 3 && GEOS_VERSION_MINOR >= 12))
class GDALVectorCheckCoverageOutputDataset final
: public GDALGeosNonStreamingAlgorithmDataset
{
public:
explicit GDALVectorCheckCoverageOutputDataset(double maximumGapWidth,
bool includeValid)
: m_maximumGapWidth(maximumGapWidth), m_includeValid(includeValid)
{
}
~GDALVectorCheckCoverageOutputDataset() override;
bool PolygonsOnly() const override
{
return true;
}
bool SkipEmpty() const override
{
return !m_includeValid;
}
bool ProcessGeos() override
{
// Perform coverage checking
GEOSGeometry *coll = GEOSGeom_createCollection_r(
m_poGeosContext, GEOS_GEOMETRYCOLLECTION, m_apoGeosInputs.data(),
static_cast<unsigned int>(m_apoGeosInputs.size()));
if (coll == nullptr)
{
return false;
}
m_apoGeosInputs.clear();
int geos_result =
GEOSCoverageIsValid_r(m_poGeosContext, coll, m_maximumGapWidth,
&m_poGeosResultAsCollection);
GEOSGeom_destroy_r(m_poGeosContext, coll);
CPLDebug("CoverageIsValid", "%d", geos_result);
return geos_result != 2;
}
private:
const double m_maximumGapWidth;
const bool m_includeValid;
};
GDALVectorCheckCoverageOutputDataset::~GDALVectorCheckCoverageOutputDataset() =
default;
bool GDALVectorCheckCoverageAlgorithm::RunStep(GDALPipelineStepRunContext &)
{
auto poSrcDS = m_inputDataset[0].GetDatasetRef();
auto poDstDS = std::make_unique<GDALVectorCheckCoverageOutputDataset>(
m_maximumGapWidth, m_includeValid);
const bool bSingleLayerOutput = m_inputLayerNames.empty()
? poSrcDS->GetLayerCount() == 1
: m_inputLayerNames.size() == 1;
for (auto &&poSrcLayer : poSrcDS->GetLayers())
{
if (m_inputLayerNames.empty() ||
std::find(m_inputLayerNames.begin(), m_inputLayerNames.end(),
poSrcLayer->GetDescription()) != m_inputLayerNames.end())
{
const auto poSrcLayerDefn = poSrcLayer->GetLayerDefn();
if (poSrcLayerDefn->GetGeomFieldCount() == 0)
{
if (m_inputLayerNames.empty())
continue;
ReportError(CE_Failure, CPLE_AppDefined,
"Specified layer '%s' has no geometry field",
poSrcLayer->GetDescription());
return false;
}
const int geomFieldIndex =
m_geomField.empty()
? 0
: poSrcLayerDefn->GetGeomFieldIndex(m_geomField.c_str());
if (geomFieldIndex == -1)
{
ReportError(CE_Failure, CPLE_AppDefined,
"Specified geometry field '%s' does not exist in "
"layer '%s'",
m_geomField.c_str(), poSrcLayer->GetDescription());
return false;
}
OGRFeatureDefn defn(bSingleLayerOutput
? "invalid_edge"
: std::string("invalid_edge_")
.append(poSrcLayer->GetDescription())
.c_str());
defn.SetGeomType(wkbMultiLineString);
defn.GetGeomFieldDefn(0)->SetSpatialRef(
poSrcLayerDefn->GetGeomFieldDefn(geomFieldIndex)
->GetSpatialRef());
poDstDS->SetSourceGeometryField(geomFieldIndex);
if (!poDstDS->AddProcessedLayer(*poSrcLayer, defn))
{
return false;
}
}
}
m_outputDataset.Set(std::move(poDstDS));
return true;
}
#else
bool GDALVectorCheckCoverageAlgorithm::RunStep(GDALPipelineStepRunContext &)
{
ReportError(CE_Failure, CPLE_AppDefined,
"%s requires GDAL to be built against version 3.12 or later of "
"the GEOS library.",
NAME);
return false;
}
#endif // HAVE_GEOS
GDALVectorCheckCoverageAlgorithmStandalone::
~GDALVectorCheckCoverageAlgorithmStandalone() = default;
//! @endcond
|