data

This module contains functions and procedures that make use of data (user-provided data) for their computations.

ENRICH_GRID

ENRICH_GRID(grid_type, input_query, input_index_column, data_query, data_geography_column, variables, output)

Description

This procedure enriches a set of grid cells of one of the supported types (quadbin) with data from another enrichment query. The cells are identified by their indices.

As a result of this process, each input grid cell will be enriched with the data of the enrichment query that spatially intersects it. When the input cell intersects with more than one feature of the enrichment query, the data is aggregated using the aggregation methods specified.

Valid aggregation methods are:

  • SUM: It assumes the aggregated variable is an extensive property (e.g. population). Accordingly, the value corresponding to the enrichment feature intersected is weighted by the fraction of area or length intersected. If the enrichment features are points, then a simple sum is performed.

  • MIN: It assumes the aggregated variable is an intensive property (e.g. temperature, population density). Thus, the value is not altered by the intersected area/length as it's the case for SUM.

  • MAX: It assumes the aggregated variable is an intensive property (e.g. temperature, population density). Thus, the value is not altered by the intersected area/length as it's the case for SUM.

  • AVG: It assumes the aggregated variable is an intensive property (e.g. temperature, population density). Thus, the value is not altered by the intersected area/length as it's the case for SUM. However, a weighted average is computed, using the intersection areas or lengths as the weight. When the enrichment features are points, a simple average is computed.

  • COUNT It computes the number of enrichment features that contain the enrichment variable and are intersected by the input geography.

Input parameters

  • grid_type: Type of grid: "quadbin".

  • input_query: VARCHAR query to be enriched; this query must produce valid grid indices for the selected grid type in a column of the proper type (INT for quadbin). It can include additional columns with data associated with the grid cells that will be preserved. A qualified table name can be given as well, e.g. 'database.schema.table-name' or 'schema.table-name'.

  • input_index_column: VARCHAR name of a column in the query that contains the grid indices.

  • data_query: VARCHAR query that contains both a geography column and the columns with the data that will be used to enrich the polygons provided in the input query.

  • data_geography_column: VARCHAR name of the GEOGRAPHY column provided in the data_query.

  • variables: VARCHAR a JSON array of pairs. The column that will be used to enrich the input polygons and their corresponding aggregation method. e.g. [["var1","sum"],["var2","count"]].

  • output: VARCHAR containing the name of an output table to store the results e.g. 'schema.table-name'. The resulting table cannot exist before running the procedure.

Output

The output table will contain all the input columns provided in the input_query and one extra column for each variable in variables, named after its corresponding enrichment column and including a suffix indicating the aggregation method used.

Examples

CALL carto.ENRICH_GRID(
   'quadbin',
   'SELECT 5256779493799886847 AS index
   UNION ALL SELECT 5256779493812469759
   UNION ALL SELECT 5256779493816664063
   UNION ALL SELECT 5256779493808275455
   UNION ALL SELECT 5256779493820858367
   UNION ALL SELECT 5256779493825052671
   UNION ALL SELECT 5256779493900550143
   UNION ALL SELECT 5256779493913133055
   UNION ALL SELECT 5256779493917327359',
   'index',
   'SELECT geom, var1, var2 FROM my-database.my-schema.my-data',
   'geom',
   '[["var1", "sum"],["var2", "sum"],["var2", "max"]]',
   'my-database.my-schema.my-enriched-table'
);
-- The table `my-database.my-schema.myenrichedtable` will be created
-- with columns: index, var1_sum, var2_sum, var2_max
CALL carto.ENRICH_GRID(
   'quadbin',
   'my-database.my-schema.my-table',
   'index',
   'SELECT geom, var1, var2 FROM my-database.my-schema.my-data',
   'geom',
   '[["var1", "sum"],["var2", "sum"],["var2", "max"]]',
   'my-database.my-schema.my-table'
);
-- The table `my-database.my-schema.my-table` will be augmented
-- with columns: var1_sum, var2_sum, var2_max

ENRICH_POINTS

ENRICH_POINTS(input_query, input_geography_column, data_query, data_geography_column, variables, output)

Description

This procedure enriches a query containing geographic points with data from another query, spatially matching both and aggregating the result.

As a result of this process, each input point will be enriched with the data from the enrichment query that spatially intersects it. When an input point intersects with more than one enrichment polygon, point, or line, the data is aggregated using the aggregation methods specified.

Valid aggregation methods are: SUM, MIN, MAX, AVG, and COUNT.

