<?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: Group layers in Mapping Questions</title>
    <link>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329249#M3490</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Are you looking to export to pdf while looping thru each layer or are you just trying to do an export to pdf for the group layer?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Aug 2013 19:26:36 GMT</pubDate>
    <dc:creator>MichaelVolz</dc:creator>
    <dc:date>2013-08-27T19:26:36Z</dc:date>
    <item>
      <title>Group layers</title>
      <link>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329242#M3483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Is there a script that allows you to cycle through multiple group layers and turn on and off group layers one by one?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Alex&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Aug 2013 20:30:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329242#M3483</guid>
      <dc:creator>AlexGole1</dc:creator>
      <dc:date>2013-08-21T20:30:29Z</dc:date>
    </item>
    <item>
      <title>Re: Group layers</title>
      <link>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329243#M3484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can iterate through all layers and test for Layer.isGroupLayer.&amp;nbsp; If it returns false, set visible = False.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Aug 2013 13:13:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329243#M3484</guid>
      <dc:creator>JeffBarrette</dc:creator>
      <dc:date>2013-08-22T13:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: Group layers</title>
      <link>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329244#M3485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I tried using the following code to iterate through group layers but it seems like "isGroupLayer" is not an attribute (error message). I am a bit confused about this one. I am just trying to turn on a layer, export it as PDF.l&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Alex&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy, os
myPath&amp;nbsp;&amp;nbsp;&amp;nbsp; = r"K:\Working\Alex_Gole\Try\\"
arcpy.env.workspace = myPath
myMap = arcpy.mapping.MapDocument(myPath + "MyMap.mxd")
layer = arcpy.mapping.ListLayers(myMap)
vislayer = layer.isGroupLayer
df = arcpy.mapping.ListDataFrames(myMap)[0]
# Clear visibility of all layers except for the community areas layer
for lyr in vislayer:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Turning on Layer " + lyr.name
&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr.visible = True
else:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Turning off layer " + lyr.name
&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr.visible = False
#Export to PDF
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "exporting map"
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.mapping.ExportToPDF(myMap, myPath + str(vislayer.name) + ".pdf")&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 15:35:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329244#M3485</guid>
      <dc:creator>AlexGole1</dc:creator>
      <dc:date>2021-12-11T15:35:44Z</dc:date>
    </item>
    <item>
      <title>Re: Group layers</title>
      <link>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329245#M3486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy, os, sys
path = os.path.dirname(sys.argv[0])
mxd = arcpy.mapping.MapDocument(path + r"/MyMap.mxd")
outputPath = r"K:\Working\Alex_Gole\Try"
mapLyr = arcpy.mapping.ListLayers(mxd)[0]

for lyr in mapLyr:
&amp;nbsp;&amp;nbsp;&amp;nbsp; if lyr.isGroupLayer:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Turning on group Layer " + lyr.name
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr.visible = True
&amp;nbsp;&amp;nbsp;&amp;nbsp; else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr.visible = False

if os.path.exists(path + "layers.pdf"):
&amp;nbsp;&amp;nbsp;&amp;nbsp; os.remove(path + "layers.pdf")
arcpy.mapping.ExportToPDF(mxd, os.path.join(outputPath, lyr.name + "layers.pdf"))
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying with this script but it does&amp;nbsp; not seem like it returns anything.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Alex&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 15:35:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329245#M3486</guid>
      <dc:creator>AlexGole1</dc:creator>
      <dc:date>2021-12-11T15:35:47Z</dc:date>
    </item>
    <item>
      <title>Re: Group layers</title>
      <link>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329246#M3487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Can you try removing the &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;if lyr.isGroupLayer:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;else:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Then just try printing the lyr.name property to ensure that you are indeed looping through the layers.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Aug 2013 18:47:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329246#M3487</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2013-08-27T18:47:05Z</dc:date>
    </item>
    <item>
      <title>Re: Group layers</title>
      <link>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329247#M3488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy, os
myPath = r"K:\Working\Alex_Gole\Try\\"
arcpy.env.workspace = myPath
myMap = arcpy.mapping.MapDocument(myPath + "MyMap.mxd")
layer = arcpy.mapping.ListLayers(myMap)
df = arcpy.mapping.ListDataFrames(myMap)[0]
# Clear visibility of all layers except for the community areas layer
for lyr in layer:
&amp;nbsp;&amp;nbsp;&amp;nbsp; if lyr.isGroupLayer:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Turning on Layer " + lyr.name
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr.visible = True
&amp;nbsp;&amp;nbsp;&amp;nbsp; else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Turning off layer " + lyr.name
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr.visible = False
#Export to PDF
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "exporting map"
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.mapping.ExportToPDF(myMap, myPath + str(lyr.name) + ".pdf")&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Seems like this work. My only two worries here is that I dont see my legend being updated automatically and I dont see the name of the group layer as the PDF name when exported.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Can you try removing the &lt;BR /&gt;&lt;BR /&gt;if lyr.isGroupLayer:&lt;BR /&gt;&lt;BR /&gt;and&lt;BR /&gt;&lt;BR /&gt;else:&lt;BR /&gt;&lt;BR /&gt;Then just try printing the lyr.name property to ensure that you are indeed looping through the layers.&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 15:35:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329247#M3488</guid>
      <dc:creator>AlexGole1</dc:creator>
      <dc:date>2021-12-11T15:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: Group layers</title>
      <link>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329248#M3489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Alex,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; In your first code entry, you alternate the slash and backslash for the map document concatenation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For the legend update, you may need to do a refresh on the dataframe to show the changes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For the myPath variable in your last entry, you have an additional "\" at the end.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jim&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Aug 2013 19:23:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329248#M3489</guid>
      <dc:creator>JimCousins</dc:creator>
      <dc:date>2013-08-27T19:23:12Z</dc:date>
    </item>
    <item>
      <title>Re: Group layers</title>
      <link>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329249#M3490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Are you looking to export to pdf while looping thru each layer or are you just trying to do an export to pdf for the group layer?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Aug 2013 19:26:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329249#M3490</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2013-08-27T19:26:36Z</dc:date>
    </item>
    <item>
      <title>Re: Group layers</title>
      <link>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329250#M3491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Are you looking to export to pdf while looping thru each layer or are you just trying to do an export to pdf for the group layer?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am looking to export each group layer as a separate PDF.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Aug 2013 20:30:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329250#M3491</guid>
      <dc:creator>AlexGole1</dc:creator>
      <dc:date>2013-08-27T20:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: Group layers</title>
      <link>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329251#M3492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Seems to me that you should put the export to pdf statement in the GroupLayer true portion of the if else clause.&amp;nbsp; I would think it is currently exporting every layer out to a pdf since the export to pdf statement is outside the if else clause but within the for loop.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Aug 2013 11:36:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329251#M3492</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2013-08-28T11:36:16Z</dc:date>
    </item>
    <item>
      <title>Re: Group layers</title>
      <link>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329252#M3493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Seems to me that you should put the export to pdf statement in the GroupLayer true portion of the if else clause.&amp;nbsp; I would think it is currently exporting every layer out to a pdf since the export to pdf statement is outside the if else clause but within the for loop.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You are right. It worked perfectly. Now I dont know if it is easy to do but I am trying to update figure title name and source ffor each PDF using a table. Any idea how to do so?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Alex&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy, os, sys
