I am writing an ArcPy script that creates a Point Density Raster file, and then changes the following properties in the resulting layer:
- Symbology
Symbology
ClassifiedClassified
Classes = 10Classes = 10
Classification Method = Geometrical IntervalClassification Method = Geometrical Interval
Excluded Value = 0Excluded Value = 0
- Display
Display
Resample during display using: bilinear interpolationResample during display using: bilinear interpolation
I know I can set lyr.symbology.numClasses = 10lyr.symbology.numClasses = 10. and lyr.symbology.excludedValues = 0lyr.symbology.excludedValues = 0, and even create a dummy layer with the above properties (symbologyLayer) and arcpy.ApplySymbologyFromLayer_management(lyr, symbologyLayer)arcpy.ApplySymbologyFromLayer_management(lyr, symbologyLayer). Is there a way to do this simply by setting attributes of lyr.symbologylyr.symbology, do I have to do it in one fell swoop with ApplySymbologyFromLayer_managementApplySymbologyFromLayer_management, or is there a better way?