7 using System.Collections.Generic;
70 public double min_x {
get;
set; }
76 public double max_x {
get;
set; }
85 public double min_y {
get;
set; }
90 public double max_y {
get;
set; }
104 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
158 IDictionary<string, string>
options = null)
160 this.table_name = table_name ??
"";
161 this.view_name = view_name ??
"";
162 this.x_column_name = x_column_name ??
"";
165 this.y_column_name = y_column_name ??
"";
182 public long count {
get;
set; }
string view_name
Optional name of the result view that will be created containing the results of the query...
double min_x
Lower bound for the column chosen by .
FilterByBoxRequest(string table_name, string view_name, string x_column_name, double min_x, double max_x, string y_column_name, double min_y, double max_y, IDictionary< string, string > options=null)
Constructs a FilterByBoxRequest object with the specified parameters.
IDictionary< string, string > options
Optional parameters.
string table_name
Name of the table on which the bounding box operation will be performed.
double max_y
Upper bound for .
double min_y
Lower bound for .
string x_column_name
Name of the column on which to perform the bounding box query.
FilterByBoxRequest()
Constructs a FilterByBoxRequest object with default parameters.
A set of results returned by Kinetica.filterByBox(string,string,string,double,double,string,double,double,IDictionary<string, string>).
double max_x
Upper bound for .
const string COLLECTION_NAME
Name of a collection which is to contain the newly created view.
KineticaData - class to help with Avro Encoding for Kinetica
string y_column_name
Name of a column on which to perform the bounding box query.
A set of parameters for Kinetica.filterByBox(string,string,string,double,double,string,double,double,IDictionary<string, string>).