7 using System.Collections.Generic;
73 public IList<double>
x_vector {
get; set; } =
new List<double>();
81 public IList<double>
y_vector {
get; set; } =
new List<double>();
95 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
142 IDictionary<string, string>
options = null)
144 this.table_name = table_name ??
"";
145 this.view_name = view_name ??
"";
146 this.x_column_name = x_column_name ??
"";
147 this.x_vector = x_vector ??
new List<double>();
148 this.y_column_name = y_column_name ??
"";
149 this.y_vector = y_vector ??
new List<double>();
150 this.options =
options ??
new Dictionary<string, string>();
167 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
IList< double > y_vector
List of y coordinates of the vertices of the polygon representing the area to be filtered.
const string COLLECTION_NAME
Name of a collection which is to contain the newly created view.
IDictionary< string, string > info
Additional information.
IList< double > x_vector
List of x coordinates of the vertices of the polygon representing the area to be filtered.
string y_column_name
Name of the column containing the y values to be filtered.
A set of parameters for Kinetica.filterByArea(string,string,string,IList{double},string,IList{double},IDictionary{string, string}).
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.
string view_name
If provided, then this will be the name of the view containing the results.
long count
The number of records passing the area filter.
FilterByAreaRequest()
Constructs a FilterByAreaRequest object with default parameters.
KineticaData - class to help with Avro Encoding for Kinetica
string table_name
Name of the table to filter.
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.
IDictionary< string, string > options
Optional parameters.