Input parameters

  • input_query: VARCHAR query to be enriched. A qualified table name can be given as well, e.g. 'database.schema.table-name' or 'schema.table-name'.

  • input_geography_column: VARCHAR name of the GEOGRAPHY column in the query containing the points to be enriched.

  • data_query: VARCHAR query that contains both a geography column and the columns with the data that will be used to enrich the points provided in the input query.

  • data_geography_column: VARCHAR name of the GEOGRAPHY column provided in the data_query.

  • variables: VARCHAR a JSON array of pairs. The column that will be used to enrich the input points and their corresponding aggregation method. e.g. [["var1","sum"],["var2","count"]].

  • output: VARCHAR containing the name of an output table to store the results e.g. 'schema.table-name'. The resulting table cannot exist before running the procedure.

Output

The output table will contain all the input columns provided in the input_query and one extra column for each variable in variables, named after its corresponding enrichment column and including a suffix indicating the aggregation method used.

Examples

CALL carto.ENRICH_POINTS(
   'SELECT id, geom FROM my-schema.my-input',
   'geom',
   'SELECT geom, var1, var2 FROM my-database.my-schema.my-data',
   'geom',
   '[["var1", "sum"],["var2", "count"]]',
   'my-database.my-schema.my-enriched-table'
);
-- The table 'my-database.my-schema.my-enriched-table' will be created
-- with columns: id, geom, var1_sum, var2_count
CALL carto.ENRICH_POINTS(
   'my-schema.my-input',
   'geom',
   'SELECT geom, var1, var2 FROM my-database.my-schema.my-data',
   'geom',
   '[["var1", "sum"],["var2", "count"]]',
   'my-database.my-schema.my-enriched-table'
);
-- The table 'my-database.my-schema.my-enriched-table' will be created
-- with columns: id, geom, var1_sum, var2_count

ENRICH_POLYGONS

ENRICH_POLYGONS(input_query, input_geography_column, data_query, data_geography_column, variables, output)

Description

This procedure enriches a query containing geographic polygons with data from another query, spatially matching both and aggregating the result.

As a result of this process, each input polygons will be enriched with the data from the enrichment query that spatially intersects it. When the input polygons intersects with more than one enrichment polygon, point, or line, the data is aggregated using the aggregation methods specified.

Valid aggregation methods are:

  • SUM: It assumes the aggregated variable is an extensive property (e.g. population). Accordingly, the value corresponding to the enrichment feature intersected is weighted by the fraction of area or length intersected. If the enrichment features are points, then a simple sum is performed.

  • MIN: It assumes the aggregated variable is an intensive property (e.g. temperature, population density). Thus, the value is not altered by the intersected area/length as it's the case for SUM.

  • MAX: It assumes the aggregated variable is an intensive property (e.g. temperature, population density). Thus, the value is not altered by the intersected area/length as it's the case for SUM.

  • AVG: It assumes the aggregated variable is an intensive property (e.g. temperature, population density). Thus, the value is not altered by the intersected area/length as it's the case for SUM. However, a weighted average is computed, using the intersection areas or lengths as the weight. When the enrichment features are points, a simple average is computed.

  • COUNT It computes the number of enrichment features that contain the enrichment variable and are intersected by the input geography.

Input parameters

  • input_query: STRING query to be enriched. A qualified table name can be given as well, e.g. 'schema.database.table-name' or 'database.table-name'.

  • input_geography_column: STRING name of the GEOMETRY/GEOGRAPHY column in the query containing the points to be enriched. The input cannot be a GeometryCollection.

  • data_query: STRING query that contains both a geography column and the columns with the data that will be used to enrich the points provided in the input query.

  • data_geography_column: STRING name of the GEOMETRY/GEOGRAPHY column provided in the data_query.

  • variables: STRING a JSON with a property variables containing an array of pairs. The column that will be used to enrich the input polygons and their corresponding aggregation method. e.g. [["var1","sum"],["var2","count"]].

  • output: STRING containing the name of an output table to store the results e.g. 'database.table-name'. The resulting table cannot exist before running the procedure.

The input and data geography columns need to be in the same spatial reference system. If they are not, you will need to convert them.

Output

The output table will contain all the input columns provided in the input_query and one extra column for each variable in variables, named after its corresponding enrichment column and including a suffix indicating the aggregation method used.

Examples

CALL carto.ENRICH_POLYGONS(
   'SELECT id, geom FROM my-schema.my-input',
   'geom',
   'SELECT geom, var1, var2 FROM my-database.my-schema.my-data',
   'geom',
   '[["var1", "sum"],["var2", "count"]]',
   'my-database.my-schema.my-enriched-table'
);
-- The table 'my-database.my-schema.my-enriched-table' will be created
-- with columns: id, geom, var1_sum, var2_count
CALL carto.ENRICH_POLYGONS(
   'my-schema.my-input',
   'geom',
   'SELECT geom, var1, var2 FROM my-database.my-schema.my-data',
   'geom',
   '[["var1", "sum"],["var2", "count"]]',
   'my-database.my-schema.my-enriched-table'
);
-- The table 'my-database.my-schema.my-enriched-table' will be created
-- with columns: id, geom, var1_sum, var2_count

Last updated

Was this helpful?