<?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: XY-resolution changed when exporting data  in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/xy-resolution-changed-when-exporting-data/m-p/456545#M26068</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As for this :&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;EM&gt;ArcMap seems to use German decimal separators (',') here instead of points -btw.&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;That's your windows settings, nothing to do with ArcMap.&lt;/P&gt;&lt;P&gt;The decimal separator is quite deeply buried in Date &amp;amp; Time, Regional settings, Advanced or something like that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Nov 2018 09:56:18 GMT</pubDate>
    <dc:creator>NeilAyres</dc:creator>
    <dc:date>2018-11-13T09:56:18Z</dc:date>
    <item>
      <title>XY-resolution changed when exporting data</title>
      <link>https://community.esri.com/t5/data-management-questions/xy-resolution-changed-when-exporting-data/m-p/456544#M26067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm using ArcMap 10.5 and arcpy and I observe the following: I have a Layer in an ArcMap Document. I'm trying to export this Layer by using arcpy.CopyFeatures_management() . Doing so changes the 1/(XY-Resolution)-value in the string, that one receives when calling the exportToString() - method of the spatialReference-Object, to 10000. So for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let's assume we have a Layer "someLayer" loaded in ArcMap. Calling&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Describe&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'someLayer'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;spatialReference&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;exportToString&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gives me:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;u"PROJCS['MGI_Austria_GK_Central',GEOGCS['GCS_MGI',DATUM['D_MGI',SPHEROID['Bessel_1841',6377397.155,299.1528128]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]],PROJECTION['Transverse_Mercator'],PARAMETER['False_Easting',0.0],PARAMETER['False_Northing',-5000000.0],PARAMETER['Central_Meridian',13.33333333333333],PARAMETER['Scale_Factor',1.0],PARAMETER['Latitude_Of_Origin',0.0],UNIT['Meter',1.0]];-5622500 -15001000 450314931,243925;-100000 10000;-100000 10000;0,001;0,001;0,001;IsHighPrecision"‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which is what I would like to have in the end as 450314931,243925 is the original 1/(XY-Resolution) - value of the projection (third value after the WKT). ArcMap seems to use German decimal separators (',') here instead of points -btw. However when I continue with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;CopyFeatures_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"someLayer"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'D:\test.shp'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and calling afterwards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Describe&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'someLayer'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;spatialReference&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;exportToString&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;returns:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;u"PROJCS['MGI_Austria_GK_Central',GEOGCS['GCS_MGI',DATUM['D_MGI',SPHEROID['Bessel_1841',6377397.155,299.1528128]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]],PROJECTION['Transverse_Mercator'],PARAMETER['False_Easting',0.0],PARAMETER['False_Northing',-5000000.0],PARAMETER['Central_Meridian',13.33333333333333],PARAMETER['Scale_Factor',1.0],PARAMETER['Latitude_Of_Origin',0.0],UNIT['Meter',1.0]];-5622500 -15001000 10000;-100000 10000;-100000 10000;0,001;0,001;0,001;IsHighPrecision"‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the value 450314931,243925 changed to 10000. With other words the spatialReference object of the original Layer-Object is obviously changed. When I delete the Layer in the TOC and reload it, I get the original string with the original reciprocal value. This is even true for the exported data, so when loading the Shape-File in the TOC everything seems ok. However reloading is not a feasible workaround for me as I use the exportToString() - method for comparing projections in a bigger automatic workflow with no user interaction. I already tried to export to a FeatureClass in a gdb, however I have the same problem when doing so. Anyone any idea what's going on here? What am I missing?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2018 11:54:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/xy-resolution-changed-when-exporting-data/m-p/456544#M26067</guid>
      <dc:creator>LisaKunz</dc:creator>
      <dc:date>2018-11-12T11:54:37Z</dc:date>
    </item>
    <item>
      <title>Re: XY-resolution changed when exporting data</title>
      <link>https://community.esri.com/t5/data-management-questions/xy-resolution-changed-when-exporting-data/m-p/456545#M26068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As for this :&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;EM&gt;ArcMap seems to use German decimal separators (',') here instead of points -btw.&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;That's your windows settings, nothing to do with ArcMap.&lt;/P&gt;&lt;P&gt;The decimal separator is quite deeply buried in Date &amp;amp; Time, Regional settings, Advanced or something like that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Nov 2018 09:56:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/xy-resolution-changed-when-exporting-data/m-p/456545#M26068</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2018-11-13T09:56:18Z</dc:date>
    </item>
  </channel>
</rss>

