7 using System.Collections.Generic;
17 public class AggregateMinMaxGeometryRequest : KineticaData
34 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
54 IDictionary<string, string>
options =
null)
65 public class AggregateMinMaxGeometryResponse : KineticaData
70 public double min_x {
get;
set; }
75 public double max_x {
get;
set; }
80 public double min_y {
get;
set; }
85 public double max_y {
get;
set; }
88 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
string table_name
Name of the table on which the operation will be performed.
IDictionary< string, string > options
Optional parameters.
IDictionary< string, string > info
Additional information.
double max_y
Maximum y-coordinate value of the column_name.
AggregateMinMaxGeometryRequest()
Constructs an AggregateMinMaxGeometryRequest object with default parameters.
double max_x
Maximum x-coordinate value of the column_name.
double min_y
Minimum y-coordinate value of the column_name.
string column_name
Name of a geospatial geometry column on which the min-max will be calculated.
AggregateMinMaxGeometryRequest(string table_name, string column_name, IDictionary< string, string > options=null)
Constructs an AggregateMinMaxGeometryRequest object with the specified parameters.
double min_x
Minimum x-coordinate value of the column_name.