<?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: Differences in coords for point between REST and SQL Server in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127868#M11810</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is what i have:&lt;/P&gt;&lt;P&gt;WGS_1984_Web_Mercator_Auxiliary_Sphere&lt;/P&gt;&lt;P&gt;WKID: 3857 Authority: EPSG&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Projection: Mercator_Auxiliary_Sphere&lt;/P&gt;&lt;P&gt;False_Easting: 0.0&lt;/P&gt;&lt;P&gt;False_Northing: 0.0&lt;/P&gt;&lt;P&gt;Central_Meridian: 0.0&lt;/P&gt;&lt;P&gt;Standard_Parallel_1: 0.0&lt;/P&gt;&lt;P&gt;Auxiliary_Sphere_Type: 0.0&lt;/P&gt;&lt;P&gt;Linear Unit: Meter (1.0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Geographic Coordinate System: GCS_WGS_1984&lt;/P&gt;&lt;P&gt;Angular Unit: Degree (0.0174532925199433)&lt;/P&gt;&lt;P&gt;Prime Meridian: Greenwich (0.0)&lt;/P&gt;&lt;P&gt;Datum: D_WGS_1984&lt;/P&gt;&lt;P&gt;&amp;nbsp; Spheroid: WGS_1984&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Semimajor Axis: 6378137.0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Semiminor Axis: 6356752.314245179&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Inverse Flattening: 298.257223563&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Oct 2018 13:52:40 GMT</pubDate>
    <dc:creator>EvelynHernandez</dc:creator>
    <dc:date>2018-10-09T13:52:40Z</dc:date>
    <item>
      <title>Differences in coords for point between REST and SQL Server</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127864#M11806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everybody,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having some issue when i try to get the X, Y from a SHAPE saved in a sql server database.&lt;/P&gt;&lt;P&gt;For example, in the rest service, in a layer of points i have the following data saved for a point:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REST SERVICE:&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;# records: 1&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;OBJECTID:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;41602&lt;BR style="color: #000000; background-color: #ffffff; font-size: 14.4px;" /&gt;&lt;EM style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;Point:&lt;/EM&gt;&lt;BR style="color: #000000; background-color: #ffffff; font-size: 14.4px;" /&gt;&lt;EM style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;X:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;SPAN style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;-7932483.373700001&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR style="color: #000000; background-color: #ffffff; font-size: 14.4px;" /&gt;&lt;EM style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;Y:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;SPAN style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;-3897037.876665604&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;&lt;SPAN&gt;If i try to get the same point (oid 41602) from a SQL Database using this sentence:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;&lt;SPAN&gt;SELECT SHAPE.STY AS LAT, SHAPE.STX AS LON FROM&amp;nbsp;MYTABLE&lt;BR /&gt;WHERE OBJECTID = 41602&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;&lt;SPAN&gt;I got this result&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;&lt;SPAN&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/423897_pastedImage_1.png" /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;&lt;SPAN&gt;How u can see, the X coord is the same, but the Y coor is not.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;&lt;SPAN&gt;Why am i getting this difference? How can i fix it to get the same as the REST service but in my sql server?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;&lt;SPAN&gt;Thanks in advice!&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2018 17:31:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127864#M11806</guid>
      <dc:creator>EvelynHernandez</dc:creator>
      <dc:date>2018-10-08T17:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in coords for point between REST and SQL Server</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127865#M11807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Evelyn,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please answer the following questions:&lt;/P&gt;&lt;P&gt;1. What version of ArcGIS GIS Server are you using? Are you utilizing the ArcGIS Data Store as the managed database for your ArcGIS GIS Server?&lt;/P&gt;&lt;P&gt;2. What is the data source of the REST service that you are consuming? Is the data coming from an Enterprise Geodatabase or File Gedoatabase that is registered with ArcGIS GIS Server?&amp;nbsp;Did you choose to copy data to the server when publishing the service?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Jacob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2018 13:15:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127865#M11807</guid>
      <dc:creator>JacobSnyder1</dc:creator>
      <dc:date>2018-10-09T13:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in coords for point between REST and SQL Server</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127866#M11808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the projection of data in SQL Server vs the GIS service you are querying?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2018 13:33:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127866#M11808</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2018-10-09T13:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in coords for point between REST and SQL Server</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127867#M11809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1.- version 10.3. What do u mean with if im using DS?&lt;/P&gt;&lt;P&gt;2.- Enterprise GeoDB and i didnt choose to copy the data.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2018 13:43:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127867#M11809</guid>
      <dc:creator>EvelynHernandez</dc:creator>
      <dc:date>2018-10-09T13:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in coords for point between REST and SQL Server</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127868#M11810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is what i have:&lt;/P&gt;&lt;P&gt;WGS_1984_Web_Mercator_Auxiliary_Sphere&lt;/P&gt;&lt;P&gt;WKID: 3857 Authority: EPSG&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Projection: Mercator_Auxiliary_Sphere&lt;/P&gt;&lt;P&gt;False_Easting: 0.0&lt;/P&gt;&lt;P&gt;False_Northing: 0.0&lt;/P&gt;&lt;P&gt;Central_Meridian: 0.0&lt;/P&gt;&lt;P&gt;Standard_Parallel_1: 0.0&lt;/P&gt;&lt;P&gt;Auxiliary_Sphere_Type: 0.0&lt;/P&gt;&lt;P&gt;Linear Unit: Meter (1.0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Geographic Coordinate System: GCS_WGS_1984&lt;/P&gt;&lt;P&gt;Angular Unit: Degree (0.0174532925199433)&lt;/P&gt;&lt;P&gt;Prime Meridian: Greenwich (0.0)&lt;/P&gt;&lt;P&gt;Datum: D_WGS_1984&lt;/P&gt;&lt;P&gt;&amp;nbsp; Spheroid: WGS_1984&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Semimajor Axis: 6378137.0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Semiminor Axis: 6356752.314245179&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Inverse Flattening: 298.257223563&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2018 13:52:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127868#M11810</guid>
      <dc:creator>EvelynHernandez</dc:creator>
      <dc:date>2018-10-09T13:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in coords for point between REST and SQL Server</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127869#M11811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Evelyn,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The goal of my questioning&amp;nbsp;is essentially to try to understand the location of the data source for the REST service that you are working with. For instance, if your data was being copied into the ArcGIS Data Store during the publishing process vs being housed in a registered Enterprise Geodatabase or File Geodatabase, this would have implications for how your SQL statements should be formatted for your queries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the underlying RDBMS of your Enterprise Geodatabase that your data is located in? Is this the SQL Server database that you are referencing above?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Jacob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2018 14:04:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127869#M11811</guid>
      <dc:creator>JacobSnyder1</dc:creator>
      <dc:date>2018-10-09T14:04:06Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in coords for point between REST and SQL Server</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127870#M11812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is the same sql database and is being housed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2018 14:10:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127870#M11812</guid>
      <dc:creator>EvelynHernandez</dc:creator>
      <dc:date>2018-10-09T14:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in coords for point between REST and SQL Server</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127871#M11813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Evelyn,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As &lt;A href="https://community.esri.com/migrated-users/3420"&gt;Joshua Bixby&lt;/A&gt;‌ has alluded to, the discrepancy that you are seeing could be due to a difference in spatial reference between the data that is stored in your Enterprise Geodatabase vs. the REST service. Is the spatial reference information that you are showing here associated with the REST service, the Enterprise Geodatabase Feature Class, or both?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Was the Enterprise Geodatabase data's projection changed prior to publishing it as a service?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Jacob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2018 14:32:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127871#M11813</guid>
      <dc:creator>JacobSnyder1</dc:creator>
      <dc:date>2018-10-09T14:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in coords for point between REST and SQL Server</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127872#M11814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px; font-weight: 400;"&gt;Both.&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px; font-weight: 400;"&gt;Is there any way to verify the coordinate system in the rest service? Because we dont know if it is changing or not.&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px; font-weight: 400;"&gt;Thanks in advice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2018 14:37:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127872#M11814</guid>
      <dc:creator>EvelynHernandez</dc:creator>
      <dc:date>2018-10-09T14:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in coords for point between REST and SQL Server</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127873#M11815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Evelyn,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should be able to find the spatial reference information for the REST service at the REST Endpoint of that particular service. The "Well-Known ID" (WKID) for the spatial reference associated with the service will be located within a parameter at the REST Endpoint called "Spatial Reference".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For an example, please see the following URL: &lt;A href="https://sampleserver.arcgisonline.com/arcgis/rest/services/PoolPermits/FeatureServer"&gt;https://sampleserver6.arcgisonline.com/arcgis/rest/services/PoolPermits/FeatureServer&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will see the "Spatial Reference" parameter listed on this page upon visiting the above URL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Jacob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2018 14:49:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127873#M11815</guid>
      <dc:creator>JacobSnyder1</dc:creator>
      <dc:date>2018-10-09T14:49:27Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in coords for point between REST and SQL Server</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127874#M11816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OK. So how can i know if there is a difference between the rest and my geodatabase due to spatial reference?&lt;/P&gt;&lt;P&gt;I want to make it the same as my REST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my rest i have the following:&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;Spatial Reference:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;102100 &amp;nbsp;(3857)&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2018 14:53:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127874#M11816</guid>
      <dc:creator>EvelynHernandez</dc:creator>
      <dc:date>2018-10-09T14:53:49Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in coords for point between REST and SQL Server</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127875#M11817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Evelyn,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WKID&amp;nbsp;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;102100 (3857) is associated with the "&lt;SPAN style="color: #545454; font-size: small;"&gt;WGS 1984 Web Mercator (Auxiliary Sphere)" projected coordinate system.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One method that you can use to check on the spatial reference of the data that is located within your Enterprise Geodatabase would be to add the data as a layer to either to an ArcMap MXD file or to an ArcGIS Pro Map. You could then go into the "Properties" of that layer in ArcMap or ArcGIS Pro, and find the spatial reference of the underlying data in the "Source" tab of the layer properties. Compare the spatial reference of the underlying data, to that of the spatial reference found in the REST service.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Jacob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2018 15:04:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127875#M11817</guid>
      <dc:creator>JacobSnyder1</dc:creator>
      <dc:date>2018-10-09T15:04:37Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in coords for point between REST and SQL Server</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127876#M11818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok. Is there a way to change the spatial reference via DB instead of doing it on the rest? Cuz right now my issue is only with the DB, not the rest service.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;El 09-10-2018 12:05, Jacob Snyder &amp;lt;&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:geonet@esri.com"&gt;geonet@esri.com&lt;/A&gt;&lt;SPAN&gt;&amp;gt; escribió:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;GeoNet &amp;lt;&lt;/SPAN&gt;&lt;A class="" href="https://community.esri.com/?et=watches.email.thread"&gt;https://community.esri.com/?et=watches.email.thread&lt;/A&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Re: Differences in coords for point between REST and SQL Server&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;reply from Jacob Snyder&amp;lt;&lt;/SPAN&gt;&lt;A class="jive-link-profile-small jiveTT-hover-user" data-containerid="-1" data-containertype="-1" data-objectid="331535" data-objecttype="3" href="https://community.esri.com/people/JSnyder-esristaff?et=watches.email.thread"&gt;https://community.esri.com/people/JSnyder-esristaff?et=watches.email.thread&lt;/A&gt;&lt;SPAN&gt;&amp;gt; in ArcGIS API for JavaScript - View the full discussion&amp;lt;&lt;/SPAN&gt;&lt;A class="jive-link-comment-small" href="https://community.esri.com/thread/222482-differences-in-coords-for-point-between-rest-and-sql-server?commentID=804928&amp;amp;et=watches.email.thread#comment-804928"&gt;https://community.esri.com/message/804928-re-differences-in-coords-for-point-between-rest-and-sql-server?commentID=804928&amp;amp;et=watches.email.thread#comment-804928&lt;/A&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2018 15:15:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127876#M11818</guid>
      <dc:creator>EvelynHernandez</dc:creator>
      <dc:date>2018-10-09T15:15:17Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in coords for point between REST and SQL Server</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127877#M11819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Evelyn&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you would like to change the projection of the data in your Enterprise Geodatabase, you could use the "Project" geoprocessing tool. This geoprocessing tool will not alter the projection of the dataset that is used as input to the tool. Rather, it will create a new copy of your dataset that has the desired projection.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see the following document that discusses how you can utilize the "Project" geprocessing tool:&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/tools/coverage-toolbox/project.htm" title="http://desktop.arcgis.com/en/arcmap/latest/tools/coverage-toolbox/project.htm"&gt;Project—Help | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2018 11:40:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/differences-in-coords-for-point-between-rest-and/m-p/127877#M11819</guid>
      <dc:creator>JacobSnyder1</dc:creator>
      <dc:date>2018-10-10T11:40:54Z</dc:date>
    </item>
  </channel>
</rss>

