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 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617
|
/******************************************************************************
* $Id: ogrlinearring.cpp 24520 2012-05-30 21:30:11Z rouault $
*
* Project: OpenGIS Simple Features Reference Implementation
* Purpose: The OGRLinearRing geometry class.
* Author: Frank Warmerdam, warmerdam@pobox.com
*
******************************************************************************
* Copyright (c) 1999, Frank Warmerdam
*
* 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 "ogr_geometry.h"
#include "ogr_p.h"
CPL_CVSID("$Id: ogrlinearring.cpp 24520 2012-05-30 21:30:11Z rouault $");
/************************************************************************/
/* OGRLinearRing() */
/************************************************************************/
OGRLinearRing::OGRLinearRing()
{
}
/************************************************************************/
/* ~OGRLinearRing() */
/************************************************************************/
OGRLinearRing::~OGRLinearRing()
{
}
/************************************************************************/
/* OGRLinearRing() */
/************************************************************************/
OGRLinearRing::OGRLinearRing( OGRLinearRing * poSrcRing )
{
if( poSrcRing == NULL )
{
CPLDebug( "OGR", "OGRLinearRing::OGRLinearRing(OGRLinearRing*poSrcRing) - passed in ring is NULL!" );
return;
}
setNumPoints( poSrcRing->getNumPoints() );
memcpy( paoPoints, poSrcRing->paoPoints,
sizeof(OGRRawPoint) * getNumPoints() );
if( poSrcRing->padfZ )
{
Make3D();
memcpy( padfZ, poSrcRing->padfZ, sizeof(double) * getNumPoints() );
}
}
/************************************************************************/
/* getGeometryName() */
/************************************************************************/
const char * OGRLinearRing::getGeometryName() const
{
return "LINEARRING";
}
/************************************************************************/
/* WkbSize() */
/* */
/* Disable this method. */
/************************************************************************/
int OGRLinearRing::WkbSize() const
{
return 0;
}
/************************************************************************/
/* importFromWkb() */
/* */
/* Disable method for this class. */
/************************************************************************/
OGRErr OGRLinearRing::importFromWkb( unsigned char *pabyData, int nSize )
{
(void) pabyData;
(void) nSize;
return OGRERR_UNSUPPORTED_OPERATION;
}
/************************************************************************/
/* exportToWkb() */
/* */
/* Disable method for this class. */
/************************************************************************/
OGRErr OGRLinearRing::exportToWkb( OGRwkbByteOrder eByteOrder,
unsigned char * pabyData ) const
{
(void) eByteOrder;
(void) pabyData;
return OGRERR_UNSUPPORTED_OPERATION;
}
/************************************************************************/
/* _importFromWkb() */
/* */
/* Helper method for OGRPolygon. NOT A NORMAL importFromWkb() */
/* method! */
/************************************************************************/
OGRErr OGRLinearRing::_importFromWkb( OGRwkbByteOrder eByteOrder, int b3D,
unsigned char * pabyData,
int nBytesAvailable )
{
if( nBytesAvailable < 4 && nBytesAvailable != -1 )
return OGRERR_NOT_ENOUGH_DATA;
/* -------------------------------------------------------------------- */
/* Get the vertex count. */
/* -------------------------------------------------------------------- */
int nNewNumPoints;
memcpy( &nNewNumPoints, pabyData, 4 );
if( OGR_SWAP( eByteOrder ) )
nNewNumPoints = CPL_SWAP32(nNewNumPoints);
/* Check if the wkb stream buffer is big enough to store
* fetched number of points.
* 16 or 24 - size of point structure
*/
int nPointSize = (b3D ? 24 : 16);
if (nNewNumPoints < 0 || nNewNumPoints > INT_MAX / nPointSize)
return OGRERR_CORRUPT_DATA;
int nBufferMinSize = nPointSize * nNewNumPoints;
if( nBytesAvailable != -1 && nBufferMinSize > nBytesAvailable - 4 )
{
CPLError( CE_Failure, CPLE_AppDefined,
"Length of input WKB is too small" );
return OGRERR_NOT_ENOUGH_DATA;
}
/* (Re)Allocation of paoPoints buffer. */
setNumPoints( nNewNumPoints );
if( b3D )
Make3D();
else
Make2D();
/* -------------------------------------------------------------------- */
/* Get the vertices */
/* -------------------------------------------------------------------- */
int i = 0;
if( !b3D )
{
memcpy( paoPoints, pabyData + 4, 16 * nPointCount );
}
else
{
for( int i = 0; i < nPointCount; i++ )
{
memcpy( &(paoPoints[i].x), pabyData + 4 + 24 * i, 8 );
memcpy( &(paoPoints[i].y), pabyData + 4 + 24 * i + 8, 8 );
memcpy( padfZ + i, pabyData + 4 + 24 * i + 16, 8 );
}
}
/* -------------------------------------------------------------------- */
/* Byte swap if needed. */
/* -------------------------------------------------------------------- */
if( OGR_SWAP( eByteOrder ) )
{
for( i = 0; i < nPointCount; i++ )
{
CPL_SWAPDOUBLE( &(paoPoints[i].x) );
CPL_SWAPDOUBLE( &(paoPoints[i].y) );
if( b3D )
{
CPL_SWAPDOUBLE( padfZ + i );
}
}
}
return OGRERR_NONE;
}
/************************************************************************/
/* _exportToWkb() */
/* */
/* Helper method for OGRPolygon. THIS IS NOT THE NORMAL */
/* exportToWkb() METHOD! */
/************************************************************************/
OGRErr OGRLinearRing::_exportToWkb( OGRwkbByteOrder eByteOrder, int b3D,
unsigned char * pabyData ) const
{
int i, nWords;
/* -------------------------------------------------------------------- */
/* Copy in the raw data. */
/* -------------------------------------------------------------------- */
memcpy( pabyData, &nPointCount, 4 );
/* -------------------------------------------------------------------- */
/* Copy in the raw data. */
/* -------------------------------------------------------------------- */
if( b3D )
{
nWords = 3 * nPointCount;
for( i = 0; i < nPointCount; i++ )
{
memcpy( pabyData+4+i*24, &(paoPoints[i].x), 8 );
memcpy( pabyData+4+i*24+8, &(paoPoints[i].y), 8 );
if( padfZ == NULL )
memset( pabyData+4+i*24+16, 0, 8 );
else
memcpy( pabyData+4+i*24+16, padfZ + i, 8 );
}
}
else
{
nWords = 2 * nPointCount;
memcpy( pabyData+4, paoPoints, 16 * nPointCount );
}
/* -------------------------------------------------------------------- */
/* Swap if needed. */
/* -------------------------------------------------------------------- */
if( OGR_SWAP( eByteOrder ) )
{
int nCount;
nCount = CPL_SWAP32( nPointCount );
memcpy( pabyData, &nCount, 4 );
for( i = 0; i < nWords; i++ )
{
CPL_SWAPDOUBLE( pabyData + 4 + 8 * i );
}
}
return OGRERR_NONE;
}
/************************************************************************/
/* _WkbSize() */
/* */
/* Helper method for OGRPolygon. NOT THE NORMAL WkbSize() METHOD! */
/************************************************************************/
int OGRLinearRing::_WkbSize( int b3D ) const
{
if( b3D )
return 4 + 24 * nPointCount;
else
return 4 + 16 * nPointCount;
}
/************************************************************************/
/* clone() */
/* */
/* We override the OGRCurve clone() to ensure that we get the */
/* correct virtual table. */
/************************************************************************/
OGRGeometry *OGRLinearRing::clone() const
{
OGRLinearRing *poNewLinearRing;
poNewLinearRing = new OGRLinearRing();
poNewLinearRing->assignSpatialReference( getSpatialReference() );
poNewLinearRing->setPoints( nPointCount, paoPoints, padfZ );
return poNewLinearRing;
}
/************************************************************************/
/* epsilonEqual() */
/************************************************************************/
static const double EPSILON = 1E-5;
static inline bool epsilonEqual(double a, double b, double eps)
{
return (::fabs(a - b) < eps);
}
/************************************************************************/
/* isClockwise() */
/************************************************************************/
/**
* \brief Returns TRUE if the ring has clockwise winding (or less than 2 points)
*
* @return TRUE if clockwise otherwise FALSE.
*/
int OGRLinearRing::isClockwise() const
{
int i, v, next;
double dx0, dy0, dx1, dy1, crossproduct;
int bUseFallback = FALSE;
if( nPointCount < 2 )
return TRUE;
/* Find the lowest rightmost vertex */
v = 0;
for ( i = 1; i < nPointCount - 1; i++ )
{
/* => v < end */
if ( paoPoints[i].y< paoPoints[v].y ||
( paoPoints[i].y== paoPoints[v].y &&
paoPoints[i].x > paoPoints[v].x ) )
{
v = i;
}
}
/* previous */
next = v - 1;
if ( next < 0 )
{
next = nPointCount - 1 - 1;
}
if( epsilonEqual(paoPoints[next].x, paoPoints[v].x, EPSILON) &&
epsilonEqual(paoPoints[next].y, paoPoints[v].y, EPSILON) )
{
/* Don't try to be too clever by retrying with a next point */
/* This can lead to false results as in the case of #3356 */
bUseFallback = TRUE;
}
dx0 = paoPoints[next].x - paoPoints[v].x;
dy0 = paoPoints[next].y - paoPoints[v].y;
/* following */
next = v + 1;
if ( next >= nPointCount - 1 )
{
next = 0;
}
if( epsilonEqual(paoPoints[next].x, paoPoints[v].x, EPSILON) &&
epsilonEqual(paoPoints[next].y, paoPoints[v].y, EPSILON) )
{
/* Don't try to be too clever by retrying with a next point */
/* This can lead to false results as in the case of #3356 */
bUseFallback = TRUE;
}
dx1 = paoPoints[next].x - paoPoints[v].x;
dy1 = paoPoints[next].y - paoPoints[v].y;
crossproduct = dx1 * dy0 - dx0 * dy1;
if (!bUseFallback)
{
if ( crossproduct > 0 ) /* CCW */
return FALSE;
else if ( crossproduct < 0 ) /* CW */
return TRUE;
}
/* ok, this is a degenerate case : the extent of the polygon is less than EPSILON */
/* or 2 nearly identical points were found */
/* Try with Green Formula as a fallback, but this is not a guarantee */
/* as we'll probably be affected by numerical instabilities */
double dfSum = paoPoints[0].x * (paoPoints[1].y - paoPoints[nPointCount-1].y);
for (i=1; i<nPointCount-1; i++) {
dfSum += paoPoints[i].x * (paoPoints[i+1].y - paoPoints[i-1].y);
}
dfSum += paoPoints[nPointCount-1].x * (paoPoints[0].y - paoPoints[nPointCount-2].y);
return dfSum < 0;
}
/************************************************************************/
/* reverseWindingOrder() */
/************************************************************************/
void OGRLinearRing::reverseWindingOrder()
{
int pos = 0;
OGRPoint pointA, pointB;
for( int i = 0; i < nPointCount / 2; i++ )
{
getPoint( i, &pointA );
pos = nPointCount - i - 1;
getPoint( pos, &pointB );
setPoint( i, &pointB );
setPoint( pos, &pointA );
}
}
/************************************************************************/
/* closeRing() */
/************************************************************************/
void OGRLinearRing::closeRings()
{
if( nPointCount < 2 )
return;
if( getX(0) != getX(nPointCount-1)
|| getY(0) != getY(nPointCount-1)
|| getZ(0) != getZ(nPointCount-1) )
{
OGRPoint oFirstPoint;
getPoint( 0, &oFirstPoint );
addPoint( &oFirstPoint );
}
}
/************************************************************************/
/* get_Area() */
/************************************************************************/
/**
* \brief Compute area of ring.
*
* The area is computed according to Green's Theorem:
*
* Area is "Sum(x(i)*(y(i+1) - y(i-1)))/2" for i = 0 to pointCount-1,
* assuming the last point is a duplicate of the first.
*
* @return computed area.
*/
double OGRLinearRing::get_Area() const
{
double dfAreaSum = 0.0;
int i;
if( nPointCount < 2 )
return 0;
dfAreaSum = paoPoints[0].x * (paoPoints[1].y - paoPoints[nPointCount-1].y);
for( i = 1; i < nPointCount-1; i++ )
{
dfAreaSum += paoPoints[i].x * (paoPoints[i+1].y - paoPoints[i-1].y);
}
dfAreaSum += paoPoints[nPointCount-1].x * (paoPoints[0].y - paoPoints[nPointCount-2].y);
return 0.5 * fabs(dfAreaSum);
}
/************************************************************************/
/* isPointInRing() */
/************************************************************************/
OGRBoolean OGRLinearRing::isPointInRing(const OGRPoint* poPoint, int bTestEnvelope) const
{
if ( NULL == poPoint )
{
CPLDebug( "OGR", "OGRLinearRing::isPointInRing(const OGRPoint* poPoint) - passed point is NULL!" );
return 0;
}
const int iNumPoints = getNumPoints();
// Simple validation
if ( iNumPoints < 4 )
return 0;
const double dfTestX = poPoint->getX();
const double dfTestY = poPoint->getY();
// Fast test if point is inside extent of the ring
if (bTestEnvelope)
{
OGREnvelope extent;
getEnvelope(&extent);
if ( !( dfTestX >= extent.MinX && dfTestX <= extent.MaxX
&& dfTestY >= extent.MinY && dfTestY <= extent.MaxY ) )
{
return 0;
}
}
// For every point p in ring,
// test if ray starting from given point crosses segment (p - 1, p)
int iNumCrossings = 0;
for ( int iPoint = 1; iPoint < iNumPoints; iPoint++ )
{
const int iPointPrev = iPoint - 1;
const double x1 = getX(iPoint) - dfTestX;
const double y1 = getY(iPoint) - dfTestY;
const double x2 = getX(iPointPrev) - dfTestX;
const double y2 = getY(iPointPrev) - dfTestY;
if( ( ( y1 > 0 ) && ( y2 <= 0 ) ) || ( ( y2 > 0 ) && ( y1 <= 0 ) ) )
{
// Check if ray intersects with segment of the ring
const double dfIntersection = ( x1 * y2 - x2 * y1 ) / (y2 - y1);
if ( 0.0 < dfIntersection )
{
// Count intersections
iNumCrossings++;
}
}
}
// If iNumCrossings number is even, given point is outside the ring,
// when the crossings number is odd, the point is inside the ring.
return ( ( iNumCrossings % 2 ) == 1 ? 1 : 0 );
}
/************************************************************************/
/* isPointOnRingBoundary() */
/************************************************************************/
OGRBoolean OGRLinearRing::isPointOnRingBoundary(const OGRPoint* poPoint, int bTestEnvelope) const
{
if ( NULL == poPoint )
{
CPLDebug( "OGR", "OGRLinearRing::isPointOnRingBoundary(const OGRPoint* poPoint) - passed point is NULL!" );
return 0;
}
const int iNumPoints = getNumPoints();
// Simple validation
if ( iNumPoints < 4 )
return 0;
const double dfTestX = poPoint->getX();
const double dfTestY = poPoint->getY();
// Fast test if point is inside extent of the ring
OGREnvelope extent;
getEnvelope(&extent);
if ( !( dfTestX >= extent.MinX && dfTestX <= extent.MaxX
&& dfTestY >= extent.MinY && dfTestY <= extent.MaxY ) )
{
return 0;
}
for ( int iPoint = 1; iPoint < iNumPoints; iPoint++ )
{
const int iPointPrev = iPoint - 1;
const double x1 = getX(iPoint) - dfTestX;
const double y1 = getY(iPoint) - dfTestY;
const double x2 = getX(iPointPrev) - dfTestX;
const double y2 = getY(iPointPrev) - dfTestY;
/* If iPoint and iPointPrev are the same, go on */
if (x1 == x2 && y1 == y2)
{
continue;
}
/* If the point is on the segment, return immediatly */
/* FIXME? If the test point is not exactly identical to one of */
/* the vertices of the ring, but somewhere on a segment, there's */
/* little chance that we get 0. So that should be tested against some epsilon */
if ( x1 * y2 - x2 * y1 == 0 )
{
return 1;
}
}
return 0;
}
|