Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

The following procedure outlines the process for creating the geopivot tables:

Once your datasets are loaded into PostgreSQL, Studio Workflow Stored Procedure Tasks can be used to run the geopivot functions. There are two:

  • at_wkf_geopivot_sum - this sums the point data sources within each polygon
  • at_wkf_geopivot_count - this counts the number of point data sources within each polygon

Note that the resulting output table names should be lower-case, this will prevent problems accessing the data from MapServer in the next step.

Stored Procedure at_wkf_geopivot_sum

at_wkf_geopivot_sum takes the following parameters:

ParameterTypeDescription
geometry_tablecharacter varyingThe table of polygons to use for the data aggregation, all the columns in this table will be replicated in the output table.
geometry_id_columncharacter varyingA column in geometry_table that uniquely identifies the records.
data_tablecharacter varyingThe table containing records with point geometry and category.
category_columncharacter varyingThe column in data_table to be used to categorize the data.
value_columncharacter varyingThe column in data_table containing the values to be summed.
output_tablecharacter varyingThe table to create with the summed and pivoted data, if it exists it will be dropped first.

Create a Stored Procedure Task in Studio and select each parameter in turn to enter the values in the Edit parameter area e.g.

If successful, the following is returned:

at_sys_geopivot_sum finished: table [output_table] created

Stored Procedure at_wkf_geopivot_count

at_wkf_geopivot_count takes the following parameters:

ParameterTypeDescription
geometry_tablecharacter varyingThe table of polygons to use for the data aggregation, all the columns in this table will be replicated in the output table.
geometry_id_columncharacter varyingA column in geometry_table that uniquely identifies the records.
data_tablecharacter varyingThe table containing records with point geometry and category.
category_columncharacter varyingThe column in data_table to be used to categorize the data.
output_tablecharacter varyingThe table to create with the counted and pivoted data, if it exists it will be dropped first.

As with at_wkf_geopivot_sum these parameters should be listed in comma-delimited form in Studio.

If successful, at_wkf_geopivot_count returns the following:

at_sys_geopivot_count finished: table [output_table] created

Add Unique Idenfifier

Your final table must contain a unique identifier, of data type SERIAL. This is generally called “ogc_fid”. If not already present, this can be added using a Studio Workflow Stored Procedure Task that calls the function at_sys_add_column e.g.

This stored procedure takes the following parameters as shown in the above screenshot:

ParameterTypeDescription
tablenametextThe name of the table to which you wish to add the column
columnnametextThe name of the column you wish to add, in this case ‘ogc_fid’
datatypetextThe data type for the column,  in this case ‘serial’
  • No labels