I have the following code:
for fc in fcs:
desc = arcpy.Describe(fc)
ext = desc.extent
ext.split(" ")
print ext
I'm getting error: AttributeError: Point: Get attribute split does not exist
I know my fcs list is okay and the extent property is working correctly. I want each fc in fcs to output a list with the coordinates like this:
[-179.168566355952, 51.2134728616834, 179.748708978836, 71.3896098800921, NaN, NaN, NaN, NaN]