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
|
/**********************************************************************
* $Id: NodeMap.cpp,v 1.5 2004/11/20 15:45:47 strk Exp $
*
* GEOS - Geometry Engine Open Source
* http://geos.refractions.net
*
* 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.
*
**********************************************************************/
#include <geos/geomgraph.h>
#define DEBUG 0
namespace geos {
NodeMap::NodeMap(NodeFactory *newNodeFact)
{
#if DEBUG
cerr<<"["<<this<<"] NodeMap::NodeMap"<<endl;
#endif
nodeFact=newNodeFact;
nodeMap=new map<Coordinate,Node*,CoordLT>();
}
NodeMap::~NodeMap()
{
map<Coordinate,Node*,CoordLT>::iterator it=nodeMap->begin();
for (;it!=nodeMap->end();it++) {
Node *node=it->second;
delete node;
}
delete nodeMap;
delete nodeFact;
}
Node*
NodeMap::addNode(const Coordinate& coord)
{
#if DEBUG
cerr<<"["<<this<<"] NodeMap::addNode("<<coord.toString()<<")";
#endif
Node *node=find(coord);
if (node==NULL) {
#if DEBUG
cerr<<" is new"<<endl;
#endif
node=nodeFact->createNode(coord);
(*nodeMap)[coord]=node;
}
else
{
#if DEBUG
cerr<<" already found ("<<node->getCoordinate().toString()<<") - adding Z"<<endl;
#endif
node->addZ(coord.z);
}
return node;
}
// first arg cannot be const because
// it is liable to label-merging ... --strk;
Node*
NodeMap::addNode(Node *n)
{
#if DEBUG
cerr<<"["<<this<<"] NodeMap::addNode("<<n->print()<<")";
#endif
Node *node=find(n->getCoordinate());
if (node==NULL) {
#if DEBUG
cerr<<" is new"<<endl;
#endif
(*nodeMap)[n->getCoordinate()]=n;
return n;
}
#if DEBUG
else
{
cerr<<" found already, merging label"<<endl;
const vector<double>&zvals = n->getZ();
for (unsigned int i=0; i<zvals.size(); i++)
{
node->addZ(zvals[i]);
}
}
#endif // DEBUG
node->mergeLabel(n);
return node;
}
void
NodeMap::add(EdgeEnd *e)
{
Coordinate& p=e->getCoordinate();
Node *n=addNode(p);
n->add(e);
}
/*
* @return the node if found; null otherwise
*/
Node*
NodeMap::find(const Coordinate& coord) const
{
map<Coordinate,Node*,CoordLT>::iterator found=nodeMap->find(coord);
if (found==nodeMap->end())
return NULL;
else
return found->second;
}
map<Coordinate,Node*,CoordLT>::iterator
NodeMap::iterator() const
{
return nodeMap->begin();
}
//Doesn't work yet. Use iterator.
//public Collection NodeMap::values(){
// return nodeMap.values();
//}
vector<Node*>*
NodeMap::getBoundaryNodes(int geomIndex) const
{
vector<Node*>* bdyNodes=new vector<Node*>();
map<Coordinate,Node*,CoordLT>::iterator it=nodeMap->begin();
for (;it!=nodeMap->end();it++) {
Node *node=it->second;
if (node->getLabel()->getLocation(geomIndex)==Location::BOUNDARY)
bdyNodes->push_back(node);
}
return bdyNodes;
}
string
NodeMap::print() const
{
string out="";
map<Coordinate,Node*,CoordLT>::iterator it=nodeMap->begin();
for (;it!=nodeMap->end();it++) {
Node *node=it->second;
out+=node->print();
}
return out;
}
}
/**********************************************************************
* $Log: NodeMap.cpp,v $
* Revision 1.5 2004/11/20 15:45:47 strk
* Fixed Z merging in addNode(Node *)
*
* Revision 1.4 2004/11/20 15:41:41 strk
* Added Z merging in ::addNode
*
* Revision 1.3 2004/10/21 22:29:54 strk
* Indentation changes and some more COMPUTE_Z rules
*
* Revision 1.2 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.1 2004/03/19 09:48:45 ybychkov
* "geomgraph" and "geomgraph/indexl" upgraded to JTS 1.4
*
* Revision 1.12 2003/11/07 01:23:42 pramsey
* Add standard CVS headers licence notices and copyrights to all cpp and h
* files.
*
*
**********************************************************************/
|