Is the source for the test builder available? It is an extremely useful tool. I would like to be able to be able to plot a target set of geometries and have...
Are there plans to fix the link to the API docs on vividsolutions.com for JTS? Not sure if it is known that the link doesn't work or not. Thanks Laine...
Are there any working examples out there? I'm learning how to use JTS and I think there must be better ways to implement some functions I'm working on. Thanks...
I am new to JTS and have been working through the concepts via the example provided and several that I have developed on my own. However, I am not 100% sure...
The following snippet was working ok with jts 1.2: public static void cornerPoligon() throws ParseException { String wktA = "POLYGON((10 10, 10 20, 20 20, 20...
In JTS 1.2 and 1.3, i noticed a discrepancy between the comments of the Coordinate.equals(Object o) method (the routine ignores the z...) and what it really...
Hello I am quite new to JTS so excuse me if this question is stupid or answered elsewhere - I did have a look at the archives. I have populated an array of...
import com.vividsolutions.jts.geom.*; public class InitEnvelopeTest { public static void main(String[] args) { Envelope nullEnvelope1 = new Envelope(); ...
Hi, The result of union operation over 2 connected LineString is a MultiLineString. I suppose this is conform to the SFS (?), but how can i get a single ...
To all JTS users: We have changed the official name of the JTS API to the "JTS Topology Suite". This avoids potential trademark infringement issues with Sun...
Hi, I have a simple question here. According to JTS spec, JTS conforms to the Simple Features Specification for SQL. From the spec of JTS, spatial data I/O in...
[I'm cross-posting this to the JTS list, since it might be of general interest] Andrea, You're correct in noting that for repeated evaluation of an overlay...
Yep, that's the general idea. I guess the tricky part is specifying the dissolve (or union) operation in a flexible way. As Andrea pointed out, what he really...
In this case with these two polygons: POLYGON ((545 317, 617 379, 581 321, 545 317)). POLYGON ((484 290, 558 359, 543 309, 484 290)). when i try an union...
NOTE: PLEASE DIRECT ALL RESPONSE TO EMAIL ACCOUNT CONTAINED IN THIS LETTER FOR CONFIDENTIAL PURPOSE. STRICTLY CONFIDENTIAL FROM: Mr. Suleman Sese Seko TEL:...
Hi. I'll try to develop one module to union of buffered points. In the case buffered size was too small and buffering of points using this size resulted to...
Try using RobustCGAlgorithms#computeOrientation. Use two points of the splitting line, and a point from one of the polygons. It might be best to use the...
(Bonus - I can answer two questions at once here... ) cdlee, The polygons in your message are classic cases that will cause robustness problems: Large...
We're happy to announce that JTS 1.3 is now available at the JTS Web site (http://www.vividsolutions.com/jts/jtshome.htm) JTS 1.3 contains the following...
Hi, when i tried to find the intersection of two geometries, i got the following message com.vividsolutions.jts.geom.TopologyException: no outgoing dirEdge ...
Hi all, does there has any examples about how to use topological computation? I cannot understand it with JTS Technical Specs so what should i read? Thanks!...
Hello. If one polygon is divided by one linestring using JTS Geometry's "intersection" method and its result creates two polygon, how to identify which...
As a followup to the previous post: The SFS specificies that a Point is a 0-dimensional Geometry, with an interior, no boundary, and an exterior. Can anyone...
Hello, We have a pretty interesting discussion, of how a point is handeled in the DE-9-Intersection Matrix. From a geometric point of view, a point is...
Hi! There have earlier been a long discussion on mutable coordinates in JTS and I just want to add another perspective on this issue. We are currently using...
Apologies if this has been addressed before, but I searched a bit in the archives and didn't find anything. I've been working with the JTS WKTWriter and the...