Geotools JTS, find most distant points in polyline or polygon?

The name of the pictureThe name of the pictureThe name of the pictureClash 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









share|improve this question

























    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









    share|improve this question























      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









      share|improve this question













      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 2 hours ago









      Sergey

      215210




      215210




















          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.



          enter image description here






          share|improve this answer




















            Your Answer







            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "79"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            convertImagesToLinks: false,
            noModals: false,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













             

            draft saved


            draft discarded


















            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






























            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.



            enter image description here






            share|improve this answer
























              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.



              enter image description here






              share|improve this answer






















                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.



                enter image description here






                share|improve this answer












                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.



                enter image description here







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 1 hour ago









                Ian Turton♦

                45.5k544106




                45.5k544106



























                     

                    draft saved


                    draft discarded















































                     


                    draft saved


                    draft discarded














                    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













































































                    Comments

                    Popular posts from this blog

                    What does second last employer means? [closed]

                    List of Gilmore Girls characters

                    Confectionery