Uses of Class
com.vividsolutions.jts.geom.GeometryFactory
-
Packages that use GeometryFactory Package Description com.vividsolutions.jts.algorithm Contains classes and interfaces implementing fundamental computational geometry algorithms.com.vividsolutions.jts.awt Classes to perform conversions from Java2D shape objects.com.vividsolutions.jts.geom Contains theGeometryinterface hierarchy and supporting classes.com.vividsolutions.jts.geom.util Provides classes that parse and modify Geometry objects.com.vividsolutions.jts.geomgraph Contains classes that implement topology graphs.com.vividsolutions.jts.io Contains the interfaces for converting JTS objects to and from other formats.com.vividsolutions.jts.io.geojson com.vividsolutions.jts.io.gml2 Classes to read and write the GML2 geometry format.com.vividsolutions.jts.linearref Contains classes and interfaces implementing linear referencing on linear geometriescom.vividsolutions.jts.noding Classes to compute nodings for arrangements of line segments and line segment sequences.com.vividsolutions.jts.operation.linemerge Classes to perform line merging.com.vividsolutions.jts.operation.overlay Contains classes that perform a topological overlay to compute boolean spatial functions.com.vividsolutions.jts.operation.union Classes to perform efficent unioning of collections of geometries.com.vividsolutions.jts.shape com.vividsolutions.jts.shape.fractal com.vividsolutions.jts.shape.random com.vividsolutions.jts.triangulate Classes to compute Delaunay triangulations.com.vividsolutions.jts.triangulate.quadedge Classes to implement a topological subdivision of quadeges, to support creating triangulations and Voronoi diagrams.com.vividsolutions.jts.util Contains support classes for the Java Topology Suite.com.vividsolutions.jtstest.function com.vividsolutions.jtstest.testbuilder com.vividsolutions.jtstest.testbuilder.geom com.vividsolutions.jtstest.testbuilder.io.shapefile com.vividsolutions.jtstest.testbuilder.model com.vividsolutions.jtstest.util.io -
-
Uses of GeometryFactory in com.vividsolutions.jts.algorithm
Constructors in com.vividsolutions.jts.algorithm with parameters of type GeometryFactory Constructor Description ConvexHull(Coordinate[] pts, GeometryFactory geomFactory)Create a new convex hull construction for the inputCoordinatearray. -
Uses of GeometryFactory in com.vividsolutions.jts.awt
Methods in com.vividsolutions.jts.awt with parameters of type GeometryFactory Modifier and Type Method Description static GeometryFontGlyphReader. read(java.lang.String text, java.awt.Font font, double flatness, GeometryFactory geomFact)Converts text rendered in the givenFontto aGeometrystatic GeometryFontGlyphReader. read(java.lang.String text, java.awt.Font font, GeometryFactory geomFact)Converts text rendered in the givenFontto aGeometryusing a standard flatness factor.static GeometryFontGlyphReader. read(java.lang.String text, java.lang.String fontName, int pointSize, GeometryFactory geomFact)Converts text rendered in the given font and pointsize to aGeometryusing a standard flatness factor.static GeometryShapeReader. read(java.awt.geom.PathIterator pathIt, GeometryFactory geomFact)Converts a flat path to aGeometry.static GeometryShapeReader. read(java.awt.Shape shp, double flatness, GeometryFactory geomFact)Converts a Shape to a Geometry, flattening it first.Constructors in com.vividsolutions.jts.awt with parameters of type GeometryFactory Constructor Description ShapeReader(GeometryFactory geometryFactory) -
Uses of GeometryFactory in com.vividsolutions.jts.geom
Fields in com.vividsolutions.jts.geom declared as GeometryFactory Modifier and Type Field Description protected GeometryFactoryGeometry. factoryTheGeometryFactoryused to create this GeometryMethods in com.vividsolutions.jts.geom that return GeometryFactory Modifier and Type Method Description GeometryFactoryGeometry. getFactory()Gets the factory which contains the context in which this geometry was created.Methods in com.vividsolutions.jts.geom with parameters of type GeometryFactory Modifier and Type Method Description LineStringLineSegment. toGeometry(GeometryFactory geomFactory)Creates a LineString with the same coordinates as this segmentGeometryOctagonalEnvelope. toGeometry(GeometryFactory geomFactory)Constructors in com.vividsolutions.jts.geom with parameters of type GeometryFactory Constructor Description Geometry(GeometryFactory factory)Creates a newGeometryvia the specified GeometryFactory.GeometryCollection(Geometry[] geometries, GeometryFactory factory)LinearRing(CoordinateSequence points, GeometryFactory factory)Constructs aLinearRingwith the vertices specifed by the givenCoordinateSequence.LineString(CoordinateSequence points, GeometryFactory factory)Constructs aLineStringwith the given points.MultiLineString(LineString[] lineStrings, GeometryFactory factory)MultiPoint(Point[] points, GeometryFactory factory)MultiPolygon(Polygon[] polygons, GeometryFactory factory)Point(CoordinateSequence coordinates, GeometryFactory factory)Polygon(LinearRing shell, LinearRing[] holes, GeometryFactory factory)Constructs aPolygonwith the given exterior boundary and interior boundaries. -
Uses of GeometryFactory in com.vividsolutions.jts.geom.util
Fields in com.vividsolutions.jts.geom.util declared as GeometryFactory Modifier and Type Field Description protected GeometryFactoryGeometryTransformer. factoryMethods in com.vividsolutions.jts.geom.util that return GeometryFactory Modifier and Type Method Description static GeometryFactoryGeometryCombiner. extractFactory(java.util.Collection geoms)Extracts the GeometryFactory used by the geometries in a collectionMethods in com.vividsolutions.jts.geom.util with parameters of type GeometryFactory Modifier and Type Method Description GeometryGeometryEditor.CoordinateOperation. edit(Geometry geometry, GeometryFactory factory)GeometryGeometryEditor.CoordinateSequenceOperation. edit(Geometry geometry, GeometryFactory factory)GeometryGeometryEditor.GeometryEditorOperation. edit(Geometry geometry, GeometryFactory factory)Edits a Geometry by returning a new Geometry with a modification.GeometryGeometryEditor.NoOpGeometryOperation. edit(Geometry geometry, GeometryFactory factory)Constructors in com.vividsolutions.jts.geom.util with parameters of type GeometryFactory Constructor Description GeometryEditor(GeometryFactory factory)Creates a new GeometryEditor object which will create editedGeometrys with the givenGeometryFactory.SineStarFactory(GeometryFactory geomFact)Creates a factory which will create sine stars using the givenGeometryFactory. -
Uses of GeometryFactory in com.vividsolutions.jts.geomgraph
Fields in com.vividsolutions.jts.geomgraph declared as GeometryFactory Modifier and Type Field Description protected GeometryFactoryEdgeRing. geometryFactoryMethods in com.vividsolutions.jts.geomgraph with parameters of type GeometryFactory Modifier and Type Method Description PolygonEdgeRing. toPolygon(GeometryFactory geometryFactory)Constructors in com.vividsolutions.jts.geomgraph with parameters of type GeometryFactory Constructor Description EdgeRing(DirectedEdge start, GeometryFactory geometryFactory) -
Uses of GeometryFactory in com.vividsolutions.jts.io
Constructors in com.vividsolutions.jts.io with parameters of type GeometryFactory Constructor Description WKBReader(GeometryFactory geometryFactory)WKTReader(GeometryFactory geometryFactory)Creates a reader that creates objects using the givenGeometryFactory. -
Uses of GeometryFactory in com.vividsolutions.jts.io.geojson
Constructors in com.vividsolutions.jts.io.geojson with parameters of type GeometryFactory Constructor Description GeoJsonReader(GeometryFactory geometryFactory)This constructor accepts aGeometryFactorythat is used to create the output geometries and to override the GeoJson CRS. -
Uses of GeometryFactory in com.vividsolutions.jts.io.gml2
Methods in com.vividsolutions.jts.io.gml2 with parameters of type GeometryFactory Modifier and Type Method Description GeometryGMLReader. read(java.io.Reader reader, GeometryFactory geometryFactory)Reads a GML2 Geometry from aReaderinto a singleGeometryIf a collection of Geometries is found, aGeometryCollectionis returned.GeometryGMLReader. read(java.lang.String gml, GeometryFactory geometryFactory)Reads a GML2 Geometry from a String into a singleGeometryIf a collection of geometries is found, aGeometryCollectionis returned.Constructors in com.vividsolutions.jts.io.gml2 with parameters of type GeometryFactory Constructor Description GMLHandler(GeometryFactory gf, org.xml.sax.ErrorHandler delegate)Creates a new handler. -
Uses of GeometryFactory in com.vividsolutions.jts.linearref
Constructors in com.vividsolutions.jts.linearref with parameters of type GeometryFactory Constructor Description LinearGeometryBuilder(GeometryFactory geomFact) -
Uses of GeometryFactory in com.vividsolutions.jts.noding
Methods in com.vividsolutions.jts.noding with parameters of type GeometryFactory Modifier and Type Method Description static GeometrySegmentStringUtil. toGeometry(java.util.Collection segStrings, GeometryFactory geomFact)Converts a collection ofSegmentStrings into aGeometry. -
Uses of GeometryFactory in com.vividsolutions.jts.operation.linemerge
Constructors in com.vividsolutions.jts.operation.linemerge with parameters of type GeometryFactory Constructor Description EdgeString(GeometryFactory factory)Constructs an EdgeString with the given factory used to convert this EdgeString to a LineString -
Uses of GeometryFactory in com.vividsolutions.jts.operation.overlay
Methods in com.vividsolutions.jts.operation.overlay with parameters of type GeometryFactory Modifier and Type Method Description static GeometryOverlayOp. createEmptyResult(int overlayOpCode, Geometry a, Geometry b, GeometryFactory geomFact)Creates an empty result geometry of the appropriate dimension, based on the given overlay operation and the dimensions of the inputs.Constructors in com.vividsolutions.jts.operation.overlay with parameters of type GeometryFactory Constructor Description LineBuilder(OverlayOp op, GeometryFactory geometryFactory, PointLocator ptLocator)MaximalEdgeRing(DirectedEdge start, GeometryFactory geometryFactory)MinimalEdgeRing(DirectedEdge start, GeometryFactory geometryFactory)PointBuilder(OverlayOp op, GeometryFactory geometryFactory, PointLocator ptLocator)PolygonBuilder(GeometryFactory geometryFactory) -
Uses of GeometryFactory in com.vividsolutions.jts.operation.union
Methods in com.vividsolutions.jts.operation.union with parameters of type GeometryFactory Modifier and Type Method Description static GeometryUnaryUnionOp. union(java.util.Collection geoms, GeometryFactory geomFact)Computes the geometric union of aCollectionofGeometrys.Constructors in com.vividsolutions.jts.operation.union with parameters of type GeometryFactory Constructor Description UnaryUnionOp(java.util.Collection geoms, GeometryFactory geomFact)Constructs a unary union operation for aCollectionofGeometrys. -
Uses of GeometryFactory in com.vividsolutions.jts.shape
Fields in com.vividsolutions.jts.shape declared as GeometryFactory Modifier and Type Field Description protected GeometryFactoryGeometricShapeBuilder. geomFactoryConstructors in com.vividsolutions.jts.shape with parameters of type GeometryFactory Constructor Description GeometricShapeBuilder(GeometryFactory geomFactory) -
Uses of GeometryFactory in com.vividsolutions.jts.shape.fractal
Constructors in com.vividsolutions.jts.shape.fractal with parameters of type GeometryFactory Constructor Description KochSnowflakeBuilder(GeometryFactory geomFactory)SierpinskiCarpetBuilder(GeometryFactory geomFactory) -
Uses of GeometryFactory in com.vividsolutions.jts.shape.random
Constructors in com.vividsolutions.jts.shape.random with parameters of type GeometryFactory Constructor Description RandomPointsBuilder(GeometryFactory geomFact)Create a shape factory which will create shapes using the givenGeometryFactory.RandomPointsInGridBuilder(GeometryFactory geomFact)Create a builder which will create shapes using the givenGeometryFactory. -
Uses of GeometryFactory in com.vividsolutions.jts.triangulate
Methods in com.vividsolutions.jts.triangulate with parameters of type GeometryFactory Modifier and Type Method Description GeometryVoronoiDiagramBuilder. getDiagram(GeometryFactory geomFact)Gets the faces of the computed diagram as aGeometryCollectionofPolygons, clipped as specified.GeometryConformingDelaunayTriangulationBuilder. getEdges(GeometryFactory geomFact)Gets the edges of the computed triangulation as aMultiLineString.GeometryDelaunayTriangulationBuilder. getEdges(GeometryFactory geomFact)Gets the edges of the computed triangulation as aMultiLineString.GeometryConformingDelaunayTriangulationBuilder. getTriangles(GeometryFactory geomFact)Gets the faces of the computed triangulation as aGeometryCollectionofPolygon.GeometryDelaunayTriangulationBuilder. getTriangles(GeometryFactory geomFact)Gets the faces of the computed triangulation as aGeometryCollectionofPolygon. -
Uses of GeometryFactory in com.vividsolutions.jts.triangulate.quadedge
Methods in com.vividsolutions.jts.triangulate.quadedge with parameters of type GeometryFactory Modifier and Type Method Description GeometryQuadEdgeSubdivision. getEdges(GeometryFactory geomFact)Gets the geometry for the edges in the subdivision as aMultiLineStringcontaining 2-point lines.PolygonQuadEdgeTriangle. getGeometry(GeometryFactory fact)GeometryQuadEdgeSubdivision. getTriangles(GeometryFactory geomFact)Gets the geometry for the triangles in a triangulated subdivision as aGeometryCollectionof triangularPolygons.PolygonQuadEdgeSubdivision. getVoronoiCellPolygon(QuadEdge qe, GeometryFactory geomFact)Gets the Voronoi cell around a site specified by the origin of a QuadEdge.java.util.ListQuadEdgeSubdivision. getVoronoiCellPolygons(GeometryFactory geomFact)Gets a List ofPolygons for the Voronoi cells of this triangulation.GeometryQuadEdgeSubdivision. getVoronoiDiagram(GeometryFactory geomFact)Gets the cells in the Voronoi diagram for this triangulation. -
Uses of GeometryFactory in com.vividsolutions.jts.util
Fields in com.vividsolutions.jts.util declared as GeometryFactory Modifier and Type Field Description protected GeometryFactoryGeometricShapeFactory. geomFactConstructors in com.vividsolutions.jts.util with parameters of type GeometryFactory Constructor Description GeometricShapeFactory(GeometryFactory geomFact)Create a shape factory which will create shapes using the givenGeometryFactory. -
Uses of GeometryFactory in com.vividsolutions.jtstest.function
Methods in com.vividsolutions.jtstest.function that return GeometryFactory Modifier and Type Method Description static GeometryFactoryFunctionsUtil. getFactoryOrDefault(Geometry g)static GeometryFactoryFunctionsUtil. getFactoryOrDefault(Geometry g1, Geometry g2) -
Uses of GeometryFactory in com.vividsolutions.jtstest.testbuilder
Methods in com.vividsolutions.jtstest.testbuilder that return GeometryFactory Modifier and Type Method Description static GeometryFactoryJTSTestBuilder. getGeometryFactory() -
Uses of GeometryFactory in com.vividsolutions.jtstest.testbuilder.geom
Constructors in com.vividsolutions.jtstest.testbuilder.geom with parameters of type GeometryFactory Constructor Description GeometryCombiner(GeometryFactory geomFactory) -
Uses of GeometryFactory in com.vividsolutions.jtstest.testbuilder.io.shapefile
Methods in com.vividsolutions.jtstest.testbuilder.io.shapefile with parameters of type GeometryFactory Modifier and Type Method Description GeometryMultiLineHandler. read(EndianDataInputStream file, GeometryFactory geometryFactory, int contentLength)GeometryMultiPointHandler. read(EndianDataInputStream file, GeometryFactory geometryFactory, int contentLength)GeometryPointHandler. read(EndianDataInputStream file, GeometryFactory geometryFactory, int contentLength)GeometryPolygonHandler. read(EndianDataInputStream file, GeometryFactory geometryFactory, int contentLength)GeometryCollectionShapefile. read(GeometryFactory geometryFactory)Initialises a shapefile from disk.GeometryShapeHandler. read(EndianDataInputStream file, GeometryFactory geometryFactory, int contentLength)voidShapefile. readStream(GeometryFactory geometryFactory)Initialises a shapefile from disk. -
Uses of GeometryFactory in com.vividsolutions.jtstest.testbuilder.model
Methods in com.vividsolutions.jtstest.testbuilder.model that return GeometryFactory Modifier and Type Method Description GeometryFactoryTestBuilderModel. getGeometryFactory() -
Uses of GeometryFactory in com.vividsolutions.jtstest.util.io
Methods in com.vividsolutions.jtstest.util.io with parameters of type GeometryFactory Modifier and Type Method Description static GeometryIOUtil. readFile(java.lang.String filename, GeometryFactory geomFact)static GeometryIOUtil. readGeoJSONString(java.lang.String s, GeometryFactory geomFact)static GeometryIOUtil. readGMLString(java.lang.String gml, GeometryFactory geomFact)static GeometryIOUtil. readWKBHexString(java.lang.String wkb, GeometryFactory geomFact)static GeometryIOUtil. readWKTString(java.lang.String wkt, GeometryFactory geomFact)Reads one or more WKT geometries from a string.Constructors in com.vividsolutions.jtstest.util.io with parameters of type GeometryFactory Constructor Description GeoJsonMultiReader(GeometryFactory geomFact)MultiFormatReader(GeometryFactory geomFactory)WKTOrWKBReader(GeometryFactory geomFactory)
-