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 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
|
/******************************************************************************
*
* Project: S-57 Reader
* Purpose: Implements polygon assembly from a bunch of arcs.
* Author: Frank Warmerdam, warmerdam@pobox.com
*
******************************************************************************
* Copyright (c) 1999, Frank Warmerdam
* Copyright (c) 2009-2011, Even Rouault <even dot rouault at spatialys.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
****************************************************************************/
#include "cpl_port.h"
#include "ogr_api.h"
#include <cmath>
#include <cstddef>
#include <list>
#include <vector>
#include "ogr_core.h"
#include "ogr_geometry.h"
#include "cpl_conv.h"
#include "cpl_error.h"
/************************************************************************/
/* CheckPoints() */
/* */
/* Check if two points are closer than the current best */
/* distance. Update the current best distance if they are. */
/************************************************************************/
static bool CheckPoints(OGRLineString *poLine1, int iPoint1,
OGRLineString *poLine2, int iPoint2,
double *pdfDistance)
{
if (pdfDistance == nullptr || *pdfDistance == 0)
{
if (poLine1->getX(iPoint1) == poLine2->getX(iPoint2) &&
poLine1->getY(iPoint1) == poLine2->getY(iPoint2))
{
if (pdfDistance)
*pdfDistance = 0.0;
return true;
}
return false;
}
const double dfDeltaX =
std::abs(poLine1->getX(iPoint1) - poLine2->getX(iPoint2));
if (dfDeltaX > *pdfDistance)
return false;
const double dfDeltaY =
std::abs(poLine1->getY(iPoint1) - poLine2->getY(iPoint2));
if (dfDeltaY > *pdfDistance)
return false;
const double dfDistance = sqrt(dfDeltaX * dfDeltaX + dfDeltaY * dfDeltaY);
if (dfDistance < *pdfDistance)
{
*pdfDistance = dfDistance;
return true;
}
return false;
}
/************************************************************************/
/* AddEdgeToRing() */
/************************************************************************/
static void AddEdgeToRing(OGRLinearRing *poRing, OGRLineString *poLine,
bool bReverse, double dfTolerance)
{
/* -------------------------------------------------------------------- */
/* Establish order and range of traverse. */
/* -------------------------------------------------------------------- */
const int nVertToAdd = poLine->getNumPoints();
int iStart = bReverse ? nVertToAdd - 1 : 0;
const int iEnd = bReverse ? 0 : nVertToAdd - 1;
const int iStep = bReverse ? -1 : 1;
/* -------------------------------------------------------------------- */
/* Should we skip a repeating vertex? */
/* -------------------------------------------------------------------- */
if (poRing->getNumPoints() > 0 &&
CheckPoints(poRing, poRing->getNumPoints() - 1, poLine, iStart,
&dfTolerance))
{
iStart += iStep;
}
poRing->addSubLineString(poLine, iStart, iEnd);
}
/************************************************************************/
/* OGRBuildPolygonFromEdges() */
/************************************************************************/
/**
* Build a ring from a bunch of arcs.
*
* @param hLines handle to an OGRGeometryCollection (or OGRMultiLineString)
* containing the line string geometries to be built into rings.
* @param bBestEffort not yet implemented???.
* @param bAutoClose indicates if the ring should be close when first and
* last points of the ring are the same.
* @param dfTolerance tolerance into which two arcs are considered
* close enough to be joined.
* @param peErr OGRERR_NONE on success, or OGRERR_FAILURE on failure.
* @return a handle to the new geometry, a polygon.
*
*/
OGRGeometryH OGRBuildPolygonFromEdges(OGRGeometryH hLines,
CPL_UNUSED int bBestEffort,
int bAutoClose, double dfTolerance,
OGRErr *peErr)
{
if (hLines == nullptr)
{
if (peErr != nullptr)
*peErr = OGRERR_NONE;
return nullptr;
}
/* -------------------------------------------------------------------- */
/* Check for the case of a geometrycollection that can be */
/* promoted to MultiLineString. */
/* -------------------------------------------------------------------- */
OGRGeometry *poGeom = reinterpret_cast<OGRGeometry *>(hLines);
if (wkbFlatten(poGeom->getGeometryType()) == wkbGeometryCollection)
{
for (auto &&poMember : poGeom->toGeometryCollection())
{
if (wkbFlatten(poMember->getGeometryType()) != wkbLineString)
{
if (peErr != nullptr)
*peErr = OGRERR_FAILURE;
CPLError(CE_Failure, CPLE_NotSupported,
"The geometry collection contains "
"non-line string geometries");
return nullptr;
}
}
}
else if (wkbFlatten(poGeom->getGeometryType()) != wkbMultiLineString)
{
if (peErr != nullptr)
*peErr = OGRERR_FAILURE;
CPLError(CE_Failure, CPLE_NotSupported,
"The passed geometry is not an OGRGeometryCollection "
"(or OGRMultiLineString) "
"containing line string geometries");
return nullptr;
}
bool bSuccess = true;
OGRGeometryCollection *poLines = poGeom->toGeometryCollection();
std::vector<OGRLinearRing *> apoRings;
/* -------------------------------------------------------------------- */
/* Setup array of line markers indicating if they have been */
/* added to a ring yet. */
/* -------------------------------------------------------------------- */
const int nEdges = poLines->getNumGeometries();
std::list<OGRLineString *> oListEdges;
for (int i = 0; i < nEdges; i++)
{
OGRLineString *poLine = poLines->getGeometryRef(i)->toLineString();
if (poLine->getNumPoints() >= 2)
{
oListEdges.push_back(poLine);
}
}
/* ==================================================================== */
/* Loop generating rings. */
/* ==================================================================== */
while (!oListEdges.empty())
{
/* --------------------------------------------------------------------
*/
/* Find the first unconsumed edge. */
/* --------------------------------------------------------------------
*/
OGRLineString *poLine = oListEdges.front();
oListEdges.erase(oListEdges.begin());
/* --------------------------------------------------------------------
*/
/* Start a new ring, copying in the current line directly */
/* --------------------------------------------------------------------
*/
OGRLinearRing *poRing = new OGRLinearRing();
AddEdgeToRing(poRing, poLine, FALSE, 0);
/* ====================================================================
*/
/* Loop adding edges to this ring until we make a whole pass */
/* within finding anything to add. */
/* ====================================================================
*/
bool bWorkDone = true;
double dfBestDist = dfTolerance;
while (!CheckPoints(poRing, 0, poRing, poRing->getNumPoints() - 1,
nullptr) &&
!oListEdges.empty() && bWorkDone)
{
bool bReverse = false;
bWorkDone = false;
dfBestDist = dfTolerance;
// We consider linking the end to the beginning. If this is
// closer than any other option we will just close the loop.
// CheckPoints(poRing, 0, poRing, poRing->getNumPoints()-1,
// &dfBestDist);
// Find unused edge with end point closest to our loose end.
OGRLineString *poBestEdge = nullptr;
std::list<OGRLineString *>::iterator oBestIter;
for (auto oIter = oListEdges.begin(); oIter != oListEdges.end();
++oIter)
{
poLine = *oIter;
if (CheckPoints(poLine, 0, poRing, poRing->getNumPoints() - 1,
&dfBestDist))
{
poBestEdge = poLine;
oBestIter = oIter;
bReverse = false;
}
if (CheckPoints(poLine, poLine->getNumPoints() - 1, poRing,
poRing->getNumPoints() - 1, &dfBestDist))
{
poBestEdge = poLine;
oBestIter = oIter;
bReverse = true;
}
// If we found an exact match, jump now.
if (dfBestDist == 0.0 && poBestEdge != nullptr)
break;
}
// We found one within tolerance - add it.
if (poBestEdge)
{
AddEdgeToRing(poRing, poBestEdge, bReverse, dfTolerance);
oListEdges.erase(oBestIter);
bWorkDone = true;
}
}
/* --------------------------------------------------------------------
*/
/* Did we fail to complete the ring? */
/* --------------------------------------------------------------------
*/
dfBestDist = dfTolerance;
if (!CheckPoints(poRing, 0, poRing, poRing->getNumPoints() - 1,
&dfBestDist))
{
CPLDebug("OGR",
"Failed to close ring %d.\n"
"End Points are: (%.8f,%.7f) and (%.7f,%.7f)",
static_cast<int>(apoRings.size()), poRing->getX(0),
poRing->getY(0), poRing->getX(poRing->getNumPoints() - 1),
poRing->getY(poRing->getNumPoints() - 1));
bSuccess = false;
}
/* --------------------------------------------------------------------
*/
/* Do we need to auto-close this ring? */
/* --------------------------------------------------------------------
*/
dfBestDist = dfTolerance;
if (bAutoClose)
{
if (!CheckPoints(poRing, 0, poRing, poRing->getNumPoints() - 1,
&dfBestDist))
{
poRing->addPoint(poRing->getX(0), poRing->getY(0),
poRing->getZ(0));
}
else if (!CheckPoints(poRing, 0, poRing, poRing->getNumPoints() - 1,
nullptr))
{
// The endpoints are very close but do not exactly match.
// Alter the last one so it is equal to the first, to prevent
// invalid self-intersecting rings.
poRing->setPoint(poRing->getNumPoints() - 1, poRing->getX(0),
poRing->getY(0), poRing->getZ(0));
}
}
apoRings.push_back(poRing);
} // Next ring.
/* -------------------------------------------------------------------- */
/* Identify exterior ring - it will be the largest. #3610 */
/* -------------------------------------------------------------------- */
double maxarea = 0.0;
int maxring = -1;
OGREnvelope tenv;
for (int rn = 0; rn < static_cast<int>(apoRings.size()); ++rn)
{
apoRings[rn]->getEnvelope(&tenv);
const double tarea = (tenv.MaxX - tenv.MinX) * (tenv.MaxY - tenv.MinY);
if (tarea > maxarea)
{
maxarea = tarea;
maxring = rn;
}
}
OGRPolygon *poPolygon = new OGRPolygon();
if (maxring != -1)
{
poPolygon->addRingDirectly(apoRings[maxring]);
for (int rn = 0; rn < static_cast<int>(apoRings.size()); ++rn)
{
if (rn == maxring)
continue;
poPolygon->addRingDirectly(apoRings[rn]);
}
}
else
{
for (auto &poRing : apoRings)
delete poRing;
}
if (peErr != nullptr)
{
*peErr = bSuccess ? OGRERR_NONE : OGRERR_FAILURE;
}
return reinterpret_cast<OGRGeometryH>(poPolygon);
}
|