## 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!!
サインインしたメンバーは投稿、更新のフォローなどができます。初めてですか?無料アカウントを登録してください。
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.