Skip to main content

SpatialMatch

Use the SpatialMatch gem to find relationships between geometries from two different datasets. Common use cases include:

  • Finding which stores are located within specific delivery zones
  • Identifying roads that intersect with flood zones
  • Matching customer locations to their nearest service areas

The gem uses spatial joins to compare geometries and returns only the pairs that have the spatial relationship you specify, such as shapes overlapping or shapes touching. It works with points, lines, and polygons in Well-Known Text (WKT) format.

tip

Use the following gems to create correctly formatted geometries in a dataset:

Input and Output

The SpatialMatch gem accepts the following inputs and output.

PortDescription
in0Dataset containing geometries (points, lines, or polygons) in WKT format. This is the "left" dataset in the spatial join operation.
in1Dataset containing geometries (points, lines, or polygons) in WKT format. This is the "right" dataset in the spatial join operation.
outOutput dataset containing matched pairs of geometries along with all additional columns from both input datasets. Each row represents a source geometry and target geometry that satisfy the selected spatial relationship. Unmatched geometries are excluded from the output.

The output includes the following columns:
  • The source geometry column
  • All other in0 columns
  • The target geometry column prefixed with target_
  • All other in1 columns prefixed with target_
tip

You can use the same source for both in0 and in1 if you want to match geometries from the same dataset (self-join).

Parameters

Configure the SpatialMatch gem using the following parameters.

ParameterDescription
Source ColumnSelect the column from in0 that contains one set of geometric data.
Target ColumnSelect the column from in1 that contains another set of geometric data.
Select Match TypeChoose the spatial relationship that determines when a source geometry matches a target geometry.
Learn more in Match types.

Match types

Review the following to understand the criteria to satisfy different match types. The SpatialMatch gem returns a row for each match condition that is met.

Match typeDescription
Source Intersects TargetCondition is met if the source and target geometries share any portion of space. This is the most general spatial relationship. Any overlap, touching, or containment satisfies intersection.
Source Contains TargetCondition is met if the source geometry completely contains the target geometry. The target geometry must be entirely within the source geometry's interior and boundary.
Source Within TargetCondition is met if the source geometry is completely contained within the target geometry. This is the inverse of the Contains relationship.
Source Touches TargetCondition is met if the source and target geometries have at least one point in common, but their interiors do not intersect.
Source Touches or Intersects TargetCondition is met if the source and target geometries either touch (share boundary points) or intersect (share any portion of space). This combines the touch and intersect relationships.
Source Envelope Overlaps Target EnvelopeCondition is met if the minimum bounding rectangles (envelopes) of the source and target geometries overlap. This is a less precise check than a standard intersection.

Match types diagram

The following diagram includes visualizations for each match type.

Match types diagram

Example: Find stores within delivery zones

Assume you have two datasets:

  • store_locations contains store locations as points.

    store_idstore_namestore_locationstore_type
    1Downtown ElectronicsPOINT(-74.0059 40.7128)electronics
    2Midtown CafePOINT(-73.9857 40.7489)restaurant
    3Brooklyn BookstorePOINT(-73.9442 40.6782)bookstore
    4Queens PharmacyPOINT(-73.7949 40.7282)pharmacy
    5Upper East Side BoutiquePOINT(-73.9626 40.7831)clothing
  • delivery_zones contains delivery zones as polygons.

    zone_idzone_namezone_polygondelivery_fee
    MANHATTAN_SOUTHLower ManhattanPOLYGON((-74.0200 40.7000, -74.0200 40.7300, -73.9800 40.7300, -73.9800 40.7000, -74.0200 40.7000))5.99
    MANHATTAN_NORTHUpper ManhattanPOLYGON((-73.9800 40.7700, -73.9800 40.8000, -73.9400 40.8000, -73.9400 40.7700, -73.9800 40.7700))7.99
    BROOKLYN_WESTWestern BrooklynPOLYGON((-74.0000 40.6500, -74.0000 40.7000, -73.9200 40.7000, -73.9200 40.6500, -74.0000 40.6500))6.99
    QUEENS_CENTRALCentral QueensPOLYGON((-73.8500 40.7000, -73.8500 40.7500, -73.7500 40.7500, -73.7500 40.7000, -73.8500 40.7000))8.99

To find which delivery zones correspond to each store:

  1. Add a SpatialMatch gem to your pipeline canvas.
  2. Attach store_locations to the in0 port of the gem.
  3. Attach delivery_zones to the in1 port of the gem.
  4. Open the gem configuration interface.
  5. For the Source field, select the store_location column from the store_locations table.
  6. For the Target field, select the zone_polygon column from the delivery_zones table.
  7. Under Select Match Type, select Source Within Target.
  8. Save and run the gem.

Result

The SpatialMatch gem will return only the pairs of geometries that satisfy the selected match type. As a result:

  • Downtown Electronics matches the MANHATTAN_SOUTH zone.
  • Queens Pharmacy matches the QUEENS_CENTRAL zone.
  • Upper East Side Boutique matches the MANHATTAN_NORTH zone.
  • Midtown Cafe does not match any zone. This means that it is not in any delivery zone.