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
|
/**********************************************************************
* $Id: CoordinateSequence.cpp 1986 2007-06-08 15:27:42Z mloskot $
*
* GEOS - Geometry Engine Open Source
* http://geos.refractions.net
*
* Copyright (C) 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.
*
**********************************************************************/
#include <geos/profiler.h>
#include <geos/geom/CoordinateSequence.h>
// FIXME: we should probably not be using CoordinateArraySequenceFactory
#include <geos/geom/CoordinateArraySequenceFactory.h>
#include <geos/geom/Coordinate.h>
#include <geos/geom/Envelope.h>
#include <cstdio>
#include <algorithm>
#include <vector>
#include <cassert>
using namespace std;
namespace geos {
namespace geom { // geos::geom
#if PROFILE
static Profiler *profiler = Profiler::instance();
#endif
bool
CoordinateSequence::hasRepeatedPoints() const
{
const std::size_t size=getSize();
for(std::size_t i=1; i<size; i++) {
if (getAt(i-1)==getAt(i)) {
return true;
}
}
return false;
}
/*
* Returns either the given coordinate array if its length is greater than the
* given amount, or an empty coordinate array.
*/
CoordinateSequence *
CoordinateSequence::atLeastNCoordinatesOrNothing(size_t n,
CoordinateSequence *c)
{
if ( c->getSize() >= n )
{
return c;
}
else
{
// FIXME: return NULL rather then empty coordinate array
return CoordinateArraySequenceFactory::instance()->create(NULL);
}
}
bool
CoordinateSequence::hasRepeatedPoints(const CoordinateSequence *cl)
{
const std::size_t size=cl->getSize();
for(std::size_t i=1;i<size; i++) {
if (cl->getAt(i-1)==cl->getAt(i)) {
return true;
}
}
return false;
}
const Coordinate*
CoordinateSequence::minCoordinate() const
{
const Coordinate* minCoord=NULL;
const std::size_t size=getSize();
for(std::size_t i=0; i<size; i++) {
if(minCoord==NULL || minCoord->compareTo(getAt(i))>0) {
minCoord=&getAt(i);
}
}
return minCoord;
}
const Coordinate*
CoordinateSequence::minCoordinate(CoordinateSequence *cl)
{
const Coordinate* minCoord=NULL;
const std::size_t size=cl->getSize();
for(std::size_t i=0;i<size; i++) {
if(minCoord==NULL || minCoord->compareTo(cl->getAt(i))>0) {
minCoord=&(cl->getAt(i));
}
}
return minCoord;
}
int
CoordinateSequence::indexOf(const Coordinate *coordinate,
const CoordinateSequence *cl)
{
size_t size=cl->getSize();
for (size_t i=0; i<size; ++i)
{
if ((*coordinate)==cl->getAt(i))
{
return static_cast<int>(i); // FIXME: what if we overflow the int ?
}
}
return -1;
}
void
CoordinateSequence::scroll(CoordinateSequence* cl,
const Coordinate* firstCoordinate)
{
// FIXME: use a standard algorithm instead
std::size_t i, j=0;
std::size_t ind=indexOf(firstCoordinate,cl);
if (ind<1)
return; // not found or already first
const std::size_t length=cl->getSize();
vector<Coordinate> v(length);
for (i=ind; i<length; i++) {
v[j++]=cl->getAt(i);
}
for (i=0; i<ind; i++) {
v[j++]=cl->getAt(i);
}
cl->setPoints(v);
}
void
CoordinateSequence::reverse(CoordinateSequence *cl)
{
// FIXME: use a standard algorithm
int last = static_cast<int>(cl->getSize()) - 1;
int mid=last/2;
for(int i=0;i<=mid;i++) {
const Coordinate tmp=cl->getAt(i);
cl->setAt(cl->getAt(last-i),i);
cl->setAt(tmp,last-i);
}
}
bool
CoordinateSequence::equals(const CoordinateSequence *cl1,
const CoordinateSequence *cl2)
{
// FIXME: use std::equals()
if (cl1==cl2) return true;
if (cl1==NULL||cl2==NULL) return false;
size_t npts1=cl1->getSize();
if (npts1!=cl2->getSize()) return false;
for (size_t i=0; i<npts1; i++) {
if (!(cl1->getAt(i)==cl2->getAt(i))) return false;
}
return true;
}
/*public*/
void
CoordinateSequence::add(const vector<Coordinate>* vc, bool allowRepeated)
{
assert(vc);
for(size_t i=0; i<vc->size(); ++i)
{
add((*vc)[i], allowRepeated);
}
}
/*public*/
void
CoordinateSequence::add(const Coordinate& c, bool allowRepeated)
{
if (!allowRepeated) {
std::size_t npts=getSize();
if (npts>=1) {
const Coordinate& last=getAt(npts-1);
if (last.equals2D(c))
return;
}
}
add(c);
}
/* Here for backward compatibility */
//void
//CoordinateSequence::add(CoordinateSequence *cl, bool allowRepeated,
// bool direction)
//{
// add(cl, allowRepeated, direction);
//}
/*public*/
void
CoordinateSequence::add(const CoordinateSequence *cl,
bool allowRepeated, bool direction)
{
// FIXME: don't rely on negative values for 'j' (the reverse case)
const int npts = static_cast<int>(cl->getSize());
if (direction) {
for (int i=0; i<npts; i++) {
add(cl->getAt(i), allowRepeated);
}
} else {
for (int j=npts-1; j>=0; j--) {
add(cl->getAt(j), allowRepeated);
}
}
}
/*public static*/
CoordinateSequence*
CoordinateSequence::removeRepeatedPoints(const CoordinateSequence *cl)
{
#if PROFILE
static Profile *prof= profiler->get("CoordinateSequence::removeRepeatedPoints()");
prof->start();
#endif
const vector<Coordinate> *v=cl->toVector();
vector<Coordinate> *nv=new vector<Coordinate>;
nv->reserve(v->size());
unique_copy(v->begin(), v->end(), back_inserter(*nv));
CoordinateSequence* ret=CoordinateArraySequenceFactory::instance()->create(nv);
#if PROFILE
prof->stop();
#endif
return ret;
}
void
CoordinateSequence::expandEnvelope(Envelope &env) const
{
const std::size_t size = getSize();
for (std::size_t i=0; i<size; i++)
env.expandToInclude(getAt(i));
}
std::ostream& operator<< (std::ostream& os, const CoordinateSequence& cs)
{
os << "(";
for (size_t i=0, n=cs.size(); i<n; ++i)
{
const Coordinate& c = cs[i];
if ( i ) os << ", ";
os << c;
}
os << ")";
return os;
}
bool operator== ( const CoordinateSequence& s1, const CoordinateSequence& s2)
{
return CoordinateSequence::equals(&s1, &s2);
}
bool operator!= ( const CoordinateSequence& s1, const CoordinateSequence& s2)
{
return ! CoordinateSequence::equals(&s1, &s2);
}
} // namespace geos::geom
} // namespace geos
/**********************************************************************
* $Log$
* Revision 1.21 2006/06/12 16:51:23 strk
* Added equality and inequality operators and tests
*
* Revision 1.20 2006/06/12 16:36:22 strk
* indentation, notes about things to be fixed.
*
* Revision 1.19 2006/06/12 10:10:39 strk
* Fixed getGeometryN() to take size_t rather then int, changed unsigned int parameters to size_t.
*
* Revision 1.18 2006/05/03 19:47:27 strk
* added operator<< for CoordinateSequence
*
**********************************************************************/
|