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
|
/**********************************************************************
* $Id: CoordinateSequence.cpp,v 1.6 2004/12/03 22:52:56 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/geom.h>
#include <stdio.h>
namespace geos {
bool
CoordinateSequence::hasRepeatedPoints() const
{
int size=getSize();
for(int 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(int n, CoordinateSequence *c)
{
return c->getSize()>=n?c:DefaultCoordinateSequenceFactory::instance()->create(NULL);
}
bool
CoordinateSequence::hasRepeatedPoints(const CoordinateSequence *cl) {
int size=(int) cl->getSize();
for(int 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;
int size=(int) getSize();
for(int 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;
int size=(int) cl->getSize();
for(int 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)
{
for (int i=0; i<cl->getSize(); i++) {
if ((*coordinate)==cl->getAt(i)) {
return i;
}
}
return -1;
}
void
CoordinateSequence::scroll(CoordinateSequence* cl,const Coordinate* firstCoordinate)
{
int i, j=0;
int ind=indexOf(firstCoordinate,cl);
if (ind<1) return; // not found or already first
int 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){
int last=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(CoordinateSequence *cl1,CoordinateSequence *cl2){
if (cl1==cl2) return true;
if (cl1==NULL||cl2==NULL) return false;
if (cl1->getSize()!=cl2->getSize()) return false;
for (int i = 0; i<cl1->getSize(); i++) {
if (!(cl1->getAt(i)==cl2->getAt(i))) return false;
}
return true;
}
/** Add an array of coordinates
* @param vc The coordinates
* @param allowRepeated if set to false, repeated coordinates are collapsed
* @return true (as by general collection contract)
*/
void CoordinateSequence::add(const vector<Coordinate>* vc,bool allowRepeated) {
for(int i=0;i<(int)vc->size();i++) {
add((*vc)[i],allowRepeated);
}
}
/** Add a coordinate
* @param c The coordinate to add
* @param allowRepeated if set to false, repeated coordinates are collapsed
* @return true (as by general collection contract)
*/
void CoordinateSequence::add(const Coordinate& c,bool allowRepeated) {
if (!allowRepeated) {
if (getSize()>=1) {
const Coordinate& last=getAt(getSize()-1);
if (last.equals2D(c)) return;
}
}
add(c);
}
/* Here for backward compatibility */
void
CoordinateSequence::add(CoordinateSequence *cl,bool allowRepeated,bool direction)
{
add((const CoordinateSequence *)cl,allowRepeated,direction);
}
/**
* Add an array of coordinates
* @param cl The coordinates
* @param allowRepeated if set to false, repeated coordinates are collapsed
* @param direction if false, the array is added in reverse order
* @return true (as by general collection contract)
*/
void
CoordinateSequence::add(const CoordinateSequence *cl,bool allowRepeated,bool direction)
{
if (direction) {
for (int i = 0; i < cl->getSize(); i++) {
add(cl->getAt(i), allowRepeated);
}
} else {
for (int j =cl->getSize()-1;j>=0;j--) {
add(cl->getAt(j), allowRepeated);
}
}
}
/**
* This function allocates space for a CoordinateSequence object
* being a copy of the input once with consecutive equal points
* removed.
*/
CoordinateSequence*
CoordinateSequence::removeRepeatedPoints(const CoordinateSequence *cl)
{
CoordinateSequence* ret=DefaultCoordinateSequenceFactory::instance()->create(NULL);
const vector<Coordinate> *v=cl->toVector();
ret->add(v,false);
//delete v;
return ret;
}
} // namespace geos
/**********************************************************************
* $Log: CoordinateSequence.cpp,v $
* Revision 1.6 2004/12/03 22:52:56 strk
* enforced const return of CoordinateSequence::toVector() method to derivate classes.
*
* Revision 1.5 2004/11/04 19:08:06 strk
* Cleanups, initializers list, profiling.
*
* Revision 1.4 2004/10/13 10:03:02 strk
* Added missing linemerge and polygonize operation.
* Bug fixes and leaks removal from the newly added modules and
* planargraph (used by them).
* Some comments and indentation changes.
*
* Revision 1.3 2004/09/23 21:36:22 strk
* Fixed a bug in ::reverse (thanks to Elliott Edwards)
*
* Revision 1.2 2004/07/21 09:55:24 strk
* CoordinateSequence::atLeastNCoordinatesOrNothing definition fix.
* Documentation fixes.
*
* Revision 1.1 2004/07/08 19:38:56 strk
* renamed from *List* equivalents
*
**********************************************************************/
|