7 using System.Collections.Generic;
93 public const string TRUE =
"true";
94 public const string FALSE =
"false";
128 public IList<double>
x_vector {
get; set; } =
new List<double>();
132 public IList<double>
y_vector {
get; set; } =
new List<double>();
171 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
243 IDictionary<string, string>
options = null)
245 this.table_name = table_name ??
"";
246 this.view_name = view_name ??
"";
247 this.column_name = column_name ??
"";
248 this.x_vector = x_vector ??
new List<double>();
249 this.y_vector = y_vector ??
new List<double>();
250 this.options =
options ??
new Dictionary<string, string>();
297 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
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.
A set of parameters for Kinetica.filterByAreaGeometry(string,string,string,IList{double},IList{double},IDictionary{string, string}).
IDictionary< string, string > options
Optional parameters.
long count
The number of records passing the area filter.
IList< double > x_vector
List of x coordinates of the vertices of the polygon representing the area to be filtered.
FilterByAreaGeometryRequest()
Constructs a FilterByAreaGeometryRequest object with default parameters.
FilterByAreaGeometryRequest(string table_name, string view_name, string column_name, IList< double > x_vector, IList< double > y_vector, IDictionary< string, string > options=null)
Constructs a FilterByAreaGeometryRequest object with the specified parameters.
string view_name
If provided, then this will be the name of the view containing the results, in [schema_name.
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.filterByAreaGeometry(string,string,string,IList{double},IList{double},IDictionary{string, string}).
const string QUALIFIED_VIEW_NAME
The fully qualified name of the view (i.e.
KineticaData - class to help with Avro Encoding for Kinetica
string column_name
Name of the geospatial geometry column to be filtered.
IList< double > y_vector
List of y coordinates of the vertices of the polygon representing the area to be filtered.
string table_name
Name of the table to filter, in [schema_name.