[GIS] Dynamically creating lyr file in ArcPy (for use with group layer)

arcpygroup-layerlayer-file

I'm trying to create an mxd that can dynamically create and name group layers, and populate them with various feature layers. I've seen some examples of how to do this, such as : Creating empty group layer within existing group layer using arcpy.mapping?

The basics seem to be: reference an empty layer file:

groupLayer = arcpy.mapping.Layer(r"D:\Test\GroupTest.lyr")

Add it to the map:

arcpy.mapping.AddLayer(df, groupLayer, "BOTTOM")
listedGroupLayer = arcpy.mapping.ListLayers(mxd, "GroupTest", df)[0]

Then add some layer to it:

addLayer = arcpy.mapping.layer(r"D\Test\Rivers.lyr")
arcpy.mapping.AddLayerToGroup(df, listedGroupLayer, addLayer, "BOTTOM")[0]

I'm getting stuck on the first step: I need to dynamically create an empty layer file (based off of group layer names in a spreadsheet), before referencing it.

Any examples of how to create an empty layer file (rather than reference one), within python?

Best Answer

Another option is to have a generic group layer saved as *.lyr file. Then when you load the layer change the name property and add it to the map document. You may be able to rename it after adding it to the map document. Then save the map document to retain the changes.

lyr = arcpy.mapping.Layer("grouplayer.lyr")
lyr.name = "Test Name"
mxd = arcpy.mapping.MapDocument("CURRENT")
df = arcpy.mapping.ListDataFrames(mxd)[0]
arcpy.mapping.AddLayer(df,lyr,"BOTTOM")
Related Question