arcpy.RasterToPolygon_conversion(inRaster, outPolygons, "NO_SIMPLIFY")
Hi Matt,Not sure what is causing the error (may need to contact Tech Support), but you can continue to execute the rest of your script using a try/except. Ex:try: arcpy.RasterToPolygon_conversion(inRaster, outPolygons, "NO_SIMPLIFY") except ExecuteError: pass
try: arcpy.RasterToPolygon_conversion(inRaster, outPolygons, "NO_SIMPLIFY") except ExecuteError: pass
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.