/********************************************************************** * * GEOS - Geometry Engine Open Source * http://geos.osgeo.org * * Copyright (C) 2006 Refractions Research 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. * ********************************************************************** * * Last port: operation/distance/ConnectedElementPointFilter.java rev. 1.7 (JTS-1.10) * **********************************************************************/ #pragma once #include #include // for inheritance #include // Forward declarations namespace geos { namespace geom { class CoordinateXY; class Geometry; } } namespace geos { namespace operation { // geos::operation namespace distance { // geos::operation::distance /** \brief * Extracts a single point * from each connected element in a Geometry * (e.g. a polygon, linestring or point) * and returns them in a list */ class GEOS_DLL ConnectedElementPointFilter: public geom::GeometryFilter { private: std::vector* pts; public: /** * Returns a list containing a Coordinate from each Polygon, LineString, and Point * found inside the specified geometry. Thus, if the specified geometry is * not a GeometryCollection, an empty list will be returned. */ static std::vector* getCoordinates(const geom::Geometry* geom); ConnectedElementPointFilter(std::vector* newPts) : pts(newPts) {} void filter_ro(const geom::Geometry* geom) override; //void filter_rw(geom::Geometry * /*geom*/) {}; }; } // namespace geos::operation::distance } // namespace geos::operation } // namespace geos