<?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 My python code is not selecting by location?&amp;nbsp; Help... in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/my-python-code-is-not-selecting-by-location-nbsp/m-p/71731#M2525</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm trying to write a python code that will select the grid_codes for the adjacent neighbors for a point shapefile. I want this list to be iterative so it will create temporary selections do some processing and update the center cell. I used select by location method, but when I make a list of the Grid_Codes, only the cursor cell value is returned. I get an error -- "Error in getting output". I tried putting a print statement and a getOutput(0) statement in the code, but I'm getting the same error. I'm stumped! Here's my code up to the point where I'm getting an error:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;========================================================================&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;#Import arc geoprocessing module&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import arcpy, sys&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;#Set variable to the point shapefile&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;shp = sys.argv[1]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;#Add LRG_Value to the point shapefile&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.AddField_management(shp, "LRG_Value", "Long")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;#Place an update cursor in the point shapefile table&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;#move to the first record in the table&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;cur = arcpy.UpdateCursor(shp)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;row = cur.next()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;GCA_List = []&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;#Loop through each record in the table&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;while row:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; #Extract Grid Code and Object ID&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; GCP = row.getValue("Grid_Code") #GCP = Grid Code of Processing Cell&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; PIP = row.getValue("PointID") #PIP = Point ID of Processing Cell&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; #Put ObjectID in sequential order&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; sql = "PointID" + " = " + str(PIP)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; arcpy.MakeFeatureLayer_management(shp, "shp_lyr")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; #Select the sequential order of Object ID&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; arcpy.SelectLayerByAttribute_management("shp_lyr", "NEW_SELECTION", sql)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; #Select only the Object ID that are surrounding the cursor cell&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Adj_Neighbors = arcpy.SelectLayerByLocation_management("shp_lyr", "WITHIN_A_DISTANCE", "shp_lyr", "40")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; print Adj_Neighbors&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Adj_NeighborsValue = Adj_Neighbors.getOutput(0)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; for codes in Adj_Neighbors:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; GCA = row.getValue("Grid_Code") #GCA = Grid Codes from adjacent cells&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; #Put Grid codes in a list&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; GCA_List.append(GCA)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; print GCA_List&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;=======================================================================&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's the error:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-------------------------------------------------------------------------------------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[11.0] ====&amp;gt; This is the Grid_Code of the first cursor point. I need the surrounding cells as well.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Traceback (most recent call last):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; File "C:\Python26\ArcGIS10.0\Lib\site-packages\pythonwin\pywin\framework\scriptutils.py", line 325, in RunScript&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; exec codeObject in __main__.__dict__&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; File "C:\Users\Flash\Documents\School\CA\CellularAutomata.py", line 43, in &amp;lt;module&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; for codes in Adj_Neighbors:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; File "C:\Program Files (x86)\ArcGIS\Desktop10.0\arcpy\arcpy\arcobjects\mixins.py", line 866, in __getitem__&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; return self.getOutput(item)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; File "C:\Program Files (x86)\ArcGIS\Desktop10.0\arcpy\arcpy\arcobjects\arcobjects.py", line 919, in getOutput&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; return convertArcObjectToPythonObject(self._arc_object.GetOutput(*gp_fixargs(args)))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;RuntimeError: ResultObject: Error in getting output &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-----------------------------------------------------------------------------------------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not sure what I'm doing wrong. The points are all 30 meters apart so selecting within a distance of 40 meters should be fine. Can anyone give any suggestions?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for any help,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Linda&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Sep 2011 16:15:41 GMT</pubDate>
    <dc:creator>LindaVasil</dc:creator>
    <dc:date>2011-09-29T16:15:41Z</dc:date>
    <item>
      <title>My python code is not selecting by location?  Help...</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/my-python-code-is-not-selecting-by-location-nbsp/m-p/71731#M2525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm trying to write a python code that will select the grid_codes for the adjacent neighbors for a point shapefile. I want this list to be iterative so it will create temporary selections do some processing and update the center cell. I used select by location method, but when I make a list of the Grid_Codes, only the cursor cell value is returned. I get an error -- "Error in getting output". I tried putting a print statement and a getOutput(0) statement in the code, but I'm getting the same error. I'm stumped! Here's my code up to the point where I'm getting an error:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;========================================================================&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;#Import arc geoprocessing module&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import arcpy, sys&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;#Set variable to the point shapefile&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;shp = sys.argv[1]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;#Add LRG_Value to the point shapefile&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.AddField_management(shp, "LRG_Value", "Long")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;#Place an update cursor in the point shapefile table&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;#move to the first record in the table&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;cur = arcpy.UpdateCursor(shp)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;row = cur.next()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;GCA_List = []&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;#Loop through each record in the table&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;while row:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; #Extract Grid Code and Object ID&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; GCP = row.getValue("Grid_Code") #GCP = Grid Code of Processing Cell&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; PIP = row.getValue("PointID") #PIP = Point ID of Processing Cell&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; #Put ObjectID in sequential order&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; sql = "PointID" + " = " + str(PIP)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; arcpy.MakeFeatureLayer_management(shp, "shp_lyr")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; #Select the sequential order of Object ID&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; arcpy.SelectLayerByAttribute_management("shp_lyr", "NEW_SELECTION", sql)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; #Select only the Object ID that are surrounding the cursor cell&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Adj_Neighbors = arcpy.SelectLayerByLocation_management("shp_lyr", "WITHIN_A_DISTANCE", "shp_lyr", "40")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; print Adj_Neighbors&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Adj_NeighborsValue = Adj_Neighbors.getOutput(0)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; for codes in Adj_Neighbors:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; GCA = row.getValue("Grid_Code") #GCA = Grid Codes from adjacent cells&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; #Put Grid codes in a list&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; GCA_List.append(GCA)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; print GCA_List&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;=======================================================================&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's the error:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-------------------------------------------------------------------------------------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[11.0] ====&amp;gt; This is the Grid_Code of the first cursor point. I need the surrounding cells as well.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Traceback (most recent call last):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; File "C:\Python26\ArcGIS10.0\Lib\site-packages\pythonwin\pywin\framework\scriptutils.py", line 325, in RunScript&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; exec codeObject in __main__.__dict__&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; File "C:\Users\Flash\Documents\School\CA\CellularAutomata.py", line 43, in &amp;lt;module&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; for codes in Adj_Neighbors:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; File "C:\Program Files (x86)\ArcGIS\Desktop10.0\arcpy\arcpy\arcobjects\mixins.py", line 866, in __getitem__&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; return self.getOutput(item)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; File "C:\Program Files (x86)\ArcGIS\Desktop10.0\arcpy\arcpy\arcobjects\arcobjects.py", line 919, in getOutput&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; return convertArcObjectToPythonObject(self._arc_object.GetOutput(*gp_fixargs(args)))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;RuntimeError: ResultObject: Error in getting output &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-----------------------------------------------------------------------------------------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not sure what I'm doing wrong. The points are all 30 meters apart so selecting within a distance of 40 meters should be fine. Can anyone give any suggestions?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for any help,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Linda&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2011 16:15:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/my-python-code-is-not-selecting-by-location-nbsp/m-p/71731#M2525</guid>
      <dc:creator>LindaVasil</dc:creator>
      <dc:date>2011-09-29T16:15:41Z</dc:date>
    </item>
    <item>
      <title>Re: My pyton code is not selecting by location?  Help...</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/my-python-code-is-not-selecting-by-location-nbsp/m-p/71732#M2526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello Linda,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To answer your main question, the following line&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;for codes in Adj_Neighbors&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;is bugging because Adj_Neighbors contains nothing more than "shp_lyr", i.e. the name of your layer. To actually cycle through the values, you'd need to run a Search Cursor through it as you did with your main shape, using either:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;for row2 in arcpy.SearchCursor(Adj_Neighbors):
