B C D E F G I K L M P R S T U 

B

BasicExample - Class in com.vividsolutions.jtsexample.geom
Shows basic ways of creating and operating on geometries
BasicExample() - Constructor for class com.vividsolutions.jtsexample.geom.BasicExample
 

C

clone() - Method in class com.vividsolutions.jtsexample.geom.ExtendedCoordinateSequence
 
ClosestPointExample - Class in com.vividsolutions.jtsexample.operation.distance
Example of computing distance and closest points between geometries using the DistanceOp class.
ClosestPointExample() - Constructor for class com.vividsolutions.jtsexample.operation.distance.ClosestPointExample
 
com.vividsolutions.jtsexample.geom - package com.vividsolutions.jtsexample.geom
 
com.vividsolutions.jtsexample.geom.prep - package com.vividsolutions.jtsexample.geom.prep
 
com.vividsolutions.jtsexample.io.gml2 - package com.vividsolutions.jtsexample.io.gml2
 
com.vividsolutions.jtsexample.linearref - package com.vividsolutions.jtsexample.linearref
 
com.vividsolutions.jtsexample.operation.distance - package com.vividsolutions.jtsexample.operation.distance
 
com.vividsolutions.jtsexample.operation.linemerge - package com.vividsolutions.jtsexample.operation.linemerge
 
com.vividsolutions.jtsexample.operation.polygonize - package com.vividsolutions.jtsexample.operation.polygonize
 
com.vividsolutions.jtsexample.precision - package com.vividsolutions.jtsexample.precision
 
com.vividsolutions.jtsexample.technique - package com.vividsolutions.jtsexample.technique
 
ConstructionExample - Class in com.vividsolutions.jtsexample.geom
Examples of constructing Geometries programmatically.
ConstructionExample() - Constructor for class com.vividsolutions.jtsexample.geom.ConstructionExample
 
copy(Coordinate[]) - Static method in class com.vividsolutions.jtsexample.geom.ExtendedCoordinateSequence
 
copy(CoordinateSequence) - Static method in class com.vividsolutions.jtsexample.geom.ExtendedCoordinateSequence
 
create(Coordinate[]) - Method in class com.vividsolutions.jtsexample.geom.ExtendedCoordinateSequenceFactory
Returns an ExtendedCoordinateSequence based on the given array -- the array is used directly if it is an instance of ExtendedCoordinate[]; otherwise it is copied.
create(CoordinateSequence) - Method in class com.vividsolutions.jtsexample.geom.ExtendedCoordinateSequenceFactory
 
create(int, int) - Method in class com.vividsolutions.jtsexample.geom.ExtendedCoordinateSequenceFactory
 

D

difference(String, String, PrecisionModel) - Method in class com.vividsolutions.jtsexample.geom.PrecisionModelExample
 

E

EnhancedPrecisionOpExample - Class in com.vividsolutions.jtsexample.precision
Example of using EnhancedPrecisionOp to avoid robustness problems
EnhancedPrecisionOpExample() - Constructor for class com.vividsolutions.jtsexample.precision.EnhancedPrecisionOpExample
 
example1() - Method in class com.vividsolutions.jtsexample.geom.PrecisionModelExample
 
example2() - Method in class com.vividsolutions.jtsexample.geom.PrecisionModelExample
 
expandEnvelope(Envelope) - Method in class com.vividsolutions.jtsexample.geom.ExtendedCoordinateSequence
 
ExtendedCoordinate - Class in com.vividsolutions.jtsexample.geom
 
ExtendedCoordinate() - Constructor for class com.vividsolutions.jtsexample.geom.ExtendedCoordinate
Default constructor
ExtendedCoordinate(double, double, double, double) - Constructor for class com.vividsolutions.jtsexample.geom.ExtendedCoordinate
 
ExtendedCoordinate(Coordinate) - Constructor for class com.vividsolutions.jtsexample.geom.ExtendedCoordinate
 
ExtendedCoordinate(ExtendedCoordinate) - Constructor for class com.vividsolutions.jtsexample.geom.ExtendedCoordinate
 
ExtendedCoordinateExample - Class in com.vividsolutions.jtsexample.geom
 
ExtendedCoordinateExample() - Constructor for class com.vividsolutions.jtsexample.geom.ExtendedCoordinateExample
 
