I am a GIS instructor at UBC. I'm looking to show my students how to normialize a field by its sum (e.g. divide shape area by the sum of shape area to calculate relative coverage). This seems like it should be an easy thing to do. In python using numpy, it would be ...
Relative_Cover = Shape_Area/Shape_Area.sum()
I want to show my students how to do something like this in the field calculator, but it doesn't seem like there is a way? I've been searching the docs and I cannot find a way to get the field calculator to calculate the sum of a field without using python (too complex for intro GIS students).
I could have them create a summary table then join it to the original, or manually type in the summary statistics. But this is clunky and easy to make a typo. Is there no way to sum a field within the field calculator? This really seems like something that should exist already, but it doesn't, so I'd like to submit a feature request.