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
|
/**********************************************************************
* $Id: EdgeEndStar.cpp 1820 2006-09-06 16:54:23Z mloskot $
*
* GEOS - Geometry Engine Open Source
* http://geos.refractions.net
*
* Copyright (C) 2001-2002 Vivid Solutions Inc.
* Copyright (C) 2005 Refractions Research 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: geomgraph/EdgeEndStar.java rev. 1.4 (JTS-1.7)
*
**********************************************************************/
#include <geos/util/TopologyException.h>
#include <geos/geomgraph/EdgeEndStar.h>
#include <geos/algorithm/SimplePointInAreaLocator.h>
#include <geos/geom/Location.h>
#include <geos/geomgraph/Label.h>
#include <geos/geomgraph/Position.h>
#include <geos/geomgraph/GeometryGraph.h>
#include <cassert>
#include <string>
#include <vector>
#ifndef GEOS_DEBUG
#define GEOS_DEBUG 0
#endif
//using namespace std;
//using namespace geos::algorithm;
using namespace geos::geom;
namespace geos {
namespace geomgraph { // geos.geomgraph
/*public*/
EdgeEndStar::EdgeEndStar()
:
edgeMap()
{
ptInAreaLocation[0]=Location::UNDEF;
ptInAreaLocation[1]=Location::UNDEF;
}
/*public*/
Coordinate&
EdgeEndStar::getCoordinate()
{
static Coordinate nullCoord(DoubleNotANumber, DoubleNotANumber, DoubleNotANumber);
if (edgeMap.size()==0) return nullCoord;
EdgeEndStar::iterator it=begin();
EdgeEnd *e=*it;
assert(e);
return e->getCoordinate();
}
/*public*/
EdgeEnd*
EdgeEndStar::getNextCW(EdgeEnd *ee)
{
EdgeEndStar::iterator it=find(ee);
if ( it==end() ) return NULL;
if ( it==begin() ) { it=end(); --it; }
else --it;
return *it;
}
/*public*/
void
EdgeEndStar::computeLabelling(std::vector<GeometryGraph*> *geom)
//throw(TopologyException *)
{
computeEdgeEndLabels();
// Propagate side labels around the edges in the star
// for each parent Geometry
//
// these calls can throw a TopologyException
propagateSideLabels(0);
propagateSideLabels(1);
/**
* If there are edges that still have null labels for a geometry
* this must be because there are no area edges for that geometry
* incident on this node.
* In this case, to label the edge for that geometry we must test
* whether the edge is in the interior of the geometry.
* To do this it suffices to determine whether the node for the
* edge is in the interior of an area.
* If so, the edge has location INTERIOR for the geometry.
* In all other cases (e.g. the node is on a line, on a point, or
* not on the geometry at all) the edge
* has the location EXTERIOR for the geometry.
*
* Note that the edge cannot be on the BOUNDARY of the geometry,
* since then there would have been a parallel edge from the
* Geometry at this node also labelled BOUNDARY
* and this edge would have been labelled in the previous step.
*
* This code causes a problem when dimensional collapses are present,
* since it may try and determine the location of a node where a
* dimensional collapse has occurred.
* The point should be considered to be on the EXTERIOR
* of the polygon, but locate() will return INTERIOR, since it is
* passed the original Geometry, not the collapsed version.
*
* If there are incident edges which are Line edges labelled BOUNDARY,
* then they must be edges resulting from dimensional collapses.
* In this case the other edges can be labelled EXTERIOR for this
* Geometry.
*
* MD 8/11/01 - NOT TRUE! The collapsed edges may in fact be in the
* interior of the Geometry, which means the other edges should be
* labelled INTERIOR for this Geometry.
* Not sure how solve this... Possibly labelling needs to be split
* into several phases:
* area label propagation, symLabel merging, then finally null label
* resolution.
*/
bool hasDimensionalCollapseEdge[2]={false,false};
EdgeEndStar::iterator endIt=end();
for (EdgeEndStar::iterator it=begin(); it!=endIt; ++it)
{
EdgeEnd *e=*it;
assert(e);
Label *label=e->getLabel();
assert(label);
for(int geomi=0; geomi<2; geomi++)
{
if (label->isLine(geomi) && label->getLocation(geomi)==Location::BOUNDARY)
hasDimensionalCollapseEdge[geomi]=true;
}
}
for (EdgeEndStar::iterator it=begin(); it!=end(); ++it)
{
EdgeEnd *e=*it;
assert(e);
Label *label=e->getLabel();
assert(label);
for(int geomi=0; geomi<2; ++geomi)
{
if (label->isAnyNull(geomi)) {
int loc=Location::UNDEF;
if (hasDimensionalCollapseEdge[geomi]){
loc=Location::EXTERIOR;
}else {
Coordinate& p=e->getCoordinate();
loc=getLocation(geomi,p,geom);
}
label->setAllLocationsIfNull(geomi,loc);
}
}
}
}
/*private*/
void
EdgeEndStar::computeEdgeEndLabels()
{
// Compute edge label for each EdgeEnd
for (EdgeEndStar::iterator it=begin(); it!=end(); ++it)
{
EdgeEnd *e=*it;
assert(e);
e->computeLabel();
}
}
/*public*/
int
EdgeEndStar::getLocation(int geomIndex,
const Coordinate& p, std::vector<GeometryGraph*> *geom)
{
// compute location only on demand
if (ptInAreaLocation[geomIndex]==Location::UNDEF)
{
ptInAreaLocation[geomIndex]=algorithm::SimplePointInAreaLocator::locate(p,
(*geom)[geomIndex]->getGeometry());
}
return ptInAreaLocation[geomIndex];
}
/*public*/
bool
EdgeEndStar::isAreaLabelsConsistent()
{
computeEdgeEndLabels();
return checkAreaLabelsConsistent(0);
}
/*private*/
bool
EdgeEndStar::checkAreaLabelsConsistent(int geomIndex)
{
// Since edges are stored in CCW order around the node,
// As we move around the ring we move from the right to
// the left side of the edge
// if no edges, trivially consistent
if (edgeMap.size()==0) return true;
// initialize startLoc to location of last L side (if any)
EdgeEndStar::reverse_iterator it=rbegin();
assert(*it);
Label *startLabel=(*it)->getLabel();
int startLoc=startLabel->getLocation(geomIndex, Position::LEFT);
// Found unlabelled area edge
assert(startLoc!=Location::UNDEF);
int currLoc=startLoc;
for (EdgeEndStar::iterator it=begin(), itEnd=end(); it!=itEnd; ++it)
{
EdgeEnd *e=*it;
assert(e);
Label *eLabel=e->getLabel();
assert(eLabel);
// we assume that we are only checking a area
// Found non-area edge
assert(eLabel->isArea(geomIndex));
int leftLoc=eLabel->getLocation(geomIndex, Position::LEFT);
int rightLoc=eLabel->getLocation(geomIndex, Position::RIGHT);
// check that edge is really a boundary between inside and outside!
if (leftLoc==rightLoc) {
return false;
}
// check side location conflict
//assert(rightLoc == currLoc); // "side location conflict " + locStr);
if (rightLoc!=currLoc) {
return false;
}
currLoc=leftLoc;
}
return true;
}
/*public*/
void
EdgeEndStar::propagateSideLabels(int geomIndex)
//throw(TopologyException *)
{
// Since edges are stored in CCW order around the node,
// As we move around the ring we move from the right to the
// left side of the edge
int startLoc=Location::UNDEF;
EdgeEndStar::iterator beginIt=begin();
EdgeEndStar::iterator endIt=end();
EdgeEndStar::iterator it;
// initialize loc to location of last L side (if any)
for (EdgeEndStar::iterator it=beginIt; it!=endIt; ++it)
{
EdgeEnd *e=*it;
assert(e);
Label *label=e->getLabel();
assert(label);
if (label->isArea(geomIndex) &&
label->getLocation(geomIndex,Position::LEFT)!=Location::UNDEF)
startLoc=label->getLocation(geomIndex,Position::LEFT);
}
// no labelled sides found, so no labels to propagate
if (startLoc==Location::UNDEF) return;
int currLoc=startLoc;
for (it=beginIt; it!=endIt; ++it)
{
EdgeEnd *e=*it;
assert(e);
Label *label=e->getLabel();
assert(label);
// set null ON values to be in current location
if (label->getLocation(geomIndex,Position::ON)==Location::UNDEF)
label->setLocation(geomIndex,Position::ON,currLoc);
// set side labels (if any)
// if (label.isArea()) //ORIGINAL
if (label->isArea(geomIndex))
{
int leftLoc=label->getLocation(geomIndex,
Position::LEFT);
int rightLoc=label->getLocation(geomIndex,
Position::RIGHT);
// if there is a right location, that is the next
// location to propagate
if (rightLoc!=Location::UNDEF) {
if (rightLoc!=currLoc)
throw util::TopologyException("side location conflict",
e->getCoordinate());
if (leftLoc==Location::UNDEF) {
// found single null side at e->getCoordinate()
assert(0);
}
currLoc=leftLoc;
} else {
/**
* RHS is null - LHS must be null too.
* This must be an edge from the other
* geometry, which has no location
* labelling for this geometry.
* This edge must lie wholly inside or
* outside the other geometry (which is
* determined by the current location).
* Assign both sides to be the current
* location.
*/
// found single null side
assert(label->getLocation(geomIndex,
Position::LEFT)==Location::UNDEF);
label->setLocation(geomIndex,Position::RIGHT,
currLoc);
label->setLocation(geomIndex,Position::LEFT,
currLoc);
}
}
}
}
/*public*/
std::string
EdgeEndStar::print()
{
std::string out="EdgeEndStar: " + getCoordinate().toString()+"\n";
for (EdgeEndStar::iterator it=begin(), itEnd=end(); it!=itEnd; ++it)
{
EdgeEnd *e=*it;
assert(e);
out+=e->print();
}
return out;
}
} // namespace geos.geomgraph
} // namespace geos
/**********************************************************************
* $Log$
* Revision 1.21 2006/04/04 13:35:55 strk
* Port info, assertion checking, indentation
*
* Revision 1.20 2006/03/23 15:10:29 strk
* Dropped by-pointer TopologyException constructor, various small cleanups
*
* Revision 1.19 2006/03/15 17:16:29 strk
* streamlined headers inclusion
*
* Revision 1.18 2006/03/09 16:46:47 strk
* geos::geom namespace definition, first pass at headers split
*
* Revision 1.17 2006/03/06 19:40:46 strk
* geos::util namespace. New GeometryCollection::iterator interface, many cleanups.
*
* Revision 1.16 2006/03/03 10:46:21 strk
* Removed 'using namespace' from headers, added missing headers in .cpp files, removed useless includes in headers (bug#46)
*
* Revision 1.15 2006/03/02 12:12:00 strk
* Renamed DEBUG macros to GEOS_DEBUG, all wrapped in #ifndef block to allow global override (bug#43)
*
* Revision 1.14 2006/02/19 19:46:49 strk
* Packages <-> namespaces mapping for most GEOS internal code (uncomplete, but working). Dir-level libs for index/ subdirs.
*
* Revision 1.13 2006/02/09 15:52:47 strk
* GEOSException derived from std::exception; always thrown and cought by const ref.
*
* Revision 1.12 2005/12/07 20:51:47 strk
* removed dead code
*
* Revision 1.11 2005/11/29 00:48:35 strk
* Removed edgeList cache from EdgeEndRing. edgeMap is enough.
* Restructured iterated access by use of standard ::iterator abstraction
* with scoped typedefs.
*
* Revision 1.10 2005/11/21 16:03:20 strk
*
* Coordinate interface change:
* Removed setCoordinate call, use assignment operator
* instead. Provided a compile-time switch to
* make copy ctor and assignment operators non-inline
* to allow for more accurate profiling.
*
* Coordinate copies removal:
* NodeFactory::createNode() takes now a Coordinate reference
* rather then real value. This brings coordinate copies
* in the testLeaksBig.xml test from 654818 to 645991
* (tested in 2.1 branch). In the head branch Coordinate
* copies are 222198.
* Removed useless coordinate copies in ConvexHull
* operations
*
* STL containers heap allocations reduction:
* Converted many containers element from
* pointers to real objects.
* Made some use of .reserve() or size
* initialization when final container size is known
* in advance.
*
* Stateless classes allocations reduction:
* Provided ::instance() function for
* NodeFactories, to avoid allocating
* more then one (they are all
* stateless).
*
* HCoordinate improvements:
* Changed HCoordinate constructor by HCoordinates
* take reference rather then real objects.
* Changed HCoordinate::intersection to avoid
* a new allocation but rather return into a provided
* storage. LineIntersector changed to reflect
* the above change.
*
* Revision 1.9 2004/12/08 13:54:43 strk
* gcc warnings checked and fixed, general cleanups.
*
* Revision 1.8 2004/11/23 19:53:06 strk
* Had LineIntersector compute Z by interpolation.
*
* Revision 1.7 2004/11/22 11:34:49 strk
* More debugging lines and comments/indentation cleanups
*
* Revision 1.6 2004/11/17 08:13:16 strk
* Indentation changes.
* Some Z_COMPUTATION activated by default.
*
* Revision 1.5 2004/11/01 16:43:04 strk
* Added Profiler code.
* Temporarly patched a bug in DoubleBits (must check drawbacks).
* Various cleanups and speedups.
*
* Revision 1.4 2004/10/21 22:29:54 strk
* Indentation changes and some more COMPUTE_Z rules
*
* Revision 1.3 2004/07/02 13:28:26 strk
* Fixed all #include lines to reflect headers layout change.
* Added client application build tips in README.
*
* Revision 1.2 2004/05/03 10:43:42 strk
* Exception specification considered harmful - left as comment.
*
* Revision 1.1 2004/03/19 09:48:45 ybychkov
* "geomgraph" and "geomgraph/indexl" upgraded to JTS 1.4
*
* Revision 1.18 2003/11/12 15:43:38 strk
* Added some more throw specifications
*
* Revision 1.17 2003/11/07 01:23:42 pramsey
* Add standard CVS headers licence notices and copyrights to all cpp and h
* files.
*
*
**********************************************************************/
|