Calculates and returns the minimum and maximum x- and y-coordinates of a particular geospatial geometry column in a table.
Parameters
Name of the table on which the operation will be performed. Must be an existing table, in [schema_name.]table_name format, using standard name resolution rules.
Name of a geospatial geometry column on which the min-max will be calculated.
Optional parameters. The default value is an empty dict ( ).
Returns
A dict with the following entries–
Minimum x-coordinate value of the input parameter column_name.
Maximum x-coordinate value of the input parameter column_name.
Minimum y-coordinate value of the input parameter column_name.
Maximum y-coordinate value of the input parameter column_name.
Additional information.