<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: WebMercator to Geographic and back gives a different point in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/webmercator-to-geographic-and-back-gives-a/m-p/1007109#M71019</link>
    <description>&lt;P&gt;here are the images for various combinations from there.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="coord_convert3.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/1531i8F502B847F95B940/image-size/medium?v=v2&amp;amp;px=400" role="button" title="coord_convert3.png" alt="coord_convert3.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="coord_convert2.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/1532i85ACDD28B6C571F9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="coord_convert2.png" alt="coord_convert2.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="coord_convert1.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/1533iFA0A7EE69B3F386B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="coord_convert1.png" alt="coord_convert1.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="coord_convert0.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/1534i94066B3B5F41392B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="coord_convert0.png" alt="coord_convert0.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;so assuming this is correct... and you have checked your inputs&lt;/P&gt;</description>
    <pubDate>Fri, 04 Dec 2020 22:21:50 GMT</pubDate>
    <dc:creator>DanPatterson</dc:creator>
    <dc:date>2020-12-04T22:21:50Z</dc:date>
    <item>
      <title>WebMercator to Geographic and back gives a different point</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/webmercator-to-geographic-and-back-gives-a/m-p/1006822#M70995</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Using WebMercatorUtils to convert a point from webmercator to geographic and then back to webmercator doesn't give the original value back. Any ideas why?&lt;/P&gt;&lt;P&gt;point1: {x: -27763769.230105422, y: -6212655.210572942}&lt;/P&gt;&lt;P&gt;webMercatorUtils.webMercatorToGeographic() on point1 returns point2&lt;/P&gt;&lt;P&gt;point2: {x: 110.5938175582902, y: -48.63203914410154}&lt;/P&gt;&lt;P&gt;webMercatorUtils.geographicToWebMercator() on point2 returns point3&lt;/P&gt;&lt;P&gt;point3:&amp;nbsp;{x: 12311247.455472855, y: -6212655.210572806}&lt;/P&gt;&lt;P&gt;I was hoping point1 and point3 to be same but that doesn't seem to be the case.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 03 Dec 2020 22:32:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/webmercator-to-geographic-and-back-gives-a/m-p/1006822#M70995</guid>
      <dc:creator>AmarG1</dc:creator>
      <dc:date>2020-12-03T22:32:51Z</dc:date>
    </item>
    <item>
      <title>Re: WebMercator to Geographic and back gives a different point</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/webmercator-to-geographic-and-back-gives-a/m-p/1006823#M70996</link>
      <description>&lt;P&gt;same datum for the geographic?&amp;nbsp; There are many GCS's&lt;/P&gt;</description>
      <pubDate>Thu, 03 Dec 2020 22:43:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/webmercator-to-geographic-and-back-gives-a/m-p/1006823#M70996</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2020-12-03T22:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: WebMercator to Geographic and back gives a different point</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/webmercator-to-geographic-and-back-gives-a/m-p/1006981#M71003</link>
      <description>&lt;P&gt;Hi Dan,&lt;/P&gt;&lt;P&gt;I tried this instead:&lt;/P&gt;&lt;P&gt;point1 = {"spatialReference":{"wkid":3857},"x":-27763769.230105422,"y":-6212655.210572942}&lt;BR /&gt;&lt;BR /&gt;let point2 = webMercatorUtils.project(point1, { wkid: 4326 });&lt;/P&gt;&lt;P&gt;point2 : {"spatialReference":{"wkid":4326},"x":110.5938175582902,"y":-48.63203914410154}&lt;BR /&gt;&lt;BR /&gt;let point3 = webMercatorUtils.project(point2, { wkid: 3857 });&lt;/P&gt;&lt;P&gt;point3:&amp;nbsp;{"spatialReference":{"latestWkid":3857,"wkid":102100},"x":12311247.455472855,"y":-6212655.210572806}&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Does that address datum?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 04 Dec 2020 16:08:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/webmercator-to-geographic-and-back-gives-a/m-p/1006981#M71003</guid>
      <dc:creator>AmarG1</dc:creator>
      <dc:date>2020-12-04T16:08:16Z</dc:date>
    </item>
    <item>
      <title>Re: WebMercator to Geographic and back gives a different point</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/webmercator-to-geographic-and-back-gives-a/m-p/1006995#M71005</link>
      <description>&lt;P&gt;That isn't due to a datum difference assuming your long/lat values are correct&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can confirm using an online calculator&lt;/P&gt;</description>
      <pubDate>Fri, 04 Dec 2020 16:54:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/webmercator-to-geographic-and-back-gives-a/m-p/1006995#M71005</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2020-12-04T16:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: WebMercator to Geographic and back gives a different point</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/webmercator-to-geographic-and-back-gives-a/m-p/1007071#M71013</link>
      <description>&lt;P&gt;I'm getting the same response from&amp;nbsp;&lt;A href="https://tool-online.com/en/coordinate-converter.php#" target="_blank"&gt;https://tool-online.com/en/coordinate-converter.php#&lt;/A&gt;&lt;/P&gt;&lt;P&gt;-Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 04 Dec 2020 20:44:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/webmercator-to-geographic-and-back-gives-a/m-p/1007071#M71013</guid>
      <dc:creator>AmarG1</dc:creator>
      <dc:date>2020-12-04T20:44:17Z</dc:date>
    </item>
    <item>
      <title>Re: WebMercator to Geographic and back gives a different point</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/webmercator-to-geographic-and-back-gives-a/m-p/1007109#M71019</link>
      <description>&lt;P&gt;here are the images for various combinations from there.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="coord_convert3.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/1531i8F502B847F95B940/image-size/medium?v=v2&amp;amp;px=400" role="button" title="coord_convert3.png" alt="coord_convert3.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="coord_convert2.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/1532i85ACDD28B6C571F9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="coord_convert2.png" alt="coord_convert2.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="coord_convert1.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/1533iFA0A7EE69B3F386B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="coord_convert1.png" alt="coord_convert1.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="coord_convert0.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/1534i94066B3B5F41392B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="coord_convert0.png" alt="coord_convert0.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;so assuming this is correct... and you have checked your inputs&lt;/P&gt;</description>
      <pubDate>Fri, 04 Dec 2020 22:21:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/webmercator-to-geographic-and-back-gives-a/m-p/1007109#M71019</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2020-12-04T22:21:50Z</dc:date>
    </item>
  </channel>
</rss>

