<?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: What is the difference: Coordinate System v.s. Spatial Reference? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/what-is-the-difference-coordinate-system-v-s/m-p/48648#M3867</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Check out this help page on &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//003n0000001v000000" rel="nofollow" target="_blank"&gt;Spatial References&lt;/A&gt;&lt;SPAN&gt;. The coordinate system, along with resolution and tolerance are properties of the spatial reference.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Mar 2013 22:19:46 GMT</pubDate>
    <dc:creator>LucasDanzinger</dc:creator>
    <dc:date>2013-03-26T22:19:46Z</dc:date>
    <item>
      <title>What is the difference: Coordinate System v.s. Spatial Reference?</title>
      <link>https://community.esri.com/t5/python-questions/what-is-the-difference-coordinate-system-v-s/m-p/48647#M3866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Everybody:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; I am trying to create a script that takes coordinate system as an input, but after checking the list of data types I found that both Spatial Reference and Coordinate System types are suitable (see attached picture). Which should I use? or what are the difference between them?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Thank you!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Mar 2013 21:30:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/what-is-the-difference-coordinate-system-v-s/m-p/48647#M3866</guid>
      <dc:creator>SuiHuang</dc:creator>
      <dc:date>2013-03-26T21:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference: Coordinate System v.s. Spatial Reference?</title>
      <link>https://community.esri.com/t5/python-questions/what-is-the-difference-coordinate-system-v-s/m-p/48648#M3867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Check out this help page on &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//003n0000001v000000" rel="nofollow" target="_blank"&gt;Spatial References&lt;/A&gt;&lt;SPAN&gt;. The coordinate system, along with resolution and tolerance are properties of the spatial reference.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Mar 2013 22:19:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/what-is-the-difference-coordinate-system-v-s/m-p/48648#M3867</guid>
      <dc:creator>LucasDanzinger</dc:creator>
      <dc:date>2013-03-26T22:19:46Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference: Coordinate System v.s. Spatial Reference?</title>
      <link>https://community.esri.com/t5/python-questions/what-is-the-difference-coordinate-system-v-s/m-p/48649#M3868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;tl/dr version: they're the same.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Longer version: From the script tool standpoint there is no difference.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;if your tool has a SpatialReference parameter, the user of said script tool will get identical experience to a CoordinateSystem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Once upon a time they were different, the UI/user experience for these 2 types were different, SpatialReference had additional parameters (XY, Z &amp;amp; M Domains). That is no longer the case as of the 9.2 release.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For backward compatibility we kept both types, thought they are are interchangeable and basically identical.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can glimpse a difference by doing arcpy.AddWarning(arcpy.GetParameterAsText(i)) in your script. They have different string values. But when you turn around and pass these values into other gp tools/arcpy api, the two slightly different strings behave identically.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;SpatialReference string representation&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;GEOGCS['GCS_WGS_1984',DATUM['D_WGS_1984',SPHEROID['WGS_1984',6378137.0,298.257223563]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]];-400 -400 1000000000;-100000 10000;-100000 10000;8.98315284119522E-09;0.001;0.001;IsHighPrecision&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;While CoordinateSystem looks like this&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;GEOGCS['GCS_WGS_1984',DATUM['D_WGS_1984',SPHEROID['WGS_1984',6378137.0,298.257223563]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Mar 2013 18:08:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/what-is-the-difference-coordinate-system-v-s/m-p/48649#M3868</guid>
      <dc:creator>GhislainPrince</dc:creator>
      <dc:date>2013-03-27T18:08:20Z</dc:date>
    </item>
  </channel>
</rss>

