Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
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 
29  {
30 
70  public struct Options
71  {
72 
91  public const string CREATE_TEMP_TABLE = "create_temp_table";
92  public const string TRUE = "true";
93  public const string FALSE = "false";
94 
101  public const string COLLECTION_NAME = "collection_name";
102  } // end struct Options
103 
104 
110  public string table_name { get; set; }
111 
119  public string view_name { get; set; } = "";
120 
123  public string column_name { get; set; }
124 
128  public double min_x { get; set; }
129 
133  public double max_x { get; set; }
134 
138  public double min_y { get; set; }
139 
143  public double max_y { get; set; }
144 
182  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
183 
184 
188 
259  string view_name,
260  string column_name,
261  double min_x,
262  double max_x,
263  double min_y,
264  double max_y,
265  IDictionary<string, string> options = null)
266  {
267  this.table_name = table_name ?? "";
268  this.view_name = view_name ?? "";
269  this.column_name = column_name ?? "";
270  this.min_x = min_x;
271  this.max_x = max_x;
272  this.min_y = min_y;
273  this.max_y = max_y;
274  this.options = options ?? new Dictionary<string, string>();
275  } // end constructor
276 
277  } // end class FilterByBoxGeometryRequest
278 
279 
280 
285  {
286 
299  public struct Info
300  {
301 
304  public const string QUALIFIED_VIEW_NAME = "qualified_view_name";
305  } // end struct Info
306 
307 
309  public long count { get; set; }
310 
321  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
322 
323  } // end class FilterByBoxGeometryResponse
324 
325 
326 
327 
328 } // 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, in [schema_name.
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.
const string CREATE_TEMP_TABLE
If true, a unique temporary table name will be generated in the sys_temp schema and used in place of ...
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
If provided, then this will be the name of the view containing the results, in [schema_name.
FilterByBoxGeometryRequest()
Constructs a FilterByBoxGeometryRequest object with default parameters.
const string QUALIFIED_VIEW_NAME
The fully qualified name of the view (i.e.
A set of parameters for Kinetica.filterByBoxGeometry(string,string,string,double,double,double,double,IDictionary{string, string}).
const string COLLECTION_NAME
[DEPRECATED–please specify the containing schema for the view as part of view_name and use Kinetica...
long count
The number of records passing the box filter.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IDictionary< string, string > info
Additional information.