20 #ifndef GEOS_GEOM_UTIL_GEOMETRYTRANSFORMER_H 21 #define GEOS_GEOM_UTIL_GEOMETRYTRANSFORMER_H 24 #include <geos/export.h> 25 #include <geos/geom/Coordinate.h> 26 #include <geos/geom/Geometry.h> 27 #include <geos/geom/CoordinateSequence.h> 36 class GeometryFactory;
43 class MultiLineString;
44 class GeometryCollection;
97 std::unique_ptr<Geometry> transform(
const Geometry* nInputGeom);
99 void setSkipTransformedInvalidInteriorRings(
bool b);
114 CoordinateSequence::Ptr createCoordinateSequence(
115 std::unique_ptr< std::vector<Coordinate> > coords);
117 virtual CoordinateSequence::Ptr transformCoordinates(
161 bool pruneEmptyGeometry;
168 bool preserveGeometryCollectionType;
183 bool skipTransformedInvalidInteriorRings;
195 #endif // GEOS_GEOM_UTIL_GEOMETRYTRANSFORMER_H
Models a collection of Polygons.
Definition: MultiPolygon.h:59
Basic implementation of Geometry, constructed and destructed by GeometryFactory.
Definition: Geometry.h:188
Definition: LineString.h:68
Represents a linear polygon, which may include holes.
Definition: Polygon.h:64
Supplies a set of utility methods for building Geometry objects from CoordinateSequence or other Geom...
Definition: GeometryFactory.h:68
Represents a collection of heterogeneous Geometry objects.
Definition: GeometryCollection.h:55
Basic namespace for all GEOS functionalities.
Definition: IndexedNestedRingTester.h:25
Definition: MultiPoint.h:53
Models an OGC SFS LinearRing. A LinearRing is a LineString which is both closed and simple.
Definition: LinearRing.h:54
The internal representation of a list of coordinates inside a Geometry.
Definition: CoordinateSequence.h:58
std::unique_ptr< Geometry > Ptr
An unique_ptr of Geometry.
Definition: Geometry.h:201
Models a collection of LineStrings.
Definition: MultiLineString.h:51