Kinetica C# API  Version 6.1.0.0
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 
26  {
27 
32  public string table_name { get; set; }
33 
38  public string view_name { get; set; } = "";
39 
42  public string x_column_name { get; set; }
43 
46  public IList<double> x_vector { get; set; } = new List<double>();
47 
50  public string y_column_name { get; set; }
51 
54  public IList<double> y_vector { get; set; } = new List<double>();
55 
57  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
58 
59 
62  public FilterByAreaRequest() { }
63 
86  string view_name,
87  string x_column_name,
88  IList<double> x_vector,
89  string y_column_name,
90  IList<double> y_vector,
91  IDictionary<string, string> options = null)
92  {
93  this.table_name = table_name ?? "";
94  this.view_name = view_name ?? "";
95  this.x_column_name = x_column_name ?? "";
96  this.x_vector = x_vector ?? new List<double>();
97  this.y_column_name = y_column_name ?? "";
98  this.y_vector = y_vector ?? new List<double>();
99  this.options = options ?? new Dictionary<string, string>();
100  } // end constructor
101 
102  } // end class FilterByAreaRequest
103 
104 
105 
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:54
IList< double > x_vector
List of x coordinates of the vertices of the polygon representing the area to be filtered.
Definition: FilterByArea.cs:46
string y_column_name
Name of the column containing the y values to be filtered.
Definition: FilterByArea.cs:50
A set of parameters for Kinetica.filterByArea(string,string,string,IList<double>,string,IList<double>,IDictionary<string, string>).
Definition: FilterByArea.cs:25
A set of results returned by Kinetica.filterByArea(string,string,string,IList<double>,string,IList<double>,IDictionary<string, string>).
string x_column_name
Name of the column containing the x values to be filtered.
Definition: FilterByArea.cs:42
string view_name
If provided, then this will be the name of the view containing the results.
Definition: FilterByArea.cs:38
FilterByAreaRequest()
Constructs a FilterByAreaRequest object with default parameters.
Definition: FilterByArea.cs:62
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:32
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:85
IDictionary< string, string > options
Optional parameters.
Definition: FilterByArea.cs:57