[GIS] Spatial Join of Polygons to Polygon Grid with Shared Boundaries in ArcGIS Desktop

arcgis-10.3arcgis-desktoparcmapspatial-join

two layers here - maroon smaller polygons overlayed on a the pale grid

I have polygons containing an attribute to be summed by a polygon grid. the polygons with the attribute always share borders with each grid cell and never extend outside any grid cell (the grid has been used to 'union' the polygons prior).

I am having trouble in ArcMap 10.x getting the 'spatial join' tool using the 'intersect' or 'have their center in' or 'within' match options to assign the sum of the attributes of polygons within each grid cell to an attribute of the grid cell. I think this may be because of share borders, though the 'select by location' tool using 'within' will select the desired polygons.

The layers are the same projection and in the same geodatabase.
Also have set the 'merge rule' parameter of the field to 'sum' in the 'spatial join' tool.

The only work-around I've found is to use 'spatial join' tool with the 'intersect' match option and a 'search radius' set to a negative such as -100 meters.

Best Answer

@FelixIP answered this in the comments...

The spatial join is unnecessary when there is a summary statistics function (although the spatial join with 'have their centres' in as the match option should work, it did not for me).

This is useful when there are large polygons with a stat, say, a population estimate. You need to display this data on a common grid (vector). Sometimes two polygons or more intersect with a single grid poly. The following can be used:

  1. First scale your statistic - calculate population per unit area and add to attribute table
  2. Union polygons with the poly grid (not raster)
  3. Calculate the new population stat for each unioned poly - use the pop per unit area multiplied by the area of each unioned poly
  4. Summary statistics with the Gridcell ID as unique summary field
  5. Join output of (4) back to the poly grid using the Gridcell ID as unique case field
Related Question