## 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!!
Los miembros registrados pueden publicar, seguir actualizaciones y más. ¿Nuevo aquí? Regístrate gratis.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.