<?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: Python Select By Location in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/python-select-by-location/m-p/257232#M8815</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Get Count confirms there are no records being selected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Aug 2017 16:27:11 GMT</pubDate>
    <dc:creator>DaveMarkey</dc:creator>
    <dc:date>2017-08-24T16:27:11Z</dc:date>
    <item>
      <title>Python Select By Location</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python-select-by-location/m-p/257223#M8806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am attempting to do a select by location in python. For some reason no records are being selected. There are three polygons in the Cadastre layer and the suburb layer is for the whole state. I am wanting to select the suburb polygon that intersects the Cadastre layer. When I do this with ArcMap menu options it produces the expected result. When done via python either as a script tool or in the python window, no records are being selected. Do&amp;nbsp;both&amp;nbsp;layers need to be feature layers? I initially only produced a feature layer for the&amp;nbsp;suburb&amp;nbsp;layer. Both being feature layers made no difference.&amp;nbsp;My AddMessage is&amp;nbsp;temporary to test if the selection is being done. I will be using the selected record to update a text element within my Layout window. My script is shown below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px;"&gt;# Import arcpy module&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 12px;"&gt;import arcpy&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 12px;"&gt;from arcpy import env&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 12px;"&gt;import sys&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 12px;"&gt;import os&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px;"&gt;mxd = arcpy.mapping.MapDocument("Current")&lt;BR /&gt;df = arcpy.mapping.ListDataFrames(mxd,"Layers")[0]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px;"&gt;arcpy.MakeFeatureLayer_management("Cadastre","CadastreLayer")&lt;BR /&gt;for lyr in arcpy.mapping.ListLayers(mxd,"Suburb",df):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.MakeFeatureLayer_management(lyr, "Layer")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;arcpy.SelectLayerByLocation_management("Layer","intersect","CadastreLayer")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; with arcpy.da.SearchCursor("Suburb",["NAME"]) as cursor:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for row in cursor:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;arcpy.AddMessage("Suburb is: ", row)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Jul 2017 02:40:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python-select-by-location/m-p/257223#M8806</guid>
      <dc:creator>DaveMarkey</dc:creator>
      <dc:date>2017-07-28T02:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: Python Select By Location</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python-select-by-location/m-p/257224#M8807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is everything in the same coordinate system? and your indentation is wrong... it could be a copy/paste problem but you need to use syntax highlighting &lt;A _jive_internal="true" href="https://community.esri.com/blogs/dan_patterson/2016/08/14/script-formatting"&gt;Code Formatting.... the basics++&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Jul 2017 00:28:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python-select-by-location/m-p/257224#M8807</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-07-29T00:28:52Z</dc:date>
    </item>
    <item>
      <title>Re: Python Select By Location</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python-select-by-location/m-p/257225#M8808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The indentation I have in the script is correct - I have added the required indent to my initial post. It is the actual select by location that is not working as expected. No errors are being produced. All layers have the same projection.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jul 2017 00:02:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python-select-by-location/m-p/257225#M8808</guid>
      <dc:creator>DaveMarkey</dc:creator>
      <dc:date>2017-07-31T00:02:45Z</dc:date>
    </item>
    <item>
      <title>Re: Python Select By Location</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python-select-by-location/m-p/257226#M8809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your search cursor, try "Layer" instead of "Suburb".&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jul 2017 02:01:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python-select-by-location/m-p/257226#M8809</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2017-07-31T02:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: Python Select By Location</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python-select-by-location/m-p/257227#M8810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As Joshua suggests might be the issue... but to confirm, do it manually and copy the code snippet from the&lt;/P&gt;&lt;P&gt;&lt;A href="http://desktop.arcgis.com/en/arcmap/latest/analyze/executing-tools/using-the-results-window.htm"&gt;&lt;STRONG&gt;Results Window&lt;/STRONG&gt; ...&lt;/A&gt;to see the proper syntax and reference to the appropriate objects&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jul 2017 02:07:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python-select-by-location/m-p/257227#M8810</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-07-31T02:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: Python Select By Location</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python-select-by-location/m-p/257228#M8811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What happens when you do&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;len(&lt;SPAN style="background-color: #ffffff;"&gt;arcpy.mapping.ListLayers(mxd,"Suburb",df))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Does this list layers actually find the layer object you want to interact with?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Also, lyr is a layer object which I don't think is a valid input to MakeFeatureLayer. Try lyr.name.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Good luck.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Micah&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jul 2017 05:09:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python-select-by-location/m-p/257228#M8811</guid>
      <dc:creator>MicahBabinski</dc:creator>
      <dc:date>2017-07-31T05:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: Python Select By Location</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python-select-by-location/m-p/257229#M8812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Layer, i.e., feature layer objects, are valid input to &lt;A href="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/make-feature-layer.htm" title="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/make-feature-layer.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;Make Feature Layer—Help | ArcGIS Desktop&lt;/A&gt;:&amp;nbsp; &lt;SPAN style="color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;The input feature class or layer from which to make the new layer.&lt;/SPAN&gt;&lt;SPAN style="color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case, I think the OP is simply referring to the old/original layer after creating a new layer and selecting against the new layer:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; fc &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;# path to feature class&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; lyr1 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;MakeFeatureLayer_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;fc&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"lyr1"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; lyr2 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;MakeFeatureLayer_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;lyr1&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"lyr2"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GetCount_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;lyr1&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;Result &lt;SPAN class="string token"&gt;'193'&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GetCount_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;lyr2&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;Result &lt;SPAN class="string token"&gt;'193'&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; 
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SelectLayerByAttribute_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;lyr1&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"NEW_SELECTION"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"OBJECTID = 1"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;Result &lt;SPAN class="string token"&gt;'lyr1'&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GetCount_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;lyr1&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;Result &lt;SPAN class="string token"&gt;'1'&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GetCount_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;lyr2&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;Result &lt;SPAN class="string token"&gt;'193'&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:40:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python-select-by-location/m-p/257229#M8812</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2021-12-11T12:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: Python Select By Location</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python-select-by-location/m-p/257230#M8813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have rewritten the select by location part to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;arcpy.SelectLayerByLocation_management("SUBURB","INTERSECT", "Cadastre_Layer")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but the suburb layer does not have any records selected. I tried creating a feature layer of the suburb feature class without success. I have found select layer by attribute selects the feature being searched for.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Aug 2017 08:23:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python-select-by-location/m-p/257230#M8813</guid>
      <dc:creator>DaveMarkey</dc:creator>
      <dc:date>2017-08-24T08:23:24Z</dc:date>
    </item>
    <item>
      <title>Re: Python Select By Location</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python-select-by-location/m-p/257231#M8814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To debug, put a &lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/get-count.htm" title="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/get-count.htm"&gt;Get Count—Help | ArcGIS Desktop&lt;/A&gt;&amp;nbsp; after your selection to make sure the selection is actually selecting records.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Aug 2017 15:52:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python-select-by-location/m-p/257231#M8814</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2017-08-24T15:52:12Z</dc:date>
    </item>
    <item>
      <title>Re: Python Select By Location</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python-select-by-location/m-p/257232#M8815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Get Count confirms there are no records being selected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Aug 2017 16:27:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python-select-by-location/m-p/257232#M8815</guid>
      <dc:creator>DaveMarkey</dc:creator>
      <dc:date>2017-08-24T16:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: Python Select By Location</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python-select-by-location/m-p/257233#M8816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if it works manually within arcmap and doesn't as a standalone script, then the data are likely in a different coordinate system.&amp;nbsp; I would get the Extent object of both participating files and perform a cursory check to see if they at least overlap&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Aug 2017 17:46:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python-select-by-location/m-p/257233#M8816</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-08-24T17:46:13Z</dc:date>
    </item>
  </channel>
</rss>

