⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 repeatedpointtester.cpp

📁 在Linux下做的QuadTree的程序
💻 CPP
字号:
/********************************************************************** * $Id: RepeatedPointTester.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. * * 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/operation/valid/RepeatedPointTester.h>#include <geos/util/UnsupportedOperationException.h>#include <geos/geom/CoordinateSequence.h>#include <geos/geom/Geometry.h>#include <geos/geom/Point.h>#include <geos/geom/LineString.h>#include <geos/geom/LinearRing.h>#include <geos/geom/Polygon.h>#include <geos/geom/MultiPoint.h>#include <geos/geom/MultiPolygon.h>#include <geos/geom/MultiLineString.h>#include <geos/geom/GeometryCollection.h>#include <typeinfo>using namespace geos::geom;namespace geos {namespace operation { // geos.operationnamespace valid { // geos.operation.validCoordinate&RepeatedPointTester::getCoordinate(){	return repeatedCoord;}boolRepeatedPointTester::hasRepeatedPoint(const Geometry *g){	if (g->isEmpty()) return false;	if (typeid(*g)==typeid(Point)) return false;	else if (typeid(*g)==typeid(MultiPoint)) return false;	// LineString also handles LinearRings	else if (typeid(*g)==typeid(LineString)) return hasRepeatedPoint(((LineString*)g)->getCoordinatesRO());	else if (typeid(*g)==typeid(LinearRing)) return hasRepeatedPoint(((LineString*)g)->getCoordinatesRO());	else if (typeid(*g)==typeid(Polygon)) return hasRepeatedPoint((Polygon*)g);	else if (typeid(*g)==typeid(MultiPolygon)) return hasRepeatedPoint((MultiPolygon*)g);	else if (typeid(*g)==typeid(MultiLineString)) return hasRepeatedPoint((MultiLineString*)g);	else if (typeid(*g)==typeid(GeometryCollection)) return hasRepeatedPoint((GeometryCollection*)g);	else  throw util::UnsupportedOperationException(typeid(*g).name());}boolRepeatedPointTester::hasRepeatedPoint(const CoordinateSequence *coord){	unsigned int npts=coord->getSize();	for(unsigned int i=1; i<npts; ++i)	{		if (coord->getAt(i - 1)==coord->getAt(i)) {			repeatedCoord=coord->getAt(i);			return true;		}	}	return false;}boolRepeatedPointTester::hasRepeatedPoint(const Polygon *p){	if (hasRepeatedPoint(p->getExteriorRing()->getCoordinates()))	{		return true;	}	for(size_t i=0, n=p->getNumInteriorRing(); i<n; ++i)	{		if (hasRepeatedPoint(p->getInteriorRingN(i)->getCoordinates()))		{			return true;		}	}	return false;}boolRepeatedPointTester::hasRepeatedPoint(const GeometryCollection *gc){	for(unsigned int i=0, n=gc->getNumGeometries(); i<n; ++i)	{		const Geometry *g=gc->getGeometryN(i);		if (hasRepeatedPoint(g)) return true;	}	return false;}boolRepeatedPointTester::hasRepeatedPoint(const MultiPolygon *gc){	for(unsigned int i=0, n=gc->getNumGeometries(); i<n; ++i)	{		const Geometry *g=gc->getGeometryN(i);		if (hasRepeatedPoint(g)) return true;	}	return false;}boolRepeatedPointTester::hasRepeatedPoint(const MultiLineString *gc){	for(unsigned int i=0, n=gc->getNumGeometries(); i<n; ++i)	{		const Geometry *g=gc->getGeometryN(i);		if (hasRepeatedPoint(g)) return true;	}	return false;}} // namespace geos.operation.valid} // namespace geos.operation} // namespace geos/********************************************************************** * $Log$ * Revision 1.20  2006/06/09 07:42:13  strk * * source/geomgraph/GeometryGraph.cpp, source/operation/buffer/OffsetCurveSetBuilder.cpp, source/operation/overlay/OverlayOp.cpp, source/operation/valid/RepeatedPointTester.cpp: Fixed warning after Polygon ring accessor methods changed to work with size_t. Small optimizations in loops. * * Revision 1.19  2006/04/07 09:54:30  strk * Geometry::getNumGeometries() changed to return 'unsigned int' * rather then 'int' * * Revision 1.18  2006/03/20 16:57:44  strk * spatialindex.h and opValid.h headers split * * Revision 1.17  2006/03/09 16:46:49  strk * geos::geom namespace definition, first pass at headers split * * Revision 1.16  2006/03/06 19:40:47  strk * geos::util namespace. New GeometryCollection::iterator interface, many cleanups. * * Revision 1.15  2006/02/19 19:46:50  strk * Packages <-> namespaces mapping for most GEOS internal code (uncomplete, but working). Dir-level libs for index/ subdirs. * * Revision 1.14  2006/02/09 15:52:47  strk * GEOSException derived from std::exception; always thrown and cought by const ref. * * Revision 1.13  2006/01/31 19:07:34  strk * - Renamed DefaultCoordinateSequence to CoordinateArraySequence. * - Moved GetNumGeometries() and GetGeometryN() interfaces *   from GeometryCollection to Geometry class. * - Added getAt(int pos, Coordinate &to) funtion to CoordinateSequence class. * - Reworked automake scripts to produce a static lib for each subdir and *   then link all subsystem's libs togheter * - Moved C-API in it's own top-level dir capi/ * - Moved source/bigtest and source/test to tests/bigtest and test/xmltester * - Fixed PointLocator handling of LinearRings * - Changed CoordinateArrayFilter to reduce memory copies * - Changed UniqueCoordinateArrayFilter to reduce memory copies * - Added CGAlgorithms::isPointInRing() version working with *   Coordinate::ConstVect type (faster!) * - Ported JTS-1.7 version of ConvexHull with big attention to *   memory usage optimizations. * - Improved XMLTester output and user interface * - geos::geom::util namespace used for geom/util stuff * - Improved memory use in geos::geom::util::PolygonExtractor * - New ShortCircuitedGeometryVisitor class * - New operation/predicate package * * Revision 1.12  2005/11/25 11:31:21  strk * Removed all CoordinateSequence::getSize() calls embedded in for loops. * * Revision 1.11  2004/07/08 19:34:50  strk * Mirrored JTS interface of CoordinateSequence, factory and * default implementations. * Added CoordinateArraySequenceFactory::instance() function. * * Revision 1.10  2004/07/02 13:28:29  strk * Fixed all #include lines to reflect headers layout change. * Added client application build tips in README. * * Revision 1.9  2003/11/07 01:23:42  pramsey * Add standard CVS headers licence notices and copyrights to all cpp and h * files. * * Revision 1.8  2003/10/16 17:33:20  strk * dropped useless string() cast * **********************************************************************/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -