Uses of Class
org.geolatte.geom.LineString
-
Packages that use LineString Package Description org.geolatte.geom A model for geospatial geometries.org.geolatte.geom.builder A DSL to simplify the creation of Geometries.org.geolatte.geom.crs.trans org.geolatte.geom.generator -
-
Uses of LineString in org.geolatte.geom
Subclasses of LineString in org.geolatte.geom Modifier and Type Class Description classLinearRing<P extends Position>ALineStringthat is both closed and simple.Methods in org.geolatte.geom that return LineString Modifier and Type Method Description <Q extends Position>
LineString<Q>LineString. as(Class<Q> castToType)static <P extends Position>
LineString<P>Geometries. mkEmptyLineString(CoordinateReferenceSystem<P> crs)Creates an emptyLineStringfor a coordinate reference systemstatic <P extends Position>
LineString<P>Geometries. mkLineString(PositionSequence<P> seq, CoordinateReferenceSystem<P> crs)Creates aLineStringfrom aPositionSequenceand coordinate reference systemMethods in org.geolatte.geom with parameters of type LineString Modifier and Type Method Description static <P extends Position>
MultiLineString<P>Geometries. mkMultiLineString(LineString<P>... linestrings)voidGeometryVisitor. visit(LineString<P> lineString)Visits aLineString.voidMeasureInterpolatingVisitor. visit(LineString<P> lineString)Method parameters in org.geolatte.geom with type arguments of type LineString Modifier and Type Method Description static <P extends Position>
MultiLineString<P>Geometries. mkMultiLineString(List<LineString<P>> lineStrings)Constructors in org.geolatte.geom with parameters of type LineString Constructor Description LinearRing(LineString<P> lineString)LineString(LineString<P> base)This constructor has been added to speed up object creation of LinearRingsMultiLineString(LineString<P>... lineStrings)Constructs aMultiLineStringfrom the specifiedLineStrings -
Uses of LineString in org.geolatte.geom.builder
Methods in org.geolatte.geom.builder that return LineString Modifier and Type Method Description static <P extends Position>
LineString<P>DSL. linestring(CoordinateReferenceSystem<P> crs, P... positions)Creates aLineStringMethods in org.geolatte.geom.builder with parameters of type LineString Modifier and Type Method Description static <P extends Position>
MultiLineString<P>DSL. multilinestring(LineString<P> linestring, LineString<P>... linestrings) -
Uses of LineString in org.geolatte.geom.crs.trans
Methods in org.geolatte.geom.crs.trans with parameters of type LineString Modifier and Type Method Description voidTransformVisitor. visit(LineString<P> lineString) -
Uses of LineString in org.geolatte.geom.generator
Methods in org.geolatte.geom.generator that return types with arguments of type LineString Modifier and Type Method Description static <P extends Position>
Generator<LineString<P>>GeometryGenerators. lineString(int numPnts, Envelope<P> bbox)static <P extends Position>
Generator<LineString<P>>GeometryGenerators. lineString(int numPnts, Envelope<P> bbox, Random rnd)
-