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: Point.cpp,v 1.31 2004/11/23 16:22:49 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.
*
**********************************************************************
* $Log: Point.cpp,v $
* Revision 1.31 2004/11/23 16:22:49 strk
* Added ElevationMatrix class and components to do post-processing draping of overlayed geometries.
*
* Revision 1.30 2004/09/13 12:39:14 strk
* Made Point and MultiPoint subject to Validity tests.
*
* Revision 1.29 2004/07/08 19:34:49 strk
* Mirrored JTS interface of CoordinateSequence, factory and
* default implementations.
* Added DefaultCoordinateSequenceFactory::instance() function.
*
* Revision 1.28 2004/07/06 17:58:22 strk
* Removed deprecated Geometry constructors based on PrecisionModel and
* SRID specification. Removed SimpleGeometryPrecisionReducer capability
* of changing Geometry's factory. Reverted Geometry::factory member
* to be a reference to external factory.
*
* Revision 1.27 2004/07/05 10:50:20 strk
* deep-dopy construction taken out of Geometry and implemented only
* in GeometryFactory.
* Deep-copy geometry construction takes care of cleaning up copies
* on exception.
* Implemented clone() method for CoordinateSequence
* Changed createMultiPoint(CoordinateSequence) signature to reflect
* copy semantic (by-ref instead of by-pointer).
* Cleaned up documentation.
*
* Revision 1.26 2004/07/02 14:27:32 strk
* Added deep-copy / take-ownerhship for Point type.
*
* Revision 1.25 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.24 2004/07/01 14:12:44 strk
*
* Geometry constructors come now in two flavors:
* - deep-copy args (pass-by-reference)
* - take-ownership of args (pass-by-pointer)
* Same functionality is available through GeometryFactory,
* including buildGeometry().
*
* Revision 1.23 2004/06/28 21:11:43 strk
* Moved getGeometryTypeId() definitions from geom.h to each geometry module.
* Added holes argument check in Polygon.cpp.
*
* Revision 1.22 2004/04/16 14:12:52 strk
* Memory leak fix in copy constructor
*
* Revision 1.21 2004/04/16 08:35:52 strk
* Memory leaks fixed and const correctness applied for Point class.
*
* Revision 1.20 2004/04/13 14:45:54 strk
* Removed faulty assert in constructor
*
* Revision 1.19 2004/04/10 22:41:24 ybychkov
* "precision" upgraded to JTS 1.4
*
* Revision 1.18 2004/03/31 07:50:37 ybychkov
* "geom" partially upgraded to JTS 1.4
*
* Revision 1.17 2003/11/07 01:23:42 pramsey
* Add standard CVS headers licence notices and copyrights to all cpp and h
* files.
*
*
**********************************************************************/
#include <geos/geom.h>
#include <geos/util.h>
namespace geos {
/**
* Creates a Point using the given CoordinateSequence (must have 1 element)
*
* @param newCoords
* contains the single coordinate on which to base this
* <code>Point</code> or <code>null</code> to create
* the empty geometry.
*
* If not null the created Point will take ownership of newCoords.
*/
Point::Point(CoordinateSequence *newCoords, const GeometryFactory *factory): Geometry(factory) {
if (newCoords==NULL) {
coordinates=factory->getCoordinateSequenceFactory()->create(NULL);
return;
}
if (newCoords->getSize() != 1)
{
throw new IllegalArgumentException("Point coordinate list must contain a single element");
}
coordinates=newCoords;
}
Point::Point(const Point &p): Geometry(p.getFactory()) {
coordinates=p.coordinates->clone();
}
Geometry* Point::clone() const {
return new Point(*this);
}
CoordinateSequence* Point::getCoordinates() const {
return coordinates->clone();
}
int Point::getNumPoints() const {
return isEmpty() ? 0 : 1;
}
bool Point::isEmpty() const {
return (*getCoordinate())==Coordinate::getNull();
}
bool Point::isSimple() const {return true;}
//bool Point::isValid() const {return true;}
int Point::getDimension() const {return 0;}
int Point::getBoundaryDimension() const {return Dimension::False;}
double Point::getX() const {
if (isEmpty()) {
throw new UnsupportedOperationException("getX called on empty Point\n");
}
return getCoordinate()->x;
}
double Point::getY() const {
if (isEmpty()) {
throw new UnsupportedOperationException("getY called on empty Point\n");
}
return getCoordinate()->y;
}
const Coordinate* Point::getCoordinate() const {
return coordinates->getSize()!=0 ? &(coordinates->getAt(0)) : NULL;
}
string Point::getGeometryType() const {
return "Point";
}
Geometry* Point::getBoundary() const {
return getFactory()->createGeometryCollection(NULL);
}
Envelope* Point::computeEnvelopeInternal() const {
if (isEmpty()) {
return new Envelope();
}
return new Envelope(getCoordinate()->x, getCoordinate()->x, getCoordinate()->y, getCoordinate()->y);
}
void Point::apply_ro(CoordinateFilter *filter) const
{
if (isEmpty()) {return;}
filter->filter_ro(getCoordinate());
}
void Point::apply_rw(CoordinateFilter *filter)
{
if (isEmpty()) {return;}
Coordinate newcoord = coordinates->getAt(0);
filter->filter_rw(&newcoord);
coordinates->setAt(newcoord, 0);
}
void Point::apply_rw(GeometryFilter *filter) {
filter->filter_rw(this);
}
void Point::apply_ro(GeometryFilter *filter) const {
filter->filter_ro(this);
}
void Point::apply_rw(GeometryComponentFilter *filter) {
filter->filter_rw(this);
}
void Point::apply_ro(GeometryComponentFilter *filter) const {
filter->filter_ro(this);
}
bool Point::equalsExact(const Geometry *other, double tolerance) const
{
if (!isEquivalentClass(other)) {
return false;
}
if (isEmpty() && other->isEmpty()) {
return true;
}
return equal(*((Point*) other)->getCoordinate(), *getCoordinate(), tolerance);
}
int Point::compareToSameClass(const Geometry *point) const {
return getCoordinate()->compareTo(*(((Point*)point)->getCoordinate()));
}
Point::~Point(){
delete coordinates;
}
GeometryTypeId
Point::getGeometryTypeId() const {
return GEOS_POINT;
}
}
|