Re: [Geotools-gt2-users] Simple intersection

2012-11-01 Thread Michael Bedward
Hello Andre, The answer depends somewhat on how big the polygons are, the details with which they are represented (density of vertices) and what part of the globe you are working in. GeoTools uses the JTS library for geometry operations. JTS itself has no notion of projections, it simply treats a

[Geotools-gt2-users] Simple intersection

2012-11-01 Thread André Fonteles
Hi everybody, I'm new in geotools and I've been reading a lot of posts about intersection using geotools, but I still have a question. Given 2 polygons composed with latitude and longitude points, how can I test if these intersects? Is it just needed to use polygon1.intersects(polygon2) Doesn't