[GIS] Portraying quarter circle symbology with multiple attributes in ArcGIS Desktop

arcgis-desktopsymbology

I have four columns, (A, B, C, D) and each can be ranked 1, 2, or 3 (point data).

I would like to portray each category at once based on colors assigned to the rankings (1 = green, 2 = yellow, 3 = red).

I am imagining this would look like a pie chart with four quarters, and each quarter would be colored based upon the ranking.

I'm using ArcGIS Desktop.

Best Answer

Assuming you are using ArcGIS Desktop...

You can symbolize based on multiple attributes but it is limited to 3 fields not 4. The quickest thing I would do is to create a new field and just concatenate fields A,B,C, and D to give you a code. This would give you data like 1121 2311 3312 and so on. Then you would just have to symbolize each ... nevermind that is way too many combos...


Make 4 definition queries on the data. You will produce 4 layers, 1 layer for each field. Ex: layer_A, layer_B, layer_C, layer_D. Create a custom symbol that is 1/4 of a circle for each layer. Top left, top right, bottom right, bottom left. Symbolize each layer based on the ranking 1,2,3 to change the color of that quadrant.

Simple square example with offsets circle

Custom pie circle symbols

square

Circle template (click reverse foreground/background) rotate by 90 degrees 3 times to get the full circle)

circle template

Related Question