Hi,
I'm trying to calculate the area of multiple rasters on a cell by cell basis, that is from decimal degrees to square meters.
I've put together an equation that calculates that (see attachment) but as I'm very new to python I'm having difficulties trying to get the X Min, X Max, Y Min, Y Max values for each cell into the equation.
Any tips and trick that I can use to accomplish the task would be greatly appreciated.
Thanks
Toni
cursor = arcpy.SearchCursor(fc) for row in cursor: print row.Shape.extent.XMin, row.Shape.extent.YMin, row.Shape.extent.XMax, row.Shape.extent.YMax del cursor, row