i am using the arcpy.Clip_management tool with python and i always get the error: Floating point division by zero. In the past it worked. Has somebody an idea?
i have one raster map: test (folder)
and one clipping file: schab.shp
my Python code:
import arcpy
def main():
arcpy.env.workspace = r'F:/2007/test_rastered'
arcpy.Clip_management('test', "#", 'F:/2007/test_clipped/test', 'F:/Schablone/schab.shp' , "0", "ClippingGeometry", "NO_MAINTAIN_EXTENT")
if __name__ == '__main__':
main()