Convert Google Map Lat Long to Square meter areaConverting Longitude and Latitude Coordinates to Square...

What (else) happened July 1st 1858 in London?

Some numbers are more equivalent than others

Can I use my Chinese passport to enter China after I acquired another citizenship?

Is it possible to have a strip of cold climate in the middle of a planet?

Is there a conventional notation or name for the slip angle?

Why does the integral domain "being trapped between a finite field extension" implies that it is a field?

Can I Retrieve Email Addresses from BCC?

Proof of Lemma: Every nonzero integer can be written as a product of primes

Did arcade monitors have same pixel aspect ratio as TV sets?

Reply 'no position' while the job posting is still there

What is this type of notehead called?

Why do IPv6 unique local addresses have to have a /48 prefix?

Java - What do constructor type arguments mean when placed *before* the type?

Visiting the UK as unmarried couple

Can somebody explain Brexit in a few child-proof sentences?

Longest common substring in linear time

Why has "pence" been used in this sentence, not "pences"?

Open a doc from terminal, but not by its name

Did US corporations pay demonstrators in the German demonstrations against article 13?

MAXDOP Settings for SQL Server 2014

Have I saved too much for retirement so far?

How can "mimic phobia" be cured or prevented?

Is camera lens focus an exact point or a range?

Is possible to search in vim history?



Convert Google Map Lat Long to Square meter area


Converting Longitude and Latitude Coordinates to Square Miles?Converting area from degrees to square kilometres using OpenLayers geometry?Convert area from square meters to degrees globallyArcGIS Android SDK Calculate area in square meters from polygon geometry?How do I get the area of a WGS84 polygon in square meters?How can I measure area in square kilometres from lat / lon gps coordinates?Converting area of a polygon from steradians to square kilometers using D3.js?Why does field calculator compute area in square meters?Calculating area of polygon within square mile in ArcGIS?Create an ellipse using lat/long and extract area in rSurface area calculation in Google Earth Engine?













0















I want to convert a set of 5 Lat Long (Directly taken from Google Map) into Sq Meter area.
As 5 points are there I have found the formula on : (Converting Longitude and Latitude Coordinates to Square Miles?)



area = rad(x2 - x1) * (2 + sin(rad(y1)) + sin(rad(y2))) + rad(x3 - x2) * (2 + sin(rad(y2)) + sin(rad(y3))) + rad(x4 - x3) * (2 + sin(rad(y3)) + sin(rad(y4))) + rad(x5 - x4) * (2 + sin(rad(y4)) + sin(rad(y5)))



area = abs(area * 6378137.0 * 6378137.0 / 2.0)



but this formulae dint giving me the correct area,
I am putting the latitude in x & Longitude in y
also as digit after decimal places change the answer changes (obviously)
(ex 20.011619, 73.762870 have 6 digits after decimal)



so what is the correct method to use this formula with lat, long? & do I want to convert lat-long into another measure to get the area correctly?









share







New contributor




Gaurav Borade is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

























    0















    I want to convert a set of 5 Lat Long (Directly taken from Google Map) into Sq Meter area.
    As 5 points are there I have found the formula on : (Converting Longitude and Latitude Coordinates to Square Miles?)



    area = rad(x2 - x1) * (2 + sin(rad(y1)) + sin(rad(y2))) + rad(x3 - x2) * (2 + sin(rad(y2)) + sin(rad(y3))) + rad(x4 - x3) * (2 + sin(rad(y3)) + sin(rad(y4))) + rad(x5 - x4) * (2 + sin(rad(y4)) + sin(rad(y5)))



    area = abs(area * 6378137.0 * 6378137.0 / 2.0)



    but this formulae dint giving me the correct area,
    I am putting the latitude in x & Longitude in y
    also as digit after decimal places change the answer changes (obviously)
    (ex 20.011619, 73.762870 have 6 digits after decimal)



    so what is the correct method to use this formula with lat, long? & do I want to convert lat-long into another measure to get the area correctly?









    share







    New contributor




    Gaurav Borade is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.























      0












      0








      0








      I want to convert a set of 5 Lat Long (Directly taken from Google Map) into Sq Meter area.
      As 5 points are there I have found the formula on : (Converting Longitude and Latitude Coordinates to Square Miles?)



      area = rad(x2 - x1) * (2 + sin(rad(y1)) + sin(rad(y2))) + rad(x3 - x2) * (2 + sin(rad(y2)) + sin(rad(y3))) + rad(x4 - x3) * (2 + sin(rad(y3)) + sin(rad(y4))) + rad(x5 - x4) * (2 + sin(rad(y4)) + sin(rad(y5)))



      area = abs(area * 6378137.0 * 6378137.0 / 2.0)



      but this formulae dint giving me the correct area,
      I am putting the latitude in x & Longitude in y
      also as digit after decimal places change the answer changes (obviously)
      (ex 20.011619, 73.762870 have 6 digits after decimal)



      so what is the correct method to use this formula with lat, long? & do I want to convert lat-long into another measure to get the area correctly?









      share







      New contributor




      Gaurav Borade is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      I want to convert a set of 5 Lat Long (Directly taken from Google Map) into Sq Meter area.
      As 5 points are there I have found the formula on : (Converting Longitude and Latitude Coordinates to Square Miles?)



      area = rad(x2 - x1) * (2 + sin(rad(y1)) + sin(rad(y2))) + rad(x3 - x2) * (2 + sin(rad(y2)) + sin(rad(y3))) + rad(x4 - x3) * (2 + sin(rad(y3)) + sin(rad(y4))) + rad(x5 - x4) * (2 + sin(rad(y4)) + sin(rad(y5)))



      area = abs(area * 6378137.0 * 6378137.0 / 2.0)



      but this formulae dint giving me the correct area,
      I am putting the latitude in x & Longitude in y
      also as digit after decimal places change the answer changes (obviously)
      (ex 20.011619, 73.762870 have 6 digits after decimal)



      so what is the correct method to use this formula with lat, long? & do I want to convert lat-long into another measure to get the area correctly?







      area calculate-geometry





      share







      New contributor




      Gaurav Borade is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.










      share







      New contributor




      Gaurav Borade is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.








      share



      share






      New contributor




      Gaurav Borade is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 2 mins ago









      Gaurav BoradeGaurav Borade

      1




      1




      New contributor




      Gaurav Borade is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Gaurav Borade is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Gaurav Borade is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















          0






          active

          oldest

          votes











          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',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          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
          });


          }
          });






          Gaurav Borade is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f316533%2fconvert-google-map-lat-long-to-square-meter-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








          Gaurav Borade is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          Gaurav Borade is a new contributor. Be nice, and check out our Code of Conduct.













          Gaurav Borade is a new contributor. Be nice, and check out our Code of Conduct.












          Gaurav Borade is a new contributor. Be nice, and check out our Code of Conduct.
















          Thanks for contributing an answer to Geographic Information Systems Stack Exchange!


          • 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%2fgis.stackexchange.com%2fquestions%2f316533%2fconvert-google-map-lat-long-to-square-meter-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

          Щит и меч (фильм) Содержание Названия серий | Сюжет |...

          is 'sed' thread safeWhat should someone know about using Python scripts in the shell?Nexenta bash script uses...

          Meter-Bus Содержание Параметры шины | Стандартизация |...