Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
FilterByAreaGeometry.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 
42  public struct Options
43  {
44 
49  public const string COLLECTION_NAME = "collection_name";
50  } // end struct Options
51 
52 
59  public string table_name { get; set; }
60 
64  public string view_name { get; set; } = "";
65 
68  public string column_name { get; set; }
69 
72  public IList<double> x_vector { get; set; } = new List<double>();
73 
76  public IList<double> y_vector { get; set; } = new List<double>();
77 
90  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
91 
92 
96 
129  string view_name,
130  string column_name,
131  IList<double> x_vector,
132  IList<double> y_vector,
133  IDictionary<string, string> options = null)
134  {
135  this.table_name = table_name ?? "";
136  this.view_name = view_name ?? "";
137  this.column_name = column_name ?? "";
138  this.x_vector = x_vector ?? new List<double>();
139  this.y_vector = y_vector ?? new List<double>();
140  this.options = options ?? new Dictionary<string, string>();
141  } // end constructor
142 
143  } // end class FilterByAreaGeometryRequest
144 
145 
146 
151  {
152 
154  public long count { get; set; }
155 
157  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
158 
159  } // end class FilterByAreaGeometryResponse
160 
161 
162 
163 
164 } // end namespace kinetica
const string COLLECTION_NAME
Name of a collection which is to contain the newly created view.
IDictionary< string, string > info
Additional information.
A set of parameters for Kinetica.filterByAreaGeometry(string,string,string,IList{double},IList{double},IDictionary{string, string}).
IDictionary< string, string > options
Optional parameters.
long count
The number of records passing the area filter.
IList< double > x_vector
List of x coordinates of the vertices of the polygon representing the area to be filtered.
FilterByAreaGeometryRequest()
Constructs a FilterByAreaGeometryRequest object with default parameters.
FilterByAreaGeometryRequest(string table_name, string view_name, string column_name, IList< double > x_vector, IList< double > y_vector, IDictionary< string, string > options=null)
Constructs a FilterByAreaGeometryRequest object with the specified parameters.
string view_name
If provided, then this will be the name of the view containing the results.
A set of results returned by Kinetica.filterByAreaGeometry(string,string,string,IList{double},IList{double},IDictionary{string, string}).
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
string column_name
Name of the geospatial geometry column to be filtered.
IList< double > y_vector
List of y coordinates of the vertices of the polygon representing the area to be filtered.
string table_name
Name of the table to filter.