Skip to main content

◆ aggregateMinMaxGeometry() [1/2]

AggregateMinMaxGeometryResponse kinetica.Kinetica.aggregateMinMaxGeometry (AggregateMinMaxGeometryRequestrequest_)
inline

Calculates and returns the minimum and maximum x- and y-coordinates of a particular geospatial geometry column in a table.

Parameters
request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

Definition at line 5786 of file KineticaFunctions.cs.

◆ aggregateMinMaxGeometry() [2/2]

AggregateMinMaxGeometryResponse kinetica.Kinetica.aggregateMinMaxGeometry (stringtable_name,
stringcolumn_name,
IDictionary< string, string >options = null )
inline

Calculates and returns the minimum and maximum x- and y-coordinates of a particular geospatial geometry column in a table.

Parameters
table_nameName 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.
column_nameName of a geospatial geometry column on which the min-max will be calculated.
optionsOptional parameters. The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 5826 of file KineticaFunctions.cs.

◆ AggregateMinMaxGeometryAsync() [1/2]

async System.Threading.Tasks.Task< AggregateMinMaxGeometryResponse > kinetica.Kinetica.AggregateMinMaxGeometryAsync (AggregateMinMaxGeometryRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Calculates and returns the minimum and maximum x- and y-coordinates of a particular geospatial geometry column in a table.

(async)

Parameters
request_Request object containing the parameters for the operation.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 5803 of file KineticaFunctions.cs.

◆ AggregateMinMaxGeometryAsync() [2/2]

async System.Threading.Tasks.Task< AggregateMinMaxGeometryResponse > kinetica.Kinetica.AggregateMinMaxGeometryAsync (stringtable_name,
stringcolumn_name,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Calculates and returns the minimum and maximum x- and y-coordinates of a particular geospatial geometry column in a table.

(async)

Parameters
table_nameName 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.
column_nameName of a geospatial geometry column on which the min-max will be calculated.
optionsOptional parameters. The default value is an empty Dictionary.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 5852 of file KineticaFunctions.cs.