<?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: Dealing with Group Layers in Python scripts in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/dealing-with-group-layers-in-python-scripts/m-p/636807#M49590</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;What happens if you start a new map document, create a new group layer and add the parks feature class to it? Avoid just copying and pasting the layer, but rather recreate the layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Either way would it be possible for you to &lt;/SPAN&gt;&lt;A href="mailto:&amp;quot;chris_fox@esri.com&amp;quot;" rel="nofollow"&gt;send your map document and the parks feature class to me&lt;/A&gt;&lt;SPAN&gt;? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have tested with the same exact scenario at 9.3 with a group layer called county features and a sub layer called parks and it worked as expected, so I am interested in what might be different in your test scenario.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Jul 2011 18:31:24 GMT</pubDate>
    <dc:creator>ChrisFox3</dc:creator>
    <dc:date>2011-07-07T18:31:24Z</dc:date>
    <item>
      <title>Dealing with Group Layers in Python scripts</title>
      <link>https://community.esri.com/t5/python-questions/dealing-with-group-layers-in-python-scripts/m-p/636801#M49584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm working on ArcGIS 9.3.1 and I run a python script which basically does a "select by location" query to several SDE layers which appear on the ArcMAP TOC (using a polygon shapefile the user points to) and copies the selected features to a new shapefile.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;THE PROBLEM IS that some layers are within a group layer, and then the script gives a error stating :&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;class 'arcgisscripting.ExecuteError'&amp;gt;: Failed to execute. Parameters are not valid.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ERROR 000840: The value is not a Feature Layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Failed to execute (SelectLayerByLocation)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;now I understand that group layer is not a feature Layer and that SelectLayerByLocation only accepts feature Layers, that's where my question fits in:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Question: How can I reach a feature layer inside a Group layer using python code? or better yet, how can I tell what kind of layer I'm dealing with (Feature\group layer) using python code(describe method doesn't work on group)?&amp;nbsp; I'm running the script from a tool I built in ArcToolBox. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;(this is a repost of a message I posted &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/33628-Dealing-with-Group-Layers-in-scripts"&gt;here&lt;/A&gt;&lt;SPAN&gt;, on geoprocessing forum, as I didn't find an answer and was hoping I'd find one here. thanks) &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in Advance.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2011 04:04:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/dealing-with-group-layers-in-python-scripts/m-p/636801#M49584</guid>
      <dc:creator>yonatanrubinstein</dc:creator>
      <dc:date>2011-07-05T04:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with Group Layers in Python scripts</title>
      <link>https://community.esri.com/t5/python-questions/dealing-with-group-layers-in-python-scripts/m-p/636802#M49585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I reviewed the other thread and Dale provided the proper method to pass a layer inside a Group Layer to a geoprocessing tool through python. Could you share more of your code? Do you pass the layer in as a parameter to the Script Tool or is hardcoded in the script?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In regards to your other point, unfortunately at 9.3 there is not an effective way to determine if a layer is a group layer or not. At ArcGIS 10 with the addition of the mapping module this functionality was added with the Layer Class and the isGroupLayer property. You can learn more about this&amp;nbsp; here:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/Layer/00s300000008000000/"&gt;http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/Layer/00s300000008000000/&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2011 20:17:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/dealing-with-group-layers-in-python-scripts/m-p/636802#M49585</guid>
      <dc:creator>ChrisFox3</dc:creator>
      <dc:date>2011-07-05T20:17:56Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with Group Layers in Python scripts</title>
      <link>https://community.esri.com/t5/python-questions/dealing-with-group-layers-in-python-scripts/m-p/636803#M49586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Have you made sure that you are passing the full path of the layer?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Dragging a layer interactively looks like just the group/layer string in the dialog, but behind the scenes, and passed as a parameter is the full path.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;A few judicious print statements will show that you need a full path, especially if you are not running in interactive mode and have not set the current workspace.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2011 21:53:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/dealing-with-group-layers-in-python-scripts/m-p/636803#M49586</guid>
      <dc:creator>KimOllivier</dc:creator>
      <dc:date>2011-07-05T21:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with Group Layers in Python scripts</title>
      <link>https://community.esri.com/t5/python-questions/dealing-with-group-layers-in-python-scripts/m-p/636804#M49587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Chris, Kim,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Enclosed is the script I've written (with a few minor rewrites of names). It works well, except for the Group Layer (in this example ","county features//parks") - it doesn't recognize the feature layer inside the group ("Parks"). I've tried to write the path every way Dale suggested ( // , \\ , \, /, ///) and still, it doesn't work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you in advance&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;(oh, and you're welcome to point out anything you think I can improve, as I am quite a NEWBIE)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;# -----------------------------------------------------------------------------------------------------------