&amp;nbsp;&amp;nbsp;&amp;nbsp; GCA_List.append(row2.getValue("Grid_Code"))&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;or &lt;/SPAN&gt;&lt;A href="http://docs.python.org/tutorial/datastructures.html#list-comprehensions" rel="nofollow noopener noreferrer" target="_blank"&gt;Python's list comprehensions&lt;/A&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;GCA_List = [r.getValue('ELEVATION') for r in arcpy.SearchCursor('shp_lyr')]&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I also don't know how successful you'll be with this approach, if I'm reading your code right. You're creating a layer for each PIP (and so I presume 1 feature per layer), and then you're running that Layer through a Select by Location to find nearby features. For one, the Select by Location can only return a subset of the layer, so either 1 or 0 features. For two, you're comparing a layer to itself: the output will be the layer, as it will always match itself (which is why you can't do a Select By Location of a shape to itself in ArcMap, if I recall.)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What you would need to do is to create two separate shapes (as arcpy doesn't allow multiple independent layers on the same shape, I believe), turn one into a layer based on your PIP, and run a select by location on the other seeing how many of its features are a certain distance from your first layer's 1 feature.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;As a function of your needs, Near (for ArcInfo), Closest Feature Difference (for ET_Geowizards) or &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;some kind of Buffer Analysis might be mroe straightforward.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also worth mentioning&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- Cursors in 9.x need to be manually iterated through, so you would need to have another row = cur.next() inside your loop to cycle through each row&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- You seem to only be looking for values (as opposed to modifiying them), so a Search Cursor would be more appropriate. Also, as you seem to be using arcpy, I can add that arcpy module's cursors can be used as iterators, so you could replace:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;cur = arcpy.UpdateCursor(shp)
row = cur.next()
while row:
&amp;nbsp;&amp;nbsp;&amp;nbsp; ...
&amp;nbsp;&amp;nbsp;&amp;nbsp; row = cur.next()&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;with one line:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;for row in arcpy.SearchCursor(shp):
&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;- &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//00170000006p000000" rel="nofollow noopener noreferrer" target="_blank"&gt;MakeFeatureLayer_management&lt;/A&gt;&lt;SPAN&gt; actually allows for a where clause, so you could integrate your SelectByAttribute into it, like so:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;arcpy.MakeFeatureLayer_management(shp, "shp_lyr", sql)&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;A bit wordy, but I hope this helps!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:46:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/my-python-code-is-not-selecting-by-location-nbsp/m-p/71732#M2526</guid>
      <dc:creator>MarcNakleh</dc:creator>
      <dc:date>2021-12-10T22:46:08Z</dc:date>
    </item>
    <item>
      <title>Re: My python code is not selecting by location?  Help...</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/my-python-code-is-not-selecting-by-location-nbsp/m-p/71733#M2527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Absolutely this helps.&amp;nbsp; I'm pretty new to coding so I did not how to get around a shapefile selecting itself part.&amp;nbsp; I appreciate all the feedback and the clues of how to rewrite.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks very much!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Linda&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Sep 2011 14:22:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/my-python-code-is-not-selecting-by-location-nbsp/m-p/71733#M2527</guid>
      <dc:creator>LindaVasil</dc:creator>
      <dc:date>2011-09-30T14:22:35Z</dc:date>
    </item>
  </channel>
</rss>

