Tagged Questions

The JTS Topology Suite is an open source API of 2D spatial predicates and functions written in Java.

learn more… | top users | synonyms

6
votes
3answers
522 views

Propagation of Oracle Transactions Between C++ and Java

We have an existing C++ application that we are going to gradually replace with a new Java-based system. Until we have completely reimplemented everything in Java we expect the C++ and Java to have ...
3
votes
2answers
253 views

Geotools create CRS from polygon and dimensions

I have some grid data (2d array) that has some geospatial metadata associated with it. The bounds are in a jts polygon with WSG84 lon lat coordinates. The polygon is a rectangle, but is not axis ...
2
votes
3answers
150 views

Transactions (Atomicity property) in EJB 3 apply only to Database Operations - Am I right?

I know that transactions could be used to bring about atomicity. Like if methodOne() methodTwo() methodThree() are clubbed into one transaction, if any of the method fails, the entire operation is ...
2
votes
1answer
492 views

How can I convert a JTS-Geometry into an AWT-Shape?

Is it possible to convert a com.vividsolutions.jts.geom.Geometry (or a subclass of it) into a class that implements java.awt.Shape? Which library/method can I use to achieve that goal?
1
vote
0answers
77 views

Find the nearest location in an STRtree

I'm using the nettopologysuite (a port of the JTS Topology Suite). I'm using the SRTtree implementation to store a list of timezones and a corresponding coordinates (based on this suggestion ). I took ...
1
vote
1answer
210 views

Problems with dealing with Geometry end WKBwriter on JTS

I've just started with geometries and I'm getting some really odd errors. I'm trying to create a WKB inside my java code with an specific SRID. I've done: GeometryFactory gm = new ...
1
vote
0answers
48 views

How to do union on a Result set that has only 1 row using JTS?

while (rs.next()) { row_count = row_count + 1 ; System.out.println(rs.getString("the_geom")); } How to use the_geom which has geometry ...
1
vote
1answer
347 views

Java EE 6 Distributed Transaction - Getting JTS5031 Exception with Glassfish v3.0.1

I'm trying to do a distributed transaction between two PostgreSQL databases. I'm using Glassfish v3.0.1. In my GlassFish domain I have my two connection pools setup to have a resource type of ...
1
vote
2answers
293 views

Split a Polygon with a LineString in JTS

I have a polygon and a line segment which has its endpoints on two sides of the polygon. What is the easiest way to split the polygon into two polygons. (I am using the jts package). I have tried ...
1
vote
1answer
54 views

Australian Geographical Data - simple format (perhaps WKT)

I'm looking for some data on Australian boundaries - particularly the national boundary and individual state boundaries. The format I would prefer is WKT but anything simple would be good (ideally I ...
0
votes
0answers
24 views

Point in Cirlce with JTS

I have a huge set of points already loaded within a plane I need to draw a circle/ellipse starting from a given point and a radius distance in meters then check which points are inside the circle. ...
0
votes
0answers
15 views

Convert java.lang.String geometry to jts Geometry

I have a geometry in java.lang.String format. I mean i take it directly from DB in as a java.lang.String which is stored in a variable. I want to convert it to jts Geometry type somehow. Is there any ...
0
votes
2answers
37 views

Minimal Bounding Rectangle with JTS

I've got a collection of geometry objects. Now i want to calculate the minimal bounding rectangle from the whole collection. i'm using the java topology suite, but I can't figure out how to do this?
0
votes
0answers
20 views

SpatialRestriction for geometry

I have sql following sql: select coalesce(sm.id,0) as Segment, coalesce(sm.length,0) as Length from pctngis.segment_master sm where ...
0
votes
1answer
94 views

How to find if a line intersects itself in JTS?

Is there any way to find out if a LineString intersects itself in JTS? Like in the following image how can i find if the line intersects itself? I am creating that line by just giving coordinates of ...
0
votes
1answer
176 views

How to create a polygon in JTS when we have list of coordinate?

We can create a LineString using coordinates list like this: Geometry g1 = new GeometryFactory().createLineString(coordinates); How can we create a polygon using coordinates list? Thanks in ...
0
votes
1answer
94 views

Vivid Solutions JTS

in a question I asked about ways to gather pixel data from an image (http://stackoverflow.com/questions/6385502/java-image-manipulation-libraries/6385598#6385598), I was recommended the Java Topology ...
0
votes
1answer
202 views

Using JTS, how to find the nearest point on a polygon's boundary from an outside point?

Using JTS, how to find the nearest point on a polygon's boundary from an outside point?
0
votes
1answer
51 views

Reproject rectangle from latlon to metres

I have this bounding box expressed in latlong: POLYGON ((51.2913 -13.5599, 51.2913 13.1589, 35.0325 13.1589, 35.0325 -13.5599, 51.2913 -13.5599)) widthDeg="26.7188" heightDeg="16.2588" ...
0
votes
3answers
294 views

Which unit does JTS LineString.getLength() use

I'm trying to figure out which unit JTS LineString.getLength() return. for example: LineString foo = (initialize line string somehow) foo.getLength() -> 7.025667228118838E-4 Are these ...
0
votes
2answers
373 views

In JTS, when I do geometry.buffer(1).buffer(-1), will the resulting geometry be equivalent to the original?

I was having problems while intersecting two geometries, getting a TopologyException probably due to a rounding error during the operation, then I read this fix and tried a buffer(0) on both input ...
0
votes
1answer
136 views

JTS.orthodromicDistance incorrectly calculate the equatorial radius of the earth

JTS.orthodromicDistance(new Coordinate(0,0), new Coordinate(180,0), DefaultGeographicCRS.WGS84) * 2 is equal to 40075016 but must be equal to 6378000.
0
votes
1answer
258 views

Porting J2EE application from weblogic to Jboss, JTS? (weblogic.jdbc.jts.Driver)

My weblogic(8.1) application uses weblogic.jdbc.jts.Driver to connect to Oracle. I'd like to port this app to JBOSS(4.0) and quick googling did not yield the correct driver to replace this JDBC JTS ...