Geotools JTS, find most distant points in polyline or polygon?
Clash Royale CLAN TAG#URR8PPP
up vote
3
down vote
favorite
is there any convenient API in JTS that would help to
- find two most distant points in line
- find two most distant points in polygon
java geotools jts-topology-suite
add a comment |Â
up vote
3
down vote
favorite
is there any convenient API in JTS that would help to
- find two most distant points in line
- find two most distant points in polygon
java geotools jts-topology-suite
add a comment |Â
up vote
3
down vote
favorite
up vote
3
down vote
favorite
is there any convenient API in JTS that would help to
- find two most distant points in line
- find two most distant points in polygon
java geotools jts-topology-suite
is there any convenient API in JTS that would help to
- find two most distant points in line
- find two most distant points in polygon
java geotools jts-topology-suite
java geotools jts-topology-suite
asked 2 hours ago
Sergey
215210
215210
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
3
down vote
I think all of the JTS methods relating to distance are looking for the nearest or shortest. But providing you don't have too many vertices then you could do a brute force O(N*N) search:
GeometryFactory gf = new GeometryFactory();
double maxDist = 0;
Point start = null, end = null;
for (Coordinate c : geom.getCoordinates())
Point p = gf.createPoint(c);
for (Coordinate c2 : geom.getCoordinates())
Point p2 = gf.createPoint(c2);
double d = DistanceOp.distance(p, p2);
if (d > maxDist)
maxDist = d;
start = p;
end = p2;
And if you need to consider points along the lines then add
geom = Densifier.densify(geom, .01);
before you start, though obviously this pushes N up.
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
I think all of the JTS methods relating to distance are looking for the nearest or shortest. But providing you don't have too many vertices then you could do a brute force O(N*N) search:
GeometryFactory gf = new GeometryFactory();
double maxDist = 0;
Point start = null, end = null;
for (Coordinate c : geom.getCoordinates())
Point p = gf.createPoint(c);
for (Coordinate c2 : geom.getCoordinates())
Point p2 = gf.createPoint(c2);
double d = DistanceOp.distance(p, p2);
if (d > maxDist)
maxDist = d;
start = p;
end = p2;
And if you need to consider points along the lines then add
geom = Densifier.densify(geom, .01);
before you start, though obviously this pushes N up.
add a comment |Â
up vote
3
down vote
I think all of the JTS methods relating to distance are looking for the nearest or shortest. But providing you don't have too many vertices then you could do a brute force O(N*N) search:
GeometryFactory gf = new GeometryFactory();
double maxDist = 0;
Point start = null, end = null;
for (Coordinate c : geom.getCoordinates())
Point p = gf.createPoint(c);
for (Coordinate c2 : geom.getCoordinates())
Point p2 = gf.createPoint(c2);
double d = DistanceOp.distance(p, p2);
if (d > maxDist)
maxDist = d;
start = p;
end = p2;
And if you need to consider points along the lines then add
geom = Densifier.densify(geom, .01);
before you start, though obviously this pushes N up.
add a comment |Â
up vote
3
down vote
up vote
3
down vote
I think all of the JTS methods relating to distance are looking for the nearest or shortest. But providing you don't have too many vertices then you could do a brute force O(N*N) search:
GeometryFactory gf = new GeometryFactory();
double maxDist = 0;
Point start = null, end = null;
for (Coordinate c : geom.getCoordinates())
Point p = gf.createPoint(c);
for (Coordinate c2 : geom.getCoordinates())
Point p2 = gf.createPoint(c2);
double d = DistanceOp.distance(p, p2);
if (d > maxDist)
maxDist = d;
start = p;
end = p2;
And if you need to consider points along the lines then add
geom = Densifier.densify(geom, .01);
before you start, though obviously this pushes N up.
I think all of the JTS methods relating to distance are looking for the nearest or shortest. But providing you don't have too many vertices then you could do a brute force O(N*N) search:
GeometryFactory gf = new GeometryFactory();
double maxDist = 0;
Point start = null, end = null;
for (Coordinate c : geom.getCoordinates())
Point p = gf.createPoint(c);
for (Coordinate c2 : geom.getCoordinates())
Point p2 = gf.createPoint(c2);
double d = DistanceOp.distance(p, p2);
if (d > maxDist)
maxDist = d;
start = p;
end = p2;
And if you need to consider points along the lines then add
geom = Densifier.densify(geom, .01);
before you start, though obviously this pushes N up.
answered 1 hour ago


Ian Turton♦
45.5k544106
45.5k544106
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f299228%2fgeotools-jts-find-most-distant-points-in-polyline-or-polygon%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password