<?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: Convert Decimals Degrees to Floating Point UTMS. in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/convert-decimals-degrees-to-floating-point-utms/m-p/265045#M20402</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A class="link-titled" href="https://pro.arcgis.com/en/pro-app/tool-reference/data-management/add-geometry-attributes.htm" title="https://pro.arcgis.com/en/pro-app/tool-reference/data-management/add-geometry-attributes.htm"&gt;Add Geometry Attributes—Data Management toolbox | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You just need to specify the coordinate system that you want&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Jul 2019 19:12:25 GMT</pubDate>
    <dc:creator>DanPatterson_Retired</dc:creator>
    <dc:date>2019-07-11T19:12:25Z</dc:date>
    <item>
      <title>Convert Decimals Degrees to Floating Point UTMS.</title>
      <link>https://community.esri.com/t5/python-questions/convert-decimals-degrees-to-floating-point-utms/m-p/265041#M20398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have coordinates in decimal degrees in one table. I need to convert them to UTMs in another table. I can use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;arcpy.ConvertCoordinateNoatation_management(input, output, geoLat, geoLong, "DD_2", "UTM ZONES").&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This gives me the UTMS and I can index them to place them in a northing and easting column. The problem is the other table that I need to put these in has UTM coordinates as a floating point number. Is there a simple way to get the UTMs as a floating point number from the Decimal Degree Coordinates?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jul 2019 17:32:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/convert-decimals-degrees-to-floating-point-utms/m-p/265041#M20398</guid>
      <dc:creator>BenjaminZandarski</dc:creator>
      <dc:date>2019-07-11T17:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Decimals Degrees to Floating Point UTMS.</title>
      <link>https://community.esri.com/t5/python-questions/convert-decimals-degrees-to-floating-point-utms/m-p/265042#M20399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Once you get the UTM coordinates, how are you then updating the other table?&amp;nbsp; Once you have a 'number' you can cast it to what ever type you need.&amp;nbsp; See&amp;nbsp;&lt;A href="https://www.tutorialspoint.com/python/python_numbers"&gt;https://www.tutorialspoint.com/python/python_numbers&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Psuedo code:&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;NorthingInNewTable &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; float&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;NorthingUTM&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jul 2019 18:15:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/convert-decimals-degrees-to-floating-point-utms/m-p/265042#M20399</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2019-07-11T18:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Decimals Degrees to Floating Point UTMS.</title>
      <link>https://community.esri.com/t5/python-questions/convert-decimals-degrees-to-floating-point-utms/m-p/265043#M20400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the help.&amp;nbsp;The problem is I have a set of coordinates in decimal degrees when I run the&amp;nbsp;ConvertCoordinateNoatation&amp;nbsp;tool it returns the UTMs as a string&amp;nbsp;&amp;nbsp;(e.g 13N6046424148283). I need this to be in 2 columns. (e.g&amp;nbsp;coordinateX = 604642.396 coordinateY =4148283.7975) for every point in my table. I can get the UTMs by parsing the string that is returned by&amp;nbsp; the ConvertCoordinateNoatation tool&amp;nbsp;but I cannot get the precision as this is not returned by the ConvertCoordinateNoatation tool. Is there another tool or better way to do this in Python. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jul 2019 19:05:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/convert-decimals-degrees-to-floating-point-utms/m-p/265043#M20400</guid>
      <dc:creator>BenjaminZandarski</dc:creator>
      <dc:date>2019-07-11T19:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Decimals Degrees to Floating Point UTMS.</title>
      <link>https://community.esri.com/t5/python-questions/convert-decimals-degrees-to-floating-point-utms/m-p/265044#M20401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nothing that I can think of off hand... What if... (and this might be quite the work around):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take your DD table and add it as an XY event Table.&lt;/P&gt;&lt;P&gt;Save that as feature class&lt;/P&gt;&lt;P&gt;Add two float attributes, UTM_X , UTM_Y&lt;/P&gt;&lt;P&gt;Use the Calculate Geometry calculator accordingly&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jul 2019 19:11:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/convert-decimals-degrees-to-floating-point-utms/m-p/265044#M20401</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2019-07-11T19:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Decimals Degrees to Floating Point UTMS.</title>
      <link>https://community.esri.com/t5/python-questions/convert-decimals-degrees-to-floating-point-utms/m-p/265045#M20402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A class="link-titled" href="https://pro.arcgis.com/en/pro-app/tool-reference/data-management/add-geometry-attributes.htm" title="https://pro.arcgis.com/en/pro-app/tool-reference/data-management/add-geometry-attributes.htm"&gt;Add Geometry Attributes—Data Management toolbox | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You just need to specify the coordinate system that you want&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jul 2019 19:12:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/convert-decimals-degrees-to-floating-point-utms/m-p/265045#M20402</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2019-07-11T19:12:25Z</dc:date>
    </item>
  </channel>
</rss>

