I'm new in using Python - Arcmap.
I have on my map a list of layers with the nearly same name (bound3 to bound50)
I want to calculate the MinimumBoundingGeometry_management. I found out how to do it for one single layer.
arcpy.MinimumBoundingGeometry_management("bound3","bound3ConvexHull","CONVEX_HULL","ALL")
Instead I'd like to create a loop like in matlab style:
for i=3:1:50
arcpy.MinimumBoundingGeometry_management(boundi,boundiConvexHull,...
"CONVEX_HULL","ALL")
end
can someone give me an hint !
thanks a lot