Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
FilterByArea.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 
28  {
29 
34  public string table_name { get; set; }
35 
40  public string view_name { get; set; } = "";
41 
44  public string x_column_name { get; set; }
45 
48  public IList<double> x_vector { get; set; } = new List<double>();
49 
52  public string y_column_name { get; set; }
53 
56  public IList<double> y_vector { get; set; } = new List<double>();
57 
59  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
60 
61 
64  public FilterByAreaRequest() { }
65 
88  string view_name,
89  string x_column_name,
90  IList<double> x_vector,
91  string y_column_name,
92  IList<double> y_vector,
93  IDictionary<string, string> options = null)
94  {
95  this.table_name = table_name ?? "";
96  this.view_name = view_name ?? "";
97  this.x_column_name = x_column_name ?? "";
98  this.x_vector = x_vector ?? new List<double>();
99  this.y_column_name = y_column_name ?? "";
100  this.y_vector = y_vector ?? new List<double>();
101  this.options = options ?? new Dictionary<string, string>();
102  } // end constructor
103 
104  } // end class FilterByAreaRequest
105 
106 
107 
110  {
111 
113  public long count { get; set; }
114 
115  } // end class FilterByAreaResponse
116 
117 
118 
119 
120 } // end namespace kinetica
IList< double > y_vector
List of y coordinates of the vertices of the polygon representing the area to be filtered.
Definition: FilterByArea.cs:56
IList< double > x_vector
List of x coordinates of the vertices of the polygon representing the area to be filtered.
Definition: FilterByArea.cs:48
string y_column_name
Name of the column containing the y values to be filtered.
Definition: FilterByArea.cs:52
A set of parameters for /filter/byarea.
Definition: FilterByArea.cs:27
A set of results returned by /filter/byarea.
string x_column_name
Name of the column containing the x values to be filtered.
Definition: FilterByArea.cs:44
string view_name
If provided, then this will be the name of the view containing the results.
Definition: FilterByArea.cs:40
long count
The number of records passing the area filter.
FilterByAreaRequest()
Constructs a FilterByAreaRequest object with default parameters.
Definition: FilterByArea.cs:64
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
string table_name
Name of the table to filter.
Definition: FilterByArea.cs:34
FilterByAreaRequest(string table_name, string view_name, string x_column_name, IList< double > x_vector, string y_column_name, IList< double > y_vector, IDictionary< string, string > options=null)
Constructs a FilterByAreaRequest object with the specified parameters.
Definition: FilterByArea.cs:87
IDictionary< string, string > options
Optional parameters.
Definition: FilterByArea.cs:59