Kinetica C# API  Version 6.1.0.0
FilterByBoxGeometry.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 
10 
11 namespace kinetica
12 {
13 
26  {
27 
30  public string table_name { get; set; }
31 
35  public string view_name { get; set; } = "";
36 
39  public string column_name { get; set; }
40 
44  public double min_x { get; set; }
45 
49  public double max_x { get; set; }
50 
54  public double min_y { get; set; }
55 
59  public double max_y { get; set; }
60 
62  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
63 
64 
68 
95  string view_name,
96  string column_name,
97  double min_x,
98  double max_x,
99  double min_y,
100  double max_y,
101  IDictionary<string, string> options = null)
102  {
103  this.table_name = table_name ?? "";
104  this.view_name = view_name ?? "";
105  this.column_name = column_name ?? "";
106  this.min_x = min_x;
107  this.max_x = max_x;
108  this.min_y = min_y;
109  this.max_y = max_y;
110  this.options = options ?? new Dictionary<string, string>();
111  } // end constructor
112 
113  } // end class FilterByBoxGeometryRequest
114 
115 
116 
121  {
122 
124  public long count { get; set; }
125 
126  } // end class FilterByBoxGeometryResponse
127 
128 
129 
130 
131 } // end namespace kinetica
double max_x
Upper bound for the x-coordinate of the rectangular box.
string column_name
Name of the geospatial geometry column to be filtered.
IDictionary< string, string > options
Optional parameters.
string table_name
Name of the table on which the bounding box operation will be performed.
FilterByBoxGeometryRequest(string table_name, string view_name, string column_name, double min_x, double max_x, double min_y, double max_y, IDictionary< string, string > options=null)
Constructs a FilterByBoxGeometryRequest object with the specified parameters.
double min_y
Lower bound for the y-coordinate of the rectangular box.
double min_x
Lower bound for the x-coordinate of the rectangular box.
A set of results returned by Kinetica.filterByBoxGeometry(string,string,string,double,double,double,double,IDictionary<string, string>).
double max_y
Upper bound for the y-coordinate of the rectangular box.
string view_name
Optional name of the result view that will be created containing the results of the query...
FilterByBoxGeometryRequest()
Constructs a FilterByBoxGeometryRequest object with default parameters.
A set of parameters for Kinetica.filterByBoxGeometry(string,string,string,double,double,double,double,IDictionary<string, string>).
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14