An open source Java software library that provides an object model for Euclidean planar linear geometry together with a set of fundamental geometric function
3
votes
1answer
76 views
How can i topologically sort 2D triangles and put in an array?
I have a set of 2D triangles in a Geometry array which together forms a
connected strip when placed them according to edge adjacency. However, in
the array they are not in topological order based on ...
1
vote
1answer
19 views
Intersection with JTS Geometry
I want to calculate an intersection between two geometries with the intersection function from JTS Geometry.
What happens, if the geometries have different SRIDs?
SimpleFeature sf1=...; //SRID ...
2
votes
0answers
118 views
What is the best way to convert WKT String to GML String
What is the best way to programatically convert WKT String to GML String? Every reasonable library (at best available in some Maven repository) can be used.
Till now I came up with this solution ...