ExtendedCoordinateSequence - Class in com.vividsolutions.jtsexample.geom
Demonstrates how to implement a CoordinateSequence for a new kind of coordinate (an ExtendedCoordinate in this example).
ExtendedCoordinateSequence(ExtendedCoordinate[]) - Constructor for class com.vividsolutions.jtsexample.geom.ExtendedCoordinateSequence
Copy constructor -- simply aliases the input array, for better performance.
ExtendedCoordinateSequence(Coordinate[]) - Constructor for class com.vividsolutions.jtsexample.geom.ExtendedCoordinateSequence
Constructor that makes a copy of an array of Coordinates.
ExtendedCoordinateSequence(CoordinateSequence) - Constructor for class com.vividsolutions.jtsexample.geom.ExtendedCoordinateSequence
Constructor that makes a copy of a CoordinateSequence.
ExtendedCoordinateSequence(int) - Constructor for class com.vividsolutions.jtsexample.geom.ExtendedCoordinateSequence
Constructs a sequence of a given size, populated with new ExtendedCoordinates.
ExtendedCoordinateSequenceFactory - Class in com.vividsolutions.jtsexample.geom
Creates ExtendedCoordinateSequenceFactory internally represented as an array of ExtendedCoordinates.

F

findClosestPoint(String, String) - Method in class com.vividsolutions.jtsexample.operation.distance.ClosestPointExample
 

G

getCoordinate(int) - Method in class com.vividsolutions.jtsexample.geom.ExtendedCoordinateSequence
 
getCoordinate(int, Coordinate) - Method in class com.vividsolutions.jtsexample.geom.ExtendedCoordinateSequence
 
getCoordinateCopy(int) - Method in class com.vividsolutions.jtsexample.geom.ExtendedCoordinateSequence
 
getDimension() - Method in class com.vividsolutions.jtsexample.geom.ExtendedCoordinateSequence
 
getEndPoints(Geometry) - Static method in class com.vividsolutions.jtsexample.technique.LineStringSelfIntersections
 
getM() - Method in class com.vividsolutions.jtsexample.geom.ExtendedCoordinate
 
getOrdinate(int, int) - Method in class com.vividsolutions.jtsexample.geom.ExtendedCoordinateSequence
 
getX(int) - Method in class com.vividsolutions.jtsexample.geom.ExtendedCoordinateSequence
 
getY(int) - Method in class com.vividsolutions.jtsexample.geom.ExtendedCoordinateSequence
 

I

instance() - Static method in class com.vividsolutions.jtsexample.geom.ExtendedCoordinateSequenceFactory
Returns the singleton instance of ExtendedCoordinateSequenceFactory
intersection(String, String, PrecisionModel) - Method in class com.vividsolutions.jtsexample.geom.PrecisionModelExample
 

K

KMLReaderExample - Class in com.vividsolutions.jtsexample.io.gml2
An example of using the GMLHandler class to read geometry data out of KML files.
KMLReaderExample() - Constructor for class com.vividsolutions.jtsexample.io.gml2.KMLReaderExample
 

L

LinearRefExample - Class in com.vividsolutions.jtsexample.linearref
Examples of Linear Referencing
LinearRefExample() - Constructor for class com.vividsolutions.jtsexample.linearref.LinearRefExample
 
LineMergeExample - Class in com.vividsolutions.jtsexample.operation.linemerge
Example of using the LineMerger class to sew together a set of fully noded linestrings.
LineMergeExample() - Constructor for class com.vividsolutions.jtsexample.operation.linemerge.LineMergeExample
 
LineStringSelfIntersections - Class in com.vividsolutions.jtsexample.technique
Shows a technique for identifying the location of self-intersections in a non-simple LineString.
LineStringSelfIntersections() - Constructor for class com.vividsolutions.jtsexample.technique.LineStringSelfIntersections
 
lineStringSelfIntersections(LineString) - Static method in class com.vividsolutions.jtsexample.technique.LineStringSelfIntersections
 

M

main(String[]) - Static method in class com.vividsolutions.jtsexample.geom.BasicExample
 
main(String[]) - Static method in class com.vividsolutions.jtsexample.geom.ConstructionExample
 
main(String[]) - Static method in class com.vividsolutions.jtsexample.geom.ExtendedCoordinateExample
 
main(String[]) - Static method in class com.vividsolutions.jtsexample.geom.PrecisionModelExample
 
main(String[]) - Static method in class com.vividsolutions.jtsexample.geom.prep.PreparedGeometryExample
 
main(String[]) - Static method in class com.vividsolutions.jtsexample.geom.SimpleMethodsExample
 
