Kinetica   C#   API  Version 7.2.3.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 namespace kinetica
10 {
22  {
26  public struct Options
27  {
42  public const string CREATE_TEMP_TABLE = "create_temp_table";
43 
44  public const string TRUE = "true";
45  public const string FALSE = "false";
46 
54  public const string COLLECTION_NAME = "collection_name";
55  } // end struct Options
56 
62  public string table_name { get; set; }
63 
72  public string view_name { get; set; } = "";
73 
76  public string column_name { get; set; }
77 
82  public double min_x { get; set; }
83 
88  public double max_x { get; set; }
89 
94  public double min_y { get; set; }
95 
100  public double max_y { get; set; }
101 
142  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
143 
147 
220  string view_name,
221  string column_name,
222  double min_x,
223  double max_x,
224  double min_y,
225  double max_y,
226  IDictionary<string, string> options = null)
227  {
228  this.table_name = table_name ?? "";
229  this.view_name = view_name ?? "";
230  this.column_name = column_name ?? "";
231  this.min_x = min_x;
232  this.max_x = max_x;
233  this.min_y = min_y;
234  this.max_y = max_y;
235  this.options = options ?? new Dictionary<string, string>();
236  } // end constructor
237  } // end class FilterByBoxGeometryRequest
238 
243  {
247  public struct Info
248  {
251  public const string QUALIFIED_VIEW_NAME = "qualified_view_name";
252  } // end struct Info
253 
255  public long count { get; set; }
256 
268  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
269  } // end class FilterByBoxGeometryResponse
270 } // 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.
A set of string constants for the parameter info.
A set of string constants for the parameter options.
double min_x
Lower bound for the x-coordinate of the rectangular box.
A set of results returned by Kinetica.filterByBoxGeometry.
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.
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.