<?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 Code for Finding What at the top, bottom, left and right of Polyon in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/code-for-finding-what-at-the-top-bottom-left-and/m-p/1184275#M56335</link>
    <description>&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;I have polygon with id I want to find what is the id in the adjacent parcels e.g a polygon has ID 1, ID of polygon to its left is 8 and Right is 2 top no polygon and bottom have 5 as shown in image&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bilalalamgis_0-1655722888854.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/43821i25254DE46474D37A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bilalalamgis_0-1655722888854.png" alt="bilalalamgis_0-1655722888854.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 20 Jun 2022 11:02:00 GMT</pubDate>
    <dc:creator>Bilal_Alam_GIS</dc:creator>
    <dc:date>2022-06-20T11:02:00Z</dc:date>
    <item>
      <title>Code for Finding What at the top, bottom, left and right of Polyon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/code-for-finding-what-at-the-top-bottom-left-and/m-p/1184275#M56335</link>
      <description>&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;I have polygon with id I want to find what is the id in the adjacent parcels e.g a polygon has ID 1, ID of polygon to its left is 8 and Right is 2 top no polygon and bottom have 5 as shown in image&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bilalalamgis_0-1655722888854.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/43821i25254DE46474D37A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bilalalamgis_0-1655722888854.png" alt="bilalalamgis_0-1655722888854.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jun 2022 11:02:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/code-for-finding-what-at-the-top-bottom-left-and/m-p/1184275#M56335</guid>
      <dc:creator>Bilal_Alam_GIS</dc:creator>
      <dc:date>2022-06-20T11:02:00Z</dc:date>
    </item>
    <item>
      <title>Re: Code for Finding What at the top, bottom, left and right of Polyon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/code-for-finding-what-at-the-top-bottom-left-and/m-p/1184317#M56345</link>
      <description>&lt;P&gt;Use the tool &lt;STRONG&gt;Generate Near Table&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/2.8/tool-reference/analysis/generate-near-table.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/2.8/tool-reference/analysis/generate-near-table.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The default behavior&amp;nbsp;should include all adjacent or overlapping polygons, and if you include the parameter argument&amp;nbsp;&lt;FONT face="courier new,courier"&gt;angle = 'ANGLE'&lt;/FONT&gt;, the table will include an angle which you can use to determine direction.&lt;/P&gt;&lt;P&gt;If there are gaps, however, you won’t be able to use the default option &lt;FONT face="courier new,courier"&gt;Closest&amp;nbsp;&lt;/FONT&gt;but should set the parameter argument &lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;search_radius&lt;/SPAN&gt;&amp;nbsp;&lt;/FONT&gt;to be somewhat greater than zero.&lt;/P&gt;&lt;P&gt;— Andy&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jun 2022 14:32:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/code-for-finding-what-at-the-top-bottom-left-and/m-p/1184317#M56345</guid>
      <dc:creator>AndyAnderson</dc:creator>
      <dc:date>2022-06-20T14:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: Code for Finding What at the top, bottom, left and right of Polyon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/code-for-finding-what-at-the-top-bottom-left-and/m-p/1184572#M56381</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/10466"&gt;@AndyAnderson&lt;/a&gt;&amp;nbsp;for your help. I get the result by using Calculate adjacent field tool.&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/2.8/tool-reference/cartography/calculate-adjacent-fields.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/2.8/tool-reference/cartography/calculate-adjacent-fields.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jun 2022 07:28:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/code-for-finding-what-at-the-top-bottom-left-and/m-p/1184572#M56381</guid>
      <dc:creator>Bilal_Alam_GIS</dc:creator>
      <dc:date>2022-06-21T07:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: Code for Finding What at the top, bottom, left and right of Polyon</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/code-for-finding-what-at-the-top-bottom-left-and/m-p/1184611#M56386</link>
      <description>&lt;P&gt;That’s cool, wouldn’t expect to find that in the Cartography tool box. One caveat, though, it doesn’t appear that it will find every adjacent polygon, and a given polygon might be listed more than once.&lt;/P&gt;&lt;P&gt;— Andy&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jun 2022 11:35:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/code-for-finding-what-at-the-top-bottom-left-and/m-p/1184611#M56386</guid>
      <dc:creator>AndyAnderson</dc:creator>
      <dc:date>2022-06-21T11:35:58Z</dc:date>
    </item>
  </channel>
</rss>

