Skip to content
Advertisement

Calculate Mode of points that fall within each polygon

  • I have two tables in SQL Server.
  • Address Points & District Regions
  • Both have geom fields and share common SRID
  • The Address Points have an integer value field.

For each district I want to take the mode of this value field, from all of the address points that fall within it.

I have managed to get an update to calculate the average value. But I need the mode. I need to know which is the most recurring value for each district

I am struggling to try and adapt this to calculate the Mode. How would I do this?

e.g. If the following table is a subset of all of the address points that fall within a specific District, the mode value I am looking to extract would be 8, and update a ModeValue field back in the District layer.

Advertisement

Answer

The mode is the most frequent value. You can use aggregation to calculate this:

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement