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 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018
|
/**********************************************************************
* $Id: OverlayOp.cpp 1932 2006-12-05 10:42:05Z strk $
*
* GEOS - Geometry Engine Open Source
* http://geos.refractions.net
*
* Copyright (C) 2005-2006 Refractions Research Inc.
* Copyright (C) 2001-2002 Vivid Solutions Inc.
*
* This is free software; you can redistribute and/or modify it under
* the terms of the GNU Lesser General Public Licence as published
* by the Free Software Foundation.
* See the COPYING file for more information.
*
***********************************************************************
*
* Last port: operation/overlay/OverlayOp.java rev. 1.23
*
**********************************************************************/
#include <geos/operation/overlay/OverlayOp.h>
#include <geos/operation/overlay/OverlayResultValidator.h>
#include <geos/operation/overlay/ElevationMatrix.h>
#include <geos/operation/overlay/OverlayNodeFactory.h>
#include <geos/operation/overlay/PolygonBuilder.h>
#include <geos/operation/overlay/LineBuilder.h>
#include <geos/operation/overlay/PointBuilder.h>
#include <geos/geom/Geometry.h>
#include <geos/geom/Coordinate.h>
#include <geos/geom/GeometryFactory.h>
#include <geos/geom/Polygon.h>
#include <geos/geom/LineString.h>
#include <geos/geom/Point.h>
#include <geos/geom/PrecisionModel.h>
#include <geos/geomgraph/Label.h>
#include <geos/geomgraph/Edge.h>
#include <geos/geomgraph/Node.h>
#include <geos/geomgraph/GeometryGraph.h>
#include <geos/geomgraph/EdgeEndStar.h>
#include <geos/geomgraph/DirectedEdgeStar.h>
#include <geos/geomgraph/DirectedEdge.h>
#include <geos/geomgraph/Position.h>
#include <geos/geomgraph/index/SegmentIntersector.h>
#include <geos/util/TopologyException.h>
#include <geos/precision/SimpleGeometryPrecisionReducer.h>
#include <geos/geomgraph/EdgeNodingValidator.h>
#include <cassert>
#include <functional>
#include <vector>
#include <sstream>
#include <memory> // for auto_ptr
#ifndef GEOS_DEBUG
#define GEOS_DEBUG 0
#endif
#define COMPUTE_Z 1
#define USE_ELEVATION_MATRIX 1
#define USE_INPUT_AVGZ 0
// A result validator using FuzzyPointLocator to
// check validity of result. Pretty expensive...
//#define ENABLE_OVERLAY_RESULT_VALIDATOR 1
// Edge noding validator, more lightweighted and
// catches robustness errors earlier
#define ENABLE_EDGE_NODING_VALIDATOR 1
// Define this to get some reports about validations
//#define GEOS_DEBUG_VALIDATION 1
// Other validators, not found in JTS
//#define ENABLE_OTHER_OVERLAY_RESULT_VALIDATORS 1
using namespace std;
using namespace geos::geom;
using namespace geos::geomgraph;
using namespace geos::algorithm;
namespace geos {
namespace operation { // geos.operation
namespace overlay { // geos.operation.overlay
/* static public */
Geometry*
OverlayOp::overlayOp(const Geometry *geom0, const Geometry *geom1,
OverlayOp::OpCode opCode)
// throw(TopologyException *)
{
OverlayOp gov(geom0, geom1);
return gov.getResultGeometry(opCode);
}
/* static public */
bool
OverlayOp::isResultOfOp(Label *label, OverlayOp::OpCode opCode)
{
int loc0=label->getLocation(0);
int loc1=label->getLocation(1);
return isResultOfOp(loc0, loc1, opCode);
}
/* static public */
bool
OverlayOp::isResultOfOp(int loc0, int loc1, OverlayOp::OpCode opCode)
{
if (loc0==Location::BOUNDARY) loc0=Location::INTERIOR;
if (loc1==Location::BOUNDARY) loc1=Location::INTERIOR;
switch (opCode) {
case opINTERSECTION:
return loc0==Location::INTERIOR && loc1==Location::INTERIOR;
case opUNION:
return loc0==Location::INTERIOR || loc1==Location::INTERIOR;
case opDIFFERENCE:
return loc0==Location::INTERIOR && loc1!=Location::INTERIOR;
case opSYMDIFFERENCE:
return (loc0==Location::INTERIOR && loc1!=Location::INTERIOR)
|| (loc0!=Location::INTERIOR && loc1==Location::INTERIOR);
}
return false;
}
OverlayOp::OverlayOp(const Geometry *g0, const Geometry *g1)
:
// this builds graphs in arg[0] and arg[1]
GeometryGraphOperation(g0, g1),
/*
* Use factory of primary geometry.
* Note that this does NOT handle mixed-precision arguments
* where the second arg has greater precision than the first.
*/
geomFact(g0->getFactory()),
resultGeom(NULL),
graph(OverlayNodeFactory::instance()),
resultPolyList(NULL),
resultLineList(NULL),
resultPointList(NULL)
{
#if COMPUTE_Z
#if USE_INPUT_AVGZ
avgz[0] = DoubleNotANumber;
avgz[1] = DoubleNotANumber;
avgzcomputed[0] = false;
avgzcomputed[1] = false;
#endif // USE_INPUT_AVGZ
Envelope env(*(g0->getEnvelopeInternal()));
env.expandToInclude(g1->getEnvelopeInternal());
#if USE_ELEVATION_MATRIX
elevationMatrix = new ElevationMatrix(env, 3, 3);
elevationMatrix->add(g0);
elevationMatrix->add(g1);
#if GEOS_DEBUG
cerr<<elevationMatrix->print()<<endl;
#endif
#endif // USE_ELEVATION_MATRIX
#endif // COMPUTE_Z
}
OverlayOp::~OverlayOp()
{
//delete edgeList;
delete resultPolyList;
delete resultLineList;
delete resultPointList;
for (size_t i=0; i<dupEdges.size(); i++)
delete dupEdges[i];
#if USE_ELEVATION_MATRIX
delete elevationMatrix;
#endif
}
/*public*/
Geometry*
OverlayOp::getResultGeometry(OverlayOp::OpCode funcCode)
//throw(TopologyException *)
{
computeOverlay(funcCode);
return resultGeom;
}
/*private*/
void
OverlayOp::insertUniqueEdges(vector<Edge*> *edges)
{
for_each(edges->begin(), edges->end(),
bind1st(mem_fun(&OverlayOp::insertUniqueEdge), this));
#if GEOS_DEBUG
cerr<<"OverlayOp::insertUniqueEdges("<<edges->size()<<"): "<<endl;
for(size_t i=0;i<edges->size();i++) {
Edge *e=(*edges)[i];
if ( ! e ) cerr <<" NULL"<<endl;
cerr <<" "<< e->print() << endl;
}
#endif // GEOS_DEBUG
}
/*private*/
void
OverlayOp::replaceCollapsedEdges()
{
vector<Edge*>& edges=edgeList.getEdges();
for(size_t i=0, nedges=edges.size(); i<nedges; ++i)
{
Edge *e=edges[i];
assert(e);
if (e->isCollapsed())
{
#if GEOS_DEBUG
cerr << " replacing collapsed edge " << i << endl;
#endif // GEOS_DEBUG
//Debug.print(e);
edges[i]=e->getCollapsedEdge();
// should we keep this alive some more ?
delete e;
}
}
}
/*private*/
void
OverlayOp::copyPoints(int argIndex)
{
NodeMap::container& nodeMap=arg[argIndex]->getNodeMap()->nodeMap;
for ( NodeMap::const_iterator it=nodeMap.begin(), itEnd=nodeMap.end();
it != itEnd; ++it )
{
Node* graphNode=it->second;
assert(graphNode);
Node* newNode=graph.addNode(graphNode->getCoordinate());
assert(newNode);
newNode->setLabel(argIndex,graphNode->getLabel()->getLocation(argIndex));
}
}
/*private*/
void
OverlayOp::computeLabelling()
//throw(TopologyException *) // and what else ?
{
NodeMap::container& nodeMap=graph.getNodeMap()->nodeMap;
#if GEOS_DEBUG
cerr<<"OverlayOp::computeLabelling(): at call time: "<<edgeList.print()<<endl;
#endif
#if GEOS_DEBUG
cerr<<"OverlayOp::computeLabelling() scanning "<<nodeMap.size()<<" nodes from map:"<<endl;
#endif
for ( NodeMap::const_iterator it=nodeMap.begin(), itEnd=nodeMap.end();
it != itEnd; ++it )
{
Node *node=it->second;
#if GEOS_DEBUG
cerr<<" "<<node->print()<<" has "<<node->getEdges()->getEdges().size()<<" edgeEnds"<<endl;
#endif
node->getEdges()->computeLabelling(&arg);
}
#if GEOS_DEBUG
cerr<<"OverlayOp::computeLabelling(): after edge labelling: "<<edgeList.print()<<endl;
#endif
mergeSymLabels();
#if GEOS_DEBUG
cerr<<"OverlayOp::computeLabelling(): after labels sym merging: "<<edgeList.print()<<endl;
#endif
updateNodeLabelling();
#if GEOS_DEBUG
cerr<<"OverlayOp::computeLabelling(): after node labeling update: "<<edgeList.print()<<endl;
#endif
}
/*private*/
void
OverlayOp::mergeSymLabels()
{
NodeMap::container& nodeMap=graph.getNodeMap()->nodeMap;
#if GEOS_DEBUG
cerr<<"OverlayOp::mergeSymLabels() scanning "<<nodeMap.size()<<" nodes from map:"<<endl;
#endif
for ( NodeMap::const_iterator it=nodeMap.begin(), itEnd=nodeMap.end();
it != itEnd; ++it )
{
Node *node=it->second;
EdgeEndStar* ees=node->getEdges();
assert(dynamic_cast<DirectedEdgeStar*>(ees));
static_cast<DirectedEdgeStar*>(ees)->mergeSymLabels();
//((DirectedEdgeStar*)node->getEdges())->mergeSymLabels();
#if GEOS_DEBUG
cerr<<" "<<node->print()<<endl;
#endif
//node.print(System.out);
}
}
/*private*/
void
OverlayOp::updateNodeLabelling()
{
// update the labels for nodes
// The label for a node is updated from the edges incident on it
// (Note that a node may have already been labelled
// because it is a point in one of the input geometries)
NodeMap::container& nodeMap=graph.getNodeMap()->nodeMap;
#if GEOS_DEBUG
cerr << "OverlayOp::updateNodeLabelling() scanning "
<< nodeMap.size() << " nodes from map:" << endl;
#endif
for ( NodeMap::const_iterator it=nodeMap.begin(), itEnd=nodeMap.end();
it != itEnd; ++it )
{
Node *node=it->second;
EdgeEndStar* ees = node->getEdges();
assert( dynamic_cast<DirectedEdgeStar*>(ees) );
DirectedEdgeStar* des = static_cast<DirectedEdgeStar*>(ees);
Label &lbl = des->getLabel();
node->getLabel()->merge(lbl);
#if GEOS_DEBUG
cerr<<" "<<node->print()<<endl;
#endif
}
}
/*private*/
void
OverlayOp::labelIncompleteNodes()
{
NodeMap::container& nodeMap=graph.getNodeMap()->nodeMap;
#if GEOS_DEBUG
cerr<<"OverlayOp::labelIncompleteNodes() scanning "<<nodeMap.size()<<" nodes from map:"<<endl;
#endif
for ( NodeMap::const_iterator it=nodeMap.begin(), itEnd=nodeMap.end();
it != itEnd; ++it )
{
Node *n=it->second;
Label *label=n->getLabel();
if (n->isIsolated())
{
if (label->isNull(0))
{
labelIncompleteNode(n,0);
}
else
{
labelIncompleteNode(n, 1);
}
}
// now update the labelling for the DirectedEdges incident on this node
EdgeEndStar* ees = n->getEdges();
assert( dynamic_cast<DirectedEdgeStar*>(ees) );
DirectedEdgeStar* des = static_cast<DirectedEdgeStar*>(ees);
des->updateLabelling(label);
//((DirectedEdgeStar*)n->getEdges())->updateLabelling(label);
//n.print(System.out);
}
}
/*private*/
void
OverlayOp::labelIncompleteNode(Node *n, int targetIndex)
{
#if GEOS_DEBUG
cerr<<"OverlayOp::labelIncompleteNode("<<n->print()<<", "<<targetIndex<<")"<<endl;
#endif
const Geometry *targetGeom = arg[targetIndex]->getGeometry();
int loc=ptLocator.locate(n->getCoordinate(), targetGeom);
n->getLabel()->setLocation(targetIndex,loc);
#if GEOS_DEBUG
cerr<<" after location set: "<<n->print()<<endl;
#endif
#if COMPUTE_Z
/*
* If this node has been labeled INTERIOR of a line
* or BOUNDARY of a polygon we must merge
* Z values of the intersected segment.
* The intersection point has been already computed
* by LineIntersector invoked by CGAlgorithms::isOnLine
* invoked by PointLocator.
*/
const LineString *line = dynamic_cast<const LineString *>(targetGeom);
if ( loc == Location::INTERIOR && line )
{
mergeZ(n, line);
}
const Polygon *poly = dynamic_cast<const Polygon *>(targetGeom);
if ( loc == Location::BOUNDARY && poly )
{
mergeZ(n, poly);
}
#if USE_INPUT_AVGZ
if ( loc == Location::INTERIOR && poly )
{
n->addZ(getAverageZ(targetIndex));
}
#endif // USE_INPUT_AVGZ
#endif // COMPUTE_Z
}
/*static private*/
double
OverlayOp::getAverageZ(const Polygon *poly)
{
double totz = 0.0;
int zcount = 0;
const CoordinateSequence *pts =
poly->getExteriorRing()->getCoordinatesRO();
size_t npts=pts->getSize();
for (size_t i=0; i<npts; ++i)
{
const Coordinate &c = pts->getAt(i);
if ( !ISNAN(c.z) )
{
totz += c.z;
zcount++;
}
}
if ( zcount ) return totz/zcount;
else return DoubleNotANumber;
}
/*private*/
double
OverlayOp::getAverageZ(int targetIndex)
{
if ( avgzcomputed[targetIndex] ) return avgz[targetIndex];
const Geometry *targetGeom = arg[targetIndex]->getGeometry();
// OverlayOp::getAverageZ(int) called with a ! polygon
assert(targetGeom->getGeometryTypeId() == GEOS_POLYGON);
avgz[targetIndex] = getAverageZ((const Polygon *)targetGeom);
avgzcomputed[targetIndex] = true;
return avgz[targetIndex];
}
/*private*/
int
OverlayOp::mergeZ(Node *n, const Polygon *poly) const
{
const LineString *ls;
int found = 0;
ls = poly->getExteriorRing();
found = mergeZ(n, ls);
if ( found ) return 1;
for (size_t i=0, nr=poly->getNumInteriorRing(); i<nr; ++i)
{
ls = poly->getInteriorRingN(i);
found = mergeZ(n, ls);
if ( found ) return 1;
}
return 0;
}
/*private*/
int
OverlayOp::mergeZ(Node *n, const LineString *line) const
{
const CoordinateSequence *pts = line->getCoordinatesRO();
const Coordinate &p = n->getCoordinate();
LineIntersector li;
for(size_t i=1, size=pts->size(); i<size; ++i)
{
const Coordinate &p0=pts->getAt(i-1);
const Coordinate &p1=pts->getAt(i);
li.computeIntersection(p, p0, p1);
if (li.hasIntersection())
{
if ( p == p0 )
{
n->addZ(p0.z);
}
else if ( p == p1 )
{
n->addZ(p1.z);
}
else
{
n->addZ(LineIntersector::interpolateZ(p,
p0, p1));
}
return 1;
}
}
return 0;
}
/*private*/
void
OverlayOp::findResultAreaEdges(OverlayOp::OpCode opCode)
{
vector<EdgeEnd*> *ee=graph.getEdgeEnds();
for(size_t i=0, e=ee->size(); i<e; ++i)
{
DirectedEdge *de=(DirectedEdge*) (*ee)[i];
// mark all dirEdges with the appropriate label
Label *label=de->getLabel();
if (label->isArea()
&& !de->isInteriorAreaEdge()
&& isResultOfOp(label->getLocation(0,Position::RIGHT),
label->getLocation(1,Position::RIGHT),
opCode)
)
{
de->setInResult(true);
//Debug.print("in result "); Debug.println(de);
}
}
}
/*private*/
void
OverlayOp::cancelDuplicateResultEdges()
{
// remove any dirEdges whose sym is also included
// (they "cancel each other out")
vector<EdgeEnd*> *ee=graph.getEdgeEnds();
for(size_t i=0, eesize=ee->size(); i<eesize; ++i)
{
DirectedEdge *de=static_cast<DirectedEdge*>( (*ee)[i] );
DirectedEdge *sym=de->getSym();
if (de->isInResult() && sym->isInResult()) {
de->setInResult(false);
sym->setInResult(false);
//Debug.print("cancelled "); Debug.println(de); Debug.println(sym);
}
}
}
/*public*/
bool
OverlayOp::isCoveredByLA(const Coordinate& coord)
{
if (isCovered(coord,resultLineList)) return true;
if (isCovered(coord,resultPolyList)) return true;
return false;
}
/*public*/
bool
OverlayOp::isCoveredByA(const Coordinate& coord)
{
if (isCovered(coord,resultPolyList)) return true;
return false;
}
/*private*/
bool
OverlayOp::isCovered(const Coordinate& coord,vector<Geometry*> *geomList)
{
for(size_t i=0, n=geomList->size(); i<n; ++i)
{
Geometry *geom=(*geomList)[i];
int loc=ptLocator.locate(coord,geom);
if (loc!=Location::EXTERIOR) return true;
}
return false;
}
/*private*/
bool
OverlayOp::isCovered(const Coordinate& coord,vector<LineString*> *geomList)
{
for(size_t i=0, n=geomList->size(); i<n; ++i)
{
Geometry *geom=(Geometry*)(*geomList)[i];
int loc=ptLocator.locate(coord,geom);
if (loc!=Location::EXTERIOR) return true;
}
return false;
}
/*private*/
bool
OverlayOp::isCovered(const Coordinate& coord,vector<Polygon*> *geomList)
{
for(size_t i=0, n=geomList->size(); i<n; ++i)
{
Geometry *geom=(Geometry*)(*geomList)[i];
int loc=ptLocator.locate(coord,geom);
if (loc!=Location::EXTERIOR) return true;
}
return false;
}
/*private*/
Geometry*
OverlayOp::computeGeometry(vector<Point*> *nResultPointList,
vector<LineString*> *nResultLineList,
vector<Polygon*> *nResultPolyList)
{
size_t nPoints=nResultPointList->size();
size_t nLines=nResultLineList->size();
size_t nPolys=nResultPolyList->size();
vector<Geometry*> *geomList=new vector<Geometry*>();
geomList->reserve(nPoints+nLines+nPolys);
// element geometries of the result are always in the order P,L,A
geomList->insert(geomList->end(),
nResultPointList->begin(),
nResultPointList->end());
geomList->insert(geomList->end(),
nResultLineList->begin(),
nResultLineList->end());
geomList->insert(geomList->end(),
nResultPolyList->begin(),
nResultPolyList->end());
// build the most specific geometry possible
Geometry *g=geomFact->buildGeometry(geomList);
return g;
}
/*private*/
void
OverlayOp::computeOverlay(OverlayOp::OpCode opCode)
//throw(TopologyException *)
{
// copy points from input Geometries.
// This ensures that any Point geometries
// in the input are considered for inclusion in the result set
copyPoints(0);
copyPoints(1);
// node the input Geometries
delete arg[0]->computeSelfNodes(li,false);
delete arg[1]->computeSelfNodes(li,false);
#if GEOS_DEBUG
cerr<<"OverlayOp::computeOverlay: computed SelfNodes"<<endl;
#endif
// compute intersections between edges of the two input geometries
delete arg[0]->computeEdgeIntersections(arg[1], &li,true);
#if GEOS_DEBUG
cerr<<"OverlayOp::computeOverlay: computed EdgeIntersections"<<endl;
cerr<<"OverlayOp::computeOverlay: li: "<<li.toString()<<endl;
#endif
vector<Edge*> baseSplitEdges;
arg[0]->computeSplitEdges(&baseSplitEdges);
arg[1]->computeSplitEdges(&baseSplitEdges);
// add the noded edges to this result graph
insertUniqueEdges(&baseSplitEdges);
computeLabelsFromDepths();
replaceCollapsedEdges();
//Debug.println(edgeList);
#ifdef ENABLE_EDGE_NODING_VALIDATOR // {
if ( resultPrecisionModel->isFloating() )
{
// Will throw TopologyException if noding is found to be invalid
EdgeNodingValidator nv(edgeList.getEdges());
#ifdef GEOS_DEBUG_VALIDATION // {
try {
nv.checkValid();
} catch (const util::TopologyException& ex) {
cout << "EdgeNodingValidator found noding invalid: " << ex.what() << endl;
throw ex;
}
cout << "EdgeNodingValidator accepted the noding" << endl;
#else // }{
nv.checkValid();
#endif // }
}
#ifdef GEOS_DEBUG_VALIDATION // {
else
{
cout << "Did not run EdgeNodingValidator as the precision model is not floating" << endl;
}
#endif // GEOS_DEBUG_VALIDATION }
#endif // ENABLE_EDGE_NODING_VALIDATOR }
graph.addEdges(edgeList.getEdges());
// this can throw TopologyException *
computeLabelling();
//Debug.printWatch();
labelIncompleteNodes();
//Debug.printWatch();
//nodeMap.print(System.out);
/*
* The ordering of building the result Geometries is important.
* Areas must be built before lines, which must be built
* before points.
* This is so that lines which are covered by areas are not
* included explicitly, and similarly for points.
*/
findResultAreaEdges(opCode);
cancelDuplicateResultEdges();
PolygonBuilder polyBuilder(geomFact);
// might throw a TopologyException *
polyBuilder.add(&graph);
vector<Geometry*> *gv=polyBuilder.getPolygons();
size_t gvsize=gv->size();
resultPolyList=new vector<Polygon*>(gvsize);
for(size_t i=0; i<gvsize; ++i) {
(*resultPolyList)[i]=(Polygon*)(*gv)[i];
}
delete gv;
LineBuilder lineBuilder(this,geomFact,&ptLocator);
resultLineList=lineBuilder.build(opCode);
PointBuilder pointBuilder(this,geomFact,&ptLocator);
resultPointList=pointBuilder.build(opCode);
// gather the results from all calculations into a single
// Geometry for the result set
resultGeom=computeGeometry(resultPointList,resultLineList,resultPolyList);
checkObviouslyWrongResult(opCode);
#if USE_ELEVATION_MATRIX
elevationMatrix->elevate(resultGeom);
#endif // USE_ELEVATION_MATRIX
}
/*protected*/
void
OverlayOp::insertUniqueEdge(Edge *e)
{
//Debug.println(e);
#if GEOS_DEBUG
cerr<<"OverlayOp::insertUniqueEdge("<<e->print()<<")"<<endl;
#endif
//<FIX> MD 8 Oct 03 speed up identical edge lookup
// fast lookup
Edge *existingEdge = edgeList.findEqualEdge(e);
// If an identical edge already exists, simply update its label
if (existingEdge)
{
#if GEOS_DEBUG
cerr<<" found identical edge, should merge Z"<<endl;
#endif
Label *existingLabel=existingEdge->getLabel();
Label *labelToMerge=e->getLabel();
// check if new edge is in reverse direction to existing edge
// if so, must flip the label before merging it
if (!existingEdge->isPointwiseEqual(e))
{
// labelToMerge=new Label(e->getLabel());
labelToMerge->flip();
}
Depth &depth=existingEdge->getDepth();
// if this is the first duplicate found for this edge,
// initialize the depths
if (depth.isNull())
{
depth.add(*existingLabel);
}
depth.add(*labelToMerge);
existingLabel->merge(*labelToMerge);
//Debug.print("inserted edge: "); Debug.println(e);
//Debug.print("existing edge: "); Debug.println(existingEdge);
dupEdges.push_back(e);
}
else
{ // no matching existing edge was found
#if GEOS_DEBUG
cerr<<" no matching existing edge"<<endl;
#endif
// add this new edge to the list of edges in this graph
//e.setName(name+edges.size());
//e.getDepth().add(e.getLabel());
edgeList.add(e);
}
}
/*private*/
void
OverlayOp::computeLabelsFromDepths()
{
for(size_t j=0, s=edgeList.getEdges().size(); j<s; ++j)
{
Edge *e=edgeList.get(j);
Label *lbl=e->getLabel();
Depth &depth=e->getDepth();
/*
* Only check edges for which there were duplicates,
* since these are the only ones which might
* be the result of dimensional collapses.
*/
if (depth.isNull()) continue;
depth.normalize();
for (int i=0;i<2;i++)
{
if (!lbl->isNull(i) && lbl->isArea() && !depth.isNull(i))
{
/*
* if the depths are equal, this edge is the result of
* the dimensional collapse of two or more edges.
* It has the same location on both sides of the edge,
* so it has collapsed to a line.
*/
if (depth.getDelta(i)==0) {
lbl->toLine(i);
} else {
/*
* This edge may be the result of a dimensional collapse,
* but it still has different locations on both sides. The
* label of the edge must be updated to reflect the resultant
* side locations indicated by the depth values.
*/
assert(!depth.isNull(i,Position::LEFT)); // depth of LEFT side has not been initialized
lbl->setLocation(i,Position::LEFT,depth.getLocation(i,Position::LEFT));
assert(!depth.isNull(i,Position::RIGHT)); // depth of RIGHT side has not been initialized
lbl->setLocation(i,Position::RIGHT,depth.getLocation(i,Position::RIGHT));
}
}
}
}
}
struct PointCoveredByAny: public geom::CoordinateFilter
{
const vector<const Geometry*>& geoms;
PointLocator locator;
PointCoveredByAny(const vector<const Geometry*>& nGeoms)
: geoms(nGeoms)
{}
void filter_ro(const Coordinate* coord)
{
for (size_t i=0, n=geoms.size(); i<n; ++i)
{
int loc = locator.locate(*coord, geoms[i]);
if ( loc == Location::INTERIOR ||
loc == Location::BOUNDARY )
{
return;
}
}
throw util::TopologyException("Obviously wrong result: "
"A point on first geom boundary isn't covered "
"by either result or second geom");
}
};
void
OverlayOp::checkObviouslyWrongResult(OverlayOp::OpCode opCode)
{
using std::cerr;
using std::endl;
assert(resultGeom);
#ifdef ENABLE_OTHER_OVERLAY_RESULT_VALIDATORS
if ( opCode == opINTERSECTION
&& arg[0]->getGeometry()->getDimension() == Dimension::A
&& arg[1]->getGeometry()->getDimension() == Dimension::A )
{
// Area of result must be less or equal area of smaller geom
double area0 = arg[0]->getGeometry()->getArea();
double area1 = arg[1]->getGeometry()->getArea();
double minarea = min(area0, area1);
double resultArea = resultGeom->getArea();
if ( resultArea > minarea )
{
throw util::TopologyException("Obviously wrong result: "
"area of intersection "
"result is bigger then minimum area between "
"input geometries");
}
}
else if ( opCode == opDIFFERENCE
&& arg[0]->getGeometry()->getDimension() == Dimension::A
&& arg[1]->getGeometry()->getDimension() == Dimension::A )
{
// Area of result must be less or equal area of first geom
double area0 = arg[0]->getGeometry()->getArea();
double resultArea = resultGeom->getArea();
if ( resultArea > area0 )
{
throw util::TopologyException("Obviously wrong result: "
"area of difference "
"result is bigger then area of first "
"input geometry");
}
// less obvious check:
// each vertex in first geom must be either covered by
// result or second geom
vector<const Geometry*> testGeoms; testGeoms.reserve(2);
testGeoms.push_back(resultGeom);
testGeoms.push_back(arg[1]->getGeometry());
PointCoveredByAny tester(testGeoms);
arg[0]->getGeometry()->apply_ro(&tester);
}
// Add your tests here
#endif
#ifdef ENABLE_OVERLAY_RESULT_VALIDATOR
// This only work for FLOATING precision
if ( resultPrecisionModel->isFloating() )
{
OverlayResultValidator validator( *(arg[0]->getGeometry()),
*(arg[1]->getGeometry()), *(resultGeom));
bool isvalid = validator.isValid(opCode);
if ( ! isvalid )
{
#ifdef GEOS_DEBUG_VALIDATION
cout << "OverlayResultValidator considered result INVALID" << endl;
#endif
throw util::TopologyException(
"Obviously wrong result: "
"OverlayResultValidator didn't like "
"the result: \n"
"Invalid point: " +
validator.getInvalidLocation().toString() +
string("\nInvalid result: ") +
resultGeom->toString());
}
#ifdef GEOS_DEBUG_VALIDATION
else
{
cout << "OverlayResultValidator considered result valid" << endl;
}
#endif
}
#ifdef GEOS_DEBUG_VALIDATION
else
{
cout << "Did not run OverlayResultValidator as the precision model is not floating" << endl;
}
#endif // ndef GEOS_DEBUG
#endif
}
} // namespace geos.operation.overlay
} // namespace geos.operation
} // namespace geos
/**********************************************************************
* $Log$
* Revision 1.77 2006/07/05 20:19:29 strk
* added checks for obviously wrong result of difference and intersection ops
*
* Revision 1.76 2006/06/14 15:38:16 strk
* Fixed just-introduced bug
*
* Revision 1.75 2006/06/14 15:03:32 strk
* * source/operation/overlay/OverlayOp.cpp: use NodeMap::container and related typedefs, removed (int) casts, optimized loops.
*
* Revision 1.74 2006/06/13 21:42:55 strk
* trimmed cvs log, cleanups
*
* Revision 1.73 2006/06/12 11:29:24 strk
* unsigned int => size_t
*
* Revision 1.72 2006/06/09 07:42:13 strk
* * source/geomgraph/GeometryGraph.cpp, source/operation/buffer/OffsetCurveSetBuilder.cpp, source/operation/overlay/OverlayOp.cpp, source/operation/valid/RepeatedPointTester.cpp: Fixed warning after Polygon ring accessor methods changed to work with size_t. Small optimizations in loops.
*
* Revision 1.71 2006/06/05 15:36:34 strk
* Given OverlayOp funx code enum a name and renamed values to have a lowercase prefix. Drop all of noding headers from installed header set.
*
*
**********************************************************************/
|