Solved! Go to Solution.
Hello and thank you in advance for any suggestions to my question.
I am attempting to create an output that conveys locations with overlapping features. I have between 4 and 5 layers in polygon and polyline format. I would like to show areas that overlap on a scale base (areas that overlap 1-10 times using a graduated symbology format). The output may either be in raster or polygon form but I would like it to convey a type of "hot-spot" analysis where areas that overlap more times than others are described using a graduated symbology. Thanks.
import arcpy from arcpy.sa import * myRas = 'NameOfRasterInTOC' myRes = Con(IsNull(myRas),0,1) myRes.save(r'C:\Path\To\Output\Folder\or\filegeodatbase.gdb\RasterName')
Hello and thank you in advance for any suggestions to my question.
I am attempting to create an output that conveys locations with overlapping features. I have between 4 and 5 layers in polygon and polyline format. I would like to show areas that overlap on a scale base (areas that overlap 1-10 times using a graduated symbology format). The output may either be in raster or polygon form but I would like it to convey a type of "hot-spot" analysis where areas that overlap more times than others are described using a graduated symbology. Thanks.
import arcpy from arcpy.sa import * myRas = 'NameOfRasterInTOC' myRes = Con(IsNull(myRas),0,1) myRes.save(r'C:\Path\To\Output\Folder\or\filegeodatbase.gdb\RasterName')
Sorry for posting so much. I was able to sum the various raster layers using Raster Calculator. Thank you again Xander. Now my question is pertaining to adding raster layers with weighted fields. One of my layers contains data that is weighted between 0 and 1. Is it possible to add all other layers normally (as in adding them together using a value of 1) and add this special layer based on the spatial location of the weighted fields (ie: if an area with a weight of .5 overlaps with another area, it will be 1.5 and so on). Thank you in advance.
Side-note: Different areas within a single raster have differing weights.