#
#&amp;nbsp; This script does a "select by location" query on layers in the TOC and exports the results as shapefiles.
#
#&amp;nbsp; Note: when building a tool for this script, this tool requires a shapefile input
#
# -----------------------------------------------------------------------------------------------------------

# Import system modules
import sys, string, os, arcgisscripting
from os.path import basename, splitext

# Create the Geoprocessor object
gp = arcgisscripting.create(9.3)

# Load required toolboxes...
gp.AddToolbox("E:/Program Files/ArcGIS/ArcToolbox/Toolboxes/Analysis Tools.tbx")
gp.AddToolbox("E:/Program Files/ArcGIS/ArcToolbox/Toolboxes/Data Management Tools.tbx")

multinputs = sys.argv[1]
inputlist = multinputs.split(";")
units = ["unit_388", "unit_434"]

# Local variables...
unitnames = [ splitext(basename(i))[0] for i in inputlist ]
cop_dictionary = {"local housing":"house","local streets":"streets","county features//parks":"cparks"}
#The cop_dictionary variable houses the layer's names: the first name as the one appearing in TOC, second name as name of output shp
#notice the third one is a parks layer in a group layer (county features)
part_path = "X:\\Exported_shps\\" 

f = open( part_path + "logfile.txt ", 'a')
f.write(" The script is: " + str(sys.argv[0]))
for iter in cop_dictionary:
&amp;nbsp;&amp;nbsp;&amp;nbsp; for curr in unitnames:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fc_output_subdir = part_path + str(curr) + "\\"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; try:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; os.makedirs(fc_output_subdir)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; except OSError:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pass
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; exportkav = fc_output_subdir + cop_dictionary[iter] 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; imp = iter
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; inter = iter
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; using = "X:\\units_poly_bank\\" + curr + ".shp"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.AddMessage( cop_dictionary[iter] +" "+ curr)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; f.write( "&amp;nbsp;&amp;nbsp; " + str(cop_dictionary[iter])+ " \n")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; f.write("&amp;nbsp;&amp;nbsp; " + str(curr)+ " \n")

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; desc = gp.Describe(imp)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; typest = str(desc.ShapeType)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if "Point" in typest:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.SelectLayerByLocation_management(imp, "WITHIN", using, "", "NEW_SELECTION")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; f.write("POINT LAYER DETECTED!! performing -WITHIN- select ONLY" + str(imp)+ " \n")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.AddMessage("POINT LAYER DETECTED!! performing -WITHIN- select ONLY")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.SelectLayerByLocation_management(imp, "WITHIN", using, "", "NEW_SELECTION")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; f.write("Finished -WITHIN- select"+ " \n")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.AddMessage("Finished -WITHIN- select")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.SelectLayerByLocation_management(imp, "CROSSED_BY_THE_OUTLINE_OF", using, "", "ADD_TO_SELECTION")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; f.write("Finished -CROSSED_BY_THE_OUTLINE- select"+ " \n")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.AddMessage("Finished -CROSSED_BY_THE_OUTLINE- select")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Process: Select...
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.Select_analysis(inter, exportkav, "")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.AddMessage(exportkav + " has been exported \n")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; f.write( str(cop_dictionary[iter]) + "_" + curr + " has been exported \n" )

# Use these commands when f i n i s h e d
f.write( "Total export has ended \n" )
f.flush()
f.close()&amp;nbsp; 