myPath = os.path.dirname(sys.argv[0])
myMap = arcpy.mapping.MapDocument(myPath + r"/MyMap2.mxd")
layer = arcpy.mapping.ListLayers(myMap, "Map_Elem_Table_v2")[0]
rows = arcpy.SearchCursor(layer)

# Legend Items
fignumElem = arcpy.mapping.ListLayoutElements(myMap, "TEXT_ELEMENT","FigNumber")[0]&amp;nbsp; 
titleElem = arcpy.mapping.ListLayoutElements(myMap, "TEXT_ELEMENT","FigTitle")[0]
sourceElem = arcpy.mapping.ListLayoutElements(myMap, "TEXT_ELEMENT","FigSource")[0]

#create a cursor to access values from attribute table

for row in rows:
&amp;nbsp;&amp;nbsp;&amp;nbsp; fignumElem.text = str(row.FigNumber)
&amp;nbsp;&amp;nbsp;&amp;nbsp; titleElem.text = unicode(row.FigTitle)
&amp;nbsp;&amp;nbsp;&amp;nbsp; sourceElem.text = str(row.FigSource)
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
# Loop through each Group layer and export to PDF

for lyr in layer:
&amp;nbsp;&amp;nbsp;&amp;nbsp; if lyr.isGroupLayer:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Turning on Layer " + lyr.name
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr.visible = True
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "exporting map"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.mapping.ExportToPDF(myMap, myPath + str(lyr.name) + ".pdf")
&amp;nbsp;&amp;nbsp;&amp;nbsp; else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Turning off layer " + lyr.name
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr.visible = False&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 15:35:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329252#M3493</guid>
      <dc:creator>AlexGole1</dc:creator>
      <dc:date>2021-12-11T15:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: Group layers</title>
      <link>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329253#M3494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Is Map_Elem_Table_v2 a standalone table or the table associated with the feature class?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If it is a standalone table, I think you need to use the ListTables function to get to the tabular data that you are looking for.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Aug 2013 19:14:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329253#M3494</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2013-08-28T19:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: Group layers</title>
      <link>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329254#M3495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Is Map_Elem_Table_v2 a standalone table or the table associated with the feature class?&lt;BR /&gt;&lt;BR /&gt;If it is a standalone table, I think you need to use the ListTables function to get to the tabular data that you are looking for.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;It is a GDB standalone table. How would I point (link) to this table in my script?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;tables = arcpy.ListTables()

# Legend Items
fignumElem = arcpy.mapping.ListLayoutElements(myMap, "TEXT_ELEMENT","FigNumber")[0]&amp;nbsp; 
titleElem = arcpy.mapping.ListLayoutElements(myMap, "TEXT_ELEMENT","FigTitle")[0]
sourceElem = arcpy.mapping.ListLayoutElements(myMap, "TEXT_ELEMENT","FigSource")[0]

#create a cursor to access values from attribute table

for table in tables:
&amp;nbsp;&amp;nbsp;&amp;nbsp; fignumElem.text = str(row.FigNumber)
&amp;nbsp;&amp;nbsp;&amp;nbsp; titleElem.text = unicode(row.FigTitle)
&amp;nbsp;&amp;nbsp;&amp;nbsp; sourceElem.text = str(row.FigSource)
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 15:35:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329254#M3495</guid>
      <dc:creator>AlexGole1</dc:creator>
      <dc:date>2021-12-11T15:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: Group layers</title>
      <link>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329255#M3496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;if it is the only standalone table, I think you could access it with index 0.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;if there is more than 1 table, then use an if then statement to trap it by table.name and then get to the specific field you are looking for.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Aug 2013 19:41:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329255#M3496</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2013-08-28T19:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: Group layers</title>
      <link>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329256#M3497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sorry, I am using a fc. for the legend fig name and source.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Aug 2013 20:50:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/group-layers/m-p/329256#M3497</guid>
      <dc:creator>AlexGole1</dc:creator>
      <dc:date>2013-08-28T20:50:57Z</dc:date>
    </item>
  </channel>
</rss>

