<?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 Calculate US National Grid coordinates for a point feature class in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/calculate-us-national-grid-coordinates-for-a-point/m-p/678945#M52624</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Does anybody have a script that can calculate the US National Grid coordinate value for all points in a feature class? Apparently there is some functionality for the US National Grid built into ArcMap 10, but I have yet to run across any tools, menus, wizards or toolboxes that have anything to do with this. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any help or suggestions greatly appreciated.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 May 2012 13:36:19 GMT</pubDate>
    <dc:creator>GlennKammerer</dc:creator>
    <dc:date>2012-05-17T13:36:19Z</dc:date>
    <item>
      <title>Calculate US National Grid coordinates for a point feature class</title>
      <link>https://community.esri.com/t5/python-questions/calculate-us-national-grid-coordinates-for-a-point/m-p/678945#M52624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Does anybody have a script that can calculate the US National Grid coordinate value for all points in a feature class? Apparently there is some functionality for the US National Grid built into ArcMap 10, but I have yet to run across any tools, menus, wizards or toolboxes that have anything to do with this. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any help or suggestions greatly appreciated.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2012 13:36:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/calculate-us-national-grid-coordinates-for-a-point/m-p/678945#M52624</guid>
      <dc:creator>GlennKammerer</dc:creator>
      <dc:date>2012-05-17T13:36:19Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate US National Grid coordinates for a point feature class</title>
      <link>https://community.esri.com/t5/python-questions/calculate-us-national-grid-coordinates-for-a-point/m-p/678946#M52625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can use this script: &lt;/SPAN&gt;&lt;A href="http://code.google.com/p/opcon/source/browse/trunk/lib/CoordConverter.py" rel="nofollow noopener noreferrer" target="_blank"&gt;http://code.google.com/p/opcon/source/browse/trunk/lib/CoordConverter.py&lt;/A&gt;&lt;SPAN&gt; to get the coordinates into MGRS or USNG coordinates (they are the same thing).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sample use:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; import CoordConvertor
&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ct = CoordConvertor.CoordTranslator()
&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print ct.AsMGRS([36.279707,-77.266846],4,False)
18S TF 96401735
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Couple this module with the arcpy.UpdateCursor() you can then insert each value into your column.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can also try to follow the instruction found here: &lt;/SPAN&gt;&lt;A href="http://blogs.esri.com/esri/arcgis/2011/01/05/converting-and-displaying-coordinates-in-arcgis-10/" rel="nofollow noopener noreferrer" target="_blank"&gt;http://blogs.esri.com/esri/arcgis/2011/01/05/converting-and-displaying-coordinates-in-arcgis-10/&lt;/A&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 04:36:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/calculate-us-national-grid-coordinates-for-a-point/m-p/678946#M52625</guid>
      <dc:creator>AndrewChapkowski</dc:creator>
      <dc:date>2021-12-12T04:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate US National Grid coordinates for a point feature class</title>
      <link>https://community.esri.com/t5/python-questions/calculate-us-national-grid-coordinates-for-a-point/m-p/678947#M52626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks!! Will try this post haste!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2012 16:39:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/calculate-us-national-grid-coordinates-for-a-point/m-p/678947#M52626</guid>
      <dc:creator>GlennKammerer</dc:creator>
      <dc:date>2012-05-17T16:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate US National Grid coordinates for a point feature class</title>
      <link>https://community.esri.com/t5/python-questions/calculate-us-national-grid-coordinates-for-a-point/m-p/678948#M52627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See the EditorTracker add-in here --&amp;nbsp;&lt;A class="link-titled" href="http://floridadisaster.org/gis/usng/#editortracker" title="http://floridadisaster.org/gis/usng/#editortracker"&gt;FloridaDisaster.org - US National Grid&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Add X,Y, and USNG fields to your feature class, and at every add/update, coordinates are calculated.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Dec 2016 20:30:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/calculate-us-national-grid-coordinates-for-a-point/m-p/678948#M52627</guid>
      <dc:creator>RichardButgereit</dc:creator>
      <dc:date>2016-12-03T20:30:17Z</dc:date>
    </item>
  </channel>
</rss>

