Atlas logo
⌘K

Documentation

Getting Started
Data
Maps
Builder
Workflows
Forms
Sharing & Collaboration
Projects & Management
Connections

Table Join

Join datasets by common field

The Table Join workflow component combines two datasets by matching rows that share a common key column. Use it to attach attributes from one dataset to features or rows in another — for example, joining a spreadsheet of property data to a spatial layer using a shared parcel ID.

When to use Table Join

Use Table Join when:

  • You have two datasets that share a common identifier column and you want to merge their columns.
  • You want to enrich a spatial layer with non-spatial data from a spreadsheet or database export.
  • You need to add calculated or categorised attributes to features without editing the source data directly.

For joining datasets based on geography (spatial proximity or containment) rather than a shared key, use Spatial Join instead.

Inputs

InputTypeDescription
Base datasetDatasetThe primary dataset whose rows are kept.
Join datasetDatasetThe dataset providing extra columns.
Join columnColumnThe key column in the base dataset.
Join column otherColumnThe matching key column in the join dataset.
HowSelectionThe join type — see below.

Join types

TypeRows in result
InnerOnly rows where the key matches in both datasets. Unmatched rows are dropped from the result.
LeftAll rows from the base dataset. Rows with no match in the join dataset have empty values for the joined columns.
RightAll rows from the join dataset. Rows with no match in the base dataset have empty values for the base columns.
OuterAll rows from both datasets, matched where possible. Rows with no match have empty values for the missing columns.

Left is the most common choice: every row from your base layer is preserved and extra columns are added wherever a match exists.

Outputs

OutputTypeDescription
Result datasetDatasetThe combined dataset with columns from both inputs.

How to set up a Table Join

  1. Open or create a workflow on the Workflows tab of your project.
  2. Add a Table Join component from the component library.
  3. Connect your Base dataset — this is the dataset you want to add columns to.
  4. Connect your Join dataset — this is the dataset containing the extra columns.
  5. Set Join column to the key column in the base dataset (for example, parcel_id).
  6. Set Join column other to the matching key column in the join dataset (for example, id).
  7. Choose a How (join type). Start with Left to keep all rows from your base dataset.
  8. Connect the Result dataset output to the next step in your workflow or use it as a layer source.

Example: adding attributes from a spreadsheet to a spatial layer

Suppose you have:

  • A spatial dataset of land parcels, each with a parcel_id column.
  • A CSV import with columns parcel_id, zoning_class, and land_value.

To merge them:

  1. Add a Table Join component.
  2. Set Base dataset to the parcel spatial layer.
  3. Set Join dataset to the CSV import.
  4. Set Join column to parcel_id (from the base dataset).
  5. Set Join column other to parcel_id (from the CSV).
  6. Set How to Left so every parcel is included in the result, even if it has no match in the CSV.

The result dataset contains all parcel geometries plus the zoning_class and land_value columns wherever a matching parcel_id exists.

  • Enrich Dataset — adds columns computed from existing fields rather than from a second dataset.
  • Spatial Join — joins features based on geographic relationship rather than a shared key column.
PreviousFilter by SpatialWorkflows
NextEnrich DatasetWorkflows