del inputlist, using, exportkav, imp, inter



&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 03:04:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/dealing-with-group-layers-in-python-scripts/m-p/636804#M49587</guid>
      <dc:creator>yonatanrubinstein</dc:creator>
      <dc:date>2021-12-12T03:04:27Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with Group Layers in Python scripts</title>
      <link>https://community.esri.com/t5/python-questions/dealing-with-group-layers-in-python-scripts/m-p/636805#M49588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for passing along the code. Initially, I don't see any logic errors that would cause this problem other than "//" a single slash forward or backward should work, but you indicated this was a problem as well.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;A couple of things to try, can you run the select by location tool in arcmap when selecting the layer within the group as the input?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Write a simplified script with everything hardcoded that only does a select by location on the group layer. Then create a script tool with no paramaters and run it, does it work?&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
import arcgisscripting
gp = arcgisscripting.create(9.3)
gp.SelectLayerByLocation_management("county features/parks", "WITHIN", "AnotherLayer", "", "NEW_SELECTION") #Change "AnotherLayer" to a layer in the Map Document to use in the selection&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In your original code you can also add gp.AddMessage statements to print variables that are being passed into the Select Layer by Location function call. Specifically it would be good to see what is actually being stored in the variable 'imp' when it is passed to Select Layer by Location.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 03:04:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/dealing-with-group-layers-in-python-scripts/m-p/636805#M49588</guid>
      <dc:creator>ChrisFox3</dc:creator>
      <dc:date>2021-12-12T03:04:29Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with Group Layers in Python scripts</title>
      <link>https://community.esri.com/t5/python-questions/dealing-with-group-layers-in-python-scripts/m-p/636806#M49589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Answers:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I ran the Select by location tool with choosing the feature class within the group feature. It worked fine, without any problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I wrote a simplified script with the variables hardcoded, exactly as you wrote. It didn't work - &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When running the script on "county features/parks" I got the following error: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;class 'arcgisscripting.ExecuteError'&amp;gt;: Failed to execute. Parameters are not valid.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ERROR 000732: Input Feature Layer: Dataset county features/parks does not exist or is not supported&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Failed to execute (SelectLayerByLocation).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When running the script on "parks" I got the following error: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;class 'arcgisscripting.ExecuteError'&amp;gt;: Failed to execute. Parameters are not valid.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ERROR 000840: The value is not a Feature Layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Failed to execute (SelectLayerByLocation). &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When adding the GP.Addmessage (imp) it prints out the name of the dataset : "county features/parks".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The thing I've noticed but can't explain: I have about ten group layers and it turns out that the above errors happens with all of them but one (which gets selected without a problem), but there is nothing different about that one - it is identical in every parameter I can think of.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What do you say?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jul 2011 11:40:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/dealing-with-group-layers-in-python-scripts/m-p/636806#M49589</guid>
      <dc:creator>yonatanrubinstein</dc:creator>
      <dc:date>2011-07-07T11:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: Dealing with Group Layers in Python scripts</title>
      <link>https://community.esri.com/t5/python-questions/dealing-with-group-layers-in-python-scripts/m-p/636807#M49590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;What happens if you start a new map document, create a new group layer and add the parks feature class to it? Avoid just copying and pasting the layer, but rather recreate the layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Either way would it be possible for you to &lt;/SPAN&gt;&lt;A href="mailto:&amp;quot;chris_fox@esri.com&amp;quot;" rel="nofollow"&gt;send your map document and the parks feature class to me&lt;/A&gt;&lt;SPAN&gt;? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have tested with the same exact scenario at 9.3 with a group layer called county features and a sub layer called parks and it worked as expected, so I am interested in what might be different in your test scenario.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jul 2011 18:31:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/dealing-with-group-layers-in-python-scripts/m-p/636807#M49590</guid>
      <dc:creator>ChrisFox3</dc:creator>
      <dc:date>2011-07-07T18:31:24Z</dc:date>
    </item>
  </channel>
</rss>

