7 using System.Collections.Generic;
44 public const string TRUE =
"true";
45 public const string FALSE =
"false";
81 public IList<double>
x_vector {
get;
set; } =
new List<double>();
89 public IList<double>
y_vector {
get;
set; } =
new List<double>();
131 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
207 IDictionary<string, string>
options =
null)
212 this.x_vector =
x_vector ??
new List<double>();
214 this.y_vector =
y_vector ??
new List<double>();
248 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
const string QUALIFIED_VIEW_NAME
The fully qualified name of the view (i.e.
IList< double > y_vector
List of y coordinates of the vertices of the polygon representing the area to be filtered.
const string COLLECTION_NAME
[DEPRECATED–please specify the containing schema for the view as part of view_name and use Kinetica....
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 string constants for the parameter options.
A set of parameters for Kinetica.filterByArea.
const string CREATE_TEMP_TABLE
If TRUE, a unique temporary table name will be generated in the sys_temp schema and used in place of ...
A set of results returned by Kinetica.filterByArea.
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, in [schema_name.
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
A set of string constants for the parameter info.
string table_name
Name of the table to filter, in [schema_name.
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.