Kinetica   C#   API  Version 7.2.3.0
AggregateMinMaxGeometry.cs
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the Kinetica schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 
7 using System.Collections.Generic;
8 
9 namespace kinetica
10 {
18  {
25  public string table_name { get; set; }
26 
29  public string column_name { get; set; }
30 
34  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
35 
39 
53  string column_name,
54  IDictionary<string, string> options = null)
55  {
56  this.table_name = table_name ?? "";
57  this.column_name = column_name ?? "";
58  this.options = options ?? new Dictionary<string, string>();
59  } // end constructor
60  } // end class AggregateMinMaxGeometryRequest
61 
66  {
70  public double min_x { get; set; }
71 
75  public double max_x { get; set; }
76 
80  public double min_y { get; set; }
81 
85  public double max_y { get; set; }
86 
88  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
89  } // end class AggregateMinMaxGeometryResponse
90 } // end namespace kinetica
double min_x
Minimum x-coordinate value of the column_name.
IDictionary< string, string > options
Optional parameters.
string column_name
Name of a geospatial geometry column on which the min-max will be calculated.
string table_name
Name of the table on which the operation will be performed.
AggregateMinMaxGeometryRequest()
Constructs an AggregateMinMaxGeometryRequest object with default parameters.
double min_y
Minimum y-coordinate value of the column_name.
double max_x
Maximum x-coordinate value of the column_name.
A set of parameters for Kinetica.aggregateMinMaxGeometry.
AggregateMinMaxGeometryRequest(string table_name, string column_name, IDictionary< string, string > options=null)
Constructs an AggregateMinMaxGeometryRequest object with the specified parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
double max_y
Maximum y-coordinate value of the column_name.
IDictionary< string, string > info
Additional information.
A set of results returned by Kinetica.aggregateMinMaxGeometry.