Is the polyarea() function in geometry package accurate enough to calculate areas in complex polygons?Area of a polygon (Recursively using Python)Check if point is in spatial object which consists of multiple polygons/holesFinding edges of a non self-intersecting polygon from given verticesCompute a radius scale factor to construct n-sided reqular convex polygons of equal areaPoint Pattern Analysis3-D Cartesian points to 2-D hemispherical and calculate the area of 2-D Voronoi cellsInconsistent behavior of gOverlaps and gTouches when polygons intersect at a pointArea of polygon in ordiellipse is NaN - why?R: Displaying the a list of polygon geometry featuresHow to get a polygon from a Triangulated Face in Three.js?

Looking for a soft substance that doesn't dissolve underwater

Pirate democracy at its finest

Where can I find visible/radio telescopic observations of the center of the Milky Way galaxy?

Have 1.5% of all nuclear reactors ever built melted down?

C++ forcing function parameter evalution order

Should one buy new hardware after a system compromise?

Compaq Portable vs IBM 5155 Portable PC

How to patch glass cuts in a bicycle tire?

Should breaking down something like a door be adjudicated as an attempt to beat its AC and HP, or as an ability check against a set DC?

What does this symbol on the box of power supply mean?

I unknowingly submitted plagarised work

Teacher help me explain this to my students

How strong are Wi-Fi signals?

Count rotary dial pulses in a phone number (including letters)

Is it true that cut time means "play twice as fast as written"?

Could a 19.25mm revolver actually exist?

Can I tell a prospective employee that everyone in the team is leaving?

Is the Indo-European language family made up?

How to use libraries with delays inside within a time critical STM32 HAL application?

How do I partition a matrx into blocks and replace zeros with dots?

How should I introduce map drawing to my players?

Alignment: "Breaking out" of environment (enumerate / minipage)

What are these arcade games in Ghostbusters 1984?

Website returning plaintext password



Is the polyarea() function in geometry package accurate enough to calculate areas in complex polygons?


Area of a polygon (Recursively using Python)Check if point is in spatial object which consists of multiple polygons/holesFinding edges of a non self-intersecting polygon from given verticesCompute a radius scale factor to construct n-sided reqular convex polygons of equal areaPoint Pattern Analysis3-D Cartesian points to 2-D hemispherical and calculate the area of 2-D Voronoi cellsInconsistent behavior of gOverlaps and gTouches when polygons intersect at a pointArea of polygon in ordiellipse is NaN - why?R: Displaying the a list of polygon geometry featuresHow to get a polygon from a Triangulated Face in Three.js?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















Using data from laser scanners (points in the space), I am trying to build complex polygons and compute their areas, but I am not sure how accurate enough are the available R functions to compute polygons area.



I have used the polyarea() function in the "geometry" package, but also the gArea() function in the "rgeos" package, both with the same result.
Since the documentation in the two functions gives examples using very simple polygon shapes, I wondering if these functions are able to compute areas for a little more complex polygon, like the one described by my "slice.to.rot" data.



This is the code I use.



plot(slice.to.rot[, c(3, 5)], cex=0.01, pch=19)
lines(slice.to.rot[, c(3, 5)])
polygon(slice.to.rot[, c(3, 5)])
polyarea(slice.to.rot[, 3], slice.to.rot[, 5])


Next you will find a link to the "slice.to.rot" data to run the code.



https://drive.google.com/file/d/12KSTRCOu2wYGMYsvAo-bKAskfD_w2Y1H/view?usp=sharing










share|improve this question




























    1















    Using data from laser scanners (points in the space), I am trying to build complex polygons and compute their areas, but I am not sure how accurate enough are the available R functions to compute polygons area.



    I have used the polyarea() function in the "geometry" package, but also the gArea() function in the "rgeos" package, both with the same result.
    Since the documentation in the two functions gives examples using very simple polygon shapes, I wondering if these functions are able to compute areas for a little more complex polygon, like the one described by my "slice.to.rot" data.



    This is the code I use.



    plot(slice.to.rot[, c(3, 5)], cex=0.01, pch=19)
    lines(slice.to.rot[, c(3, 5)])
    polygon(slice.to.rot[, c(3, 5)])
    polyarea(slice.to.rot[, 3], slice.to.rot[, 5])


    Next you will find a link to the "slice.to.rot" data to run the code.



    https://drive.google.com/file/d/12KSTRCOu2wYGMYsvAo-bKAskfD_w2Y1H/view?usp=sharing










    share|improve this question
























      1












      1








      1








      Using data from laser scanners (points in the space), I am trying to build complex polygons and compute their areas, but I am not sure how accurate enough are the available R functions to compute polygons area.



      I have used the polyarea() function in the "geometry" package, but also the gArea() function in the "rgeos" package, both with the same result.
      Since the documentation in the two functions gives examples using very simple polygon shapes, I wondering if these functions are able to compute areas for a little more complex polygon, like the one described by my "slice.to.rot" data.



      This is the code I use.



      plot(slice.to.rot[, c(3, 5)], cex=0.01, pch=19)
      lines(slice.to.rot[, c(3, 5)])
      polygon(slice.to.rot[, c(3, 5)])
      polyarea(slice.to.rot[, 3], slice.to.rot[, 5])


      Next you will find a link to the "slice.to.rot" data to run the code.



      https://drive.google.com/file/d/12KSTRCOu2wYGMYsvAo-bKAskfD_w2Y1H/view?usp=sharing










      share|improve this question














      Using data from laser scanners (points in the space), I am trying to build complex polygons and compute their areas, but I am not sure how accurate enough are the available R functions to compute polygons area.



      I have used the polyarea() function in the "geometry" package, but also the gArea() function in the "rgeos" package, both with the same result.
      Since the documentation in the two functions gives examples using very simple polygon shapes, I wondering if these functions are able to compute areas for a little more complex polygon, like the one described by my "slice.to.rot" data.



      This is the code I use.



      plot(slice.to.rot[, c(3, 5)], cex=0.01, pch=19)
      lines(slice.to.rot[, c(3, 5)])
      polygon(slice.to.rot[, c(3, 5)])
      polyarea(slice.to.rot[, 3], slice.to.rot[, 5])


      Next you will find a link to the "slice.to.rot" data to run the code.



      https://drive.google.com/file/d/12KSTRCOu2wYGMYsvAo-bKAskfD_w2Y1H/view?usp=sharing







      r geometry polygon






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 24 at 3:53









      NicsoNicso

      687




      687






















          0






          active

          oldest

          votes












          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          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',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55320582%2fis-the-polyarea-function-in-geometry-package-accurate-enough-to-calculate-area%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55320582%2fis-the-polyarea-function-in-geometry-package-accurate-enough-to-calculate-area%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Obelisk of Theodosius Contents History Description Notes Bibliography Further reading External links Navigation menuAge of spirituality : late antique and early Christian art, third to seventh centuryOver 60 picturesObelisks of the World41°00′21.24″N 28°58′31.43″E / 41.0059000°N 28.9753972°E / 41.0059000; 28.97539727724550-7235741376235741376

          밀양 대씨 역사 각주 함께 보기 둘러보기 메뉴밀양 대씨

          1973년 목차 사건 문화 탄생 사망 노벨상 달력 둘러보기 메뉴