Uses of Class
org.locationtech.jts.geom.MultiPoint
Packages that use MultiPoint
Package
Description
Contains the
Geometry
interface hierarchy and supporting classes.Provides classes that parse and modify Geometry objects.
Contains the interfaces for converting JTS objects to and from other formats.
Classes to read and write the GML2 geometry format.
Provides classes for implementing operations on geometries
Provides classes for testing the validity of geometries.
-
Uses of MultiPoint in org.locationtech.jts.geom
Methods in org.locationtech.jts.geom that return MultiPointModifier and TypeMethodDescriptionMultiPoint.copy()
GeometryFactory.createMultiPoint()
GeometryFactory.createMultiPoint
(Coordinate[] coordinates) Deprecated.GeometryFactory.createMultiPoint
(CoordinateSequence coordinates) Creates aMultiPoint
using the points in the givenCoordinateSequence
.GeometryFactory.createMultiPoint
(Point[] point) Creates aMultiPoint
using the givenPoint
s.GeometryFactory.createMultiPointFromCoords
(Coordinate[] coordinates) Creates aMultiPoint
using the givenCoordinate
s.static MultiPoint[]
GeometryFactory.toMultiPointArray
(Collection multiPoints) Converts theList
to an array. -
Uses of MultiPoint in org.locationtech.jts.geom.util
Methods in org.locationtech.jts.geom.util with parameters of type MultiPointModifier and TypeMethodDescriptionprotected Geometry
GeometryTransformer.transformMultiPoint
(MultiPoint geom, Geometry parent) -
Uses of MultiPoint in org.locationtech.jts.io
Methods in org.locationtech.jts.io that return MultiPointModifier and TypeMethodDescriptionprivate MultiPoint
WKBReader.readMultiPoint()
private MultiPoint
WKTReader.readMultiPointText()
Creates aMultiPoint
using the next tokens in the stream.Methods in org.locationtech.jts.io with parameters of type MultiPointModifier and TypeMethodDescriptionprivate void
WKTWriter.appendMultiPointTaggedText
(MultiPoint multipoint, int level, Writer writer) Converts aMultiPoint
to <MultiPoint Tagged Text> format, then appends it to the writer.private void
WKTWriter.appendMultiPointText
(MultiPoint multiPoint, int level, Writer writer) Converts aMultiPoint
to <MultiPoint Text> format, then appends it to the writer. -
Uses of MultiPoint in org.locationtech.jts.io.gml2
Methods in org.locationtech.jts.io.gml2 with parameters of type MultiPointModifier and TypeMethodDescriptionprivate void
GMLWriter.writeMultiPoint
(MultiPoint mp, Writer writer, int level) -
Uses of MultiPoint in org.locationtech.jts.operation
Methods in org.locationtech.jts.operation that return MultiPointMethods in org.locationtech.jts.operation with parameters of type MultiPointModifier and TypeMethodDescriptionboolean
IsSimpleOp.isSimple
(MultiPoint mp) Deprecated.use isSimple()private boolean
IsSimpleOp.isSimpleMultiPoint
(MultiPoint mp) -
Uses of MultiPoint in org.locationtech.jts.operation.valid
Methods in org.locationtech.jts.operation.valid with parameters of type MultiPointModifier and TypeMethodDescriptionprivate void
IsValidOp.checkValid
(MultiPoint g) Checks validity of a MultiPoint. -
Uses of MultiPoint in org.locationtech.jtstest.util.io
Methods in org.locationtech.jtstest.util.io with parameters of type MultiPointModifier and TypeMethodDescriptionprivate void
SVGWriter.appendMultiPointTaggedText
(MultiPoint multipoint, int level, Writer writer) Converts aMultiPoint
to <MultiPoint Tagged Text> format, then appends it to the writer.private void
SVGWriter.appendMultiPointText
(MultiPoint multiPoint, int level, Writer writer) Converts aMultiPoint
to <MultiPoint Text> format, then appends it to the writer.
GeometryFactory.createMultiPointFromCoords(org.locationtech.jts.geom.Coordinate[])
instead