Hi Marcelo,You could accomplish this using python. Here is an example:import arcpy fc = r"C:\raster\polygon.shp" list = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"] for month in list: arcpy.FeatureToRaster_conversion(fc, month, r"C:\raster\precipitation_" + month + ".tif")
import arcpy fc = r"C:\raster\polygon.shp" list = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"] for month in list: arcpy.FeatureToRaster_conversion(fc, month, r"C:\raster\precipitation_" + month + ".tif")
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.