<?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: ArcPython work with table   in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/arcpython-work-with-table/m-p/730083#M56631</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could split the value into 2 new fields and then do a Summarize on the "a1" column and select First record (if the records are permanently sorted on the second part). &amp;nbsp;So first create 2 new fields - a text field and an integer field. &amp;nbsp;Then run the split in the field calculator:&lt;/P&gt;&lt;P&gt;Field 1 - !Value!.split(" ")[0]&lt;/P&gt;&lt;P&gt;Field 2 - int( !Value!.split(" ")[1] )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then do a permanent sort on the second split field.&lt;/P&gt;&lt;P&gt;Then do the summarize on the first split field&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="217244" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/217244_pastedImage_4.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With the output table looking like this&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/217245_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Aug 2016 13:03:40 GMT</pubDate>
    <dc:creator>FC_Basson</dc:creator>
    <dc:date>2016-08-22T13:03:40Z</dc:date>
    <item>
      <title>ArcPython work with table</title>
      <link>https://community.esri.com/t5/python-questions/arcpython-work-with-table/m-p/730081#M56629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good day. I have table with drill hole. Drill hole name is repeating for each drillng interval.&lt;BR /&gt; &lt;BR /&gt; For example drill hole interval&lt;BR /&gt; &lt;BR /&gt; a1 1&lt;BR /&gt; a1 2&lt;BR /&gt; a1 3&lt;BR /&gt; b1 4&lt;BR /&gt; b1 5&lt;BR /&gt; b1 6&lt;BR /&gt; &lt;BR /&gt; Now i want to select drill hole (rows) with minimal interval &lt;BR /&gt; &lt;BR /&gt; for example a1 1&lt;BR /&gt; b1 4&lt;BR /&gt; &lt;BR /&gt; How can you help me ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2016 12:26:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpython-work-with-table/m-p/730081#M56629</guid>
      <dc:creator>AlesgerMammedov2</dc:creator>
      <dc:date>2016-08-22T12:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: ArcPython work with table</title>
      <link>https://community.esri.com/t5/python-questions/arcpython-work-with-table/m-p/730082#M56630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Given the ArcGIS Python API is still in beta and focused on Web GIS, I assume you are talking about ArcPy.&amp;nbsp; Before offering any suggestions, it would help to know why exactly you want to select these records?&amp;nbsp; Do you plan on doing some processing of these records?&amp;nbsp; In the GUI or through scripting?&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2016 12:40:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpython-work-with-table/m-p/730082#M56630</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2016-08-22T12:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: ArcPython work with table</title>
      <link>https://community.esri.com/t5/python-questions/arcpython-work-with-table/m-p/730083#M56631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could split the value into 2 new fields and then do a Summarize on the "a1" column and select First record (if the records are permanently sorted on the second part). &amp;nbsp;So first create 2 new fields - a text field and an integer field. &amp;nbsp;Then run the split in the field calculator:&lt;/P&gt;&lt;P&gt;Field 1 - !Value!.split(" ")[0]&lt;/P&gt;&lt;P&gt;Field 2 - int( !Value!.split(" ")[1] )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then do a permanent sort on the second split field.&lt;/P&gt;&lt;P&gt;Then do the summarize on the first split field&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="217244" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/217244_pastedImage_4.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With the output table looking like this&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/217245_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2016 13:03:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpython-work-with-table/m-p/730083#M56631</guid>
      <dc:creator>FC_Basson</dc:creator>
      <dc:date>2016-08-22T13:03:40Z</dc:date>
    </item>
    <item>
      <title>Re: ArcPython work with table</title>
      <link>https://community.esri.com/t5/python-questions/arcpython-work-with-table/m-p/730084#M56632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much, but i want to get shp file&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2016 13:11:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpython-work-with-table/m-p/730084#M56632</guid>
      <dc:creator>AlesgerMammedov2</dc:creator>
      <dc:date>2016-08-22T13:11:36Z</dc:date>
    </item>
    <item>
      <title>Re: ArcPython work with table</title>
      <link>https://community.esri.com/t5/python-questions/arcpython-work-with-table/m-p/730085#M56633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then just do a join on your original layer with the merged values from the output table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2016 13:13:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpython-work-with-table/m-p/730085#M56633</guid>
      <dc:creator>FC_Basson</dc:creator>
      <dc:date>2016-08-22T13:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: ArcPython work with table</title>
      <link>https://community.esri.com/t5/python-questions/arcpython-work-with-table/m-p/730086#M56634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If this is something to do with logging or sampling down a drillhole, the interval table is normally joined to the drillhole polyline zm using linear events.&lt;/P&gt;&lt;P&gt;First you need the drill trace polyline which has measures on the 3d length.&lt;/P&gt;&lt;P&gt;Then you can map the data table to it using the data in the table like "m_From, m_To", back to the measures.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is your scenario, please post some of the data here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2016 13:26:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpython-work-with-table/m-p/730086#M56634</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2016-08-22T13:26:52Z</dc:date>
    </item>
  </channel>
</rss>