main(String[]) - Static method in class com.vividsolutions.jtsexample.io.gml2.KMLReaderExample
 
main(String[]) - Static method in class com.vividsolutions.jtsexample.linearref.LinearRefExample
 
main(String[]) - Static method in class com.vividsolutions.jtsexample.operation.distance.ClosestPointExample
 
main(String[]) - Static method in class com.vividsolutions.jtsexample.operation.linemerge.LineMergeExample
 
main(String[]) - Static method in class com.vividsolutions.jtsexample.operation.polygonize.PolygonizeExample
 
main(String[]) - Static method in class com.vividsolutions.jtsexample.precision.EnhancedPrecisionOpExample
 
main(String[]) - Static method in class com.vividsolutions.jtsexample.technique.LineStringSelfIntersections
 
main(String[]) - Static method in class com.vividsolutions.jtsexample.technique.PolygonUnionUsingBuffer
Deprecated.
 
main(String[]) - Static method in class com.vividsolutions.jtsexample.technique.SearchUsingPreparedGeometryIndex
 

P

PolygonizeExample - Class in com.vividsolutions.jtsexample.operation.polygonize
Example of using Polygonizer class to polygonize a set of fully noded linestrings
PolygonizeExample() - Constructor for class com.vividsolutions.jtsexample.operation.polygonize.PolygonizeExample
 
PolygonUnionUsingBuffer - Class in com.vividsolutions.jtsexample.technique
Deprecated.
It is now recommended to use Geometry.union() (unary union) instead of this technique.
PolygonUnionUsingBuffer() - Constructor for class com.vividsolutions.jtsexample.technique.PolygonUnionUsingBuffer
Deprecated.
 
PrecisionModelExample - Class in com.vividsolutions.jtsexample.geom
An example showing the results of using different precision models in computations involving geometric constructions.
PrecisionModelExample() - Constructor for class com.vividsolutions.jtsexample.geom.PrecisionModelExample
 
PreparedGeometryExample - Class in com.vividsolutions.jtsexample.geom.prep
Shows use of PreparedGeometry in a batch (repeated) operation.
PreparedGeometryExample() - Constructor for class com.vividsolutions.jtsexample.geom.prep.PreparedGeometryExample
 

R

run() - Method in class com.vividsolutions.jtsexample.geom.PrecisionModelExample
 
run() - Method in class com.vividsolutions.jtsexample.geom.SimpleMethodsExample
 
run() - Method in class com.vividsolutions.jtsexample.linearref.LinearRefExample
 
run() - Method in class com.vividsolutions.jtsexample.operation.distance.ClosestPointExample
 
runExtractedLine(String, double, double) - Method in class com.vividsolutions.jtsexample.linearref.LinearRefExample
 

S

SearchUsingPreparedGeometryIndex - Class in com.vividsolutions.jtsexample.technique
Demonstrates use of PreparedGeometrys in a spatial index to optimize spatial search.
SearchUsingPreparedGeometryIndex() - Constructor for class com.vividsolutions.jtsexample.technique.SearchUsingPreparedGeometryIndex
 
setM(double) - Method in class com.vividsolutions.jtsexample.geom.ExtendedCoordinate
 
setOrdinate(int, int, double) - Method in class com.vividsolutions.jtsexample.geom.ExtendedCoordinateSequence
 
showSelfIntersections(LineString) - Static method in class com.vividsolutions.jtsexample.technique.LineStringSelfIntersections
 
SimpleMethodsExample - Class in com.vividsolutions.jtsexample.geom
An example showing a simple use of JTS methods for: WKT reading intersection relate WKT output
SimpleMethodsExample() - Constructor for class com.vividsolutions.jtsexample.geom.SimpleMethodsExample
 
size() - Method in class com.vividsolutions.jtsexample.geom.ExtendedCoordinateSequence
 

T

toCoordinateArray() - Method in class com.vividsolutions.jtsexample.geom.ExtendedCoordinateSequence
 
toString() - Method in class com.vividsolutions.jtsexample.geom.ExtendedCoordinate
 
toString() - Method in class com.vividsolutions.jtsexample.geom.ExtendedCoordinateSequence
 

U

unionUsingBuffer(Geometry[]) - Static method in class com.vividsolutions.jtsexample.technique.PolygonUnionUsingBuffer
Deprecated.
 
B C D E F G I K L M P R S T U 

Copyright © 2015. All rights reserved.