## Add color map to DRGs ##==================================== import arcpy from arcpy import env # Set workspace arcpy.env.workspace = "C:/your_path_here" # Get list of grids rasterList = arcpy.ListRasters("*", "All") for raster in rasterList: # Assign colormap using clr file arcpy.AddColormap_management(raster, "#", "your_symbology_file.clr")
To visually assess hundreds of rasters I need to set each one with the same symbology. Is there a way to apply a particular symbology to multiple files without having to open each one up individually.Any feedback will be greatly appreciated!!
Aangemelde leden kunnen berichten plaatsen, updates volgen en meer. Nieuw hier? Registreer een gratis account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.