7 using System.Collections.Generic;
44 public double min_x {
get; set; }
50 public double max_x {
get; set; }
60 public double min_y {
get; set; }
65 public double max_y {
get; set; }
68 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
113 IDictionary<string, string>
options = null)
115 this.table_name = table_name ??
"";
116 this.view_name = view_name ??
"";
117 this.x_column_name = x_column_name ??
"";
120 this.y_column_name = y_column_name ??
"";
123 this.options =
options ??
new Dictionary<string, string>();
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.
long count
The number of records passing the box filter.
A set of results returned by /filter/bybox.
double max_x
Upper bound for .
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 /filter/bybox.