7 using System.Collections.Generic;
103 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
155 IDictionary<string, string>
options = null)
157 this.table_name = table_name ??
"";
158 this.view_name = view_name ??
"";
159 this.x_column_name = x_column_name ??
"";
161 this.y_column_name = y_column_name ??
"";
164 this.options =
options ??
new Dictionary<string, string>();
182 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
long count
The number of records passing the radius filter.
string y_column_name
Name of the column to be used for the y-coordinate-the latitude-of the center.
double y_center
Value of the latitude of the center.
string table_name
Name of the table on which the filter by radius operation will be performed.
FilterByRadiusRequest(string table_name, string view_name, string x_column_name, double x_center, string y_column_name, double y_center, double radius, IDictionary< string, string > options=null)
Constructs a FilterByRadiusRequest object with the specified parameters.
A set of results returned by Kinetica.filterByRadius(string,string,string,double,string,double,double,IDictionary{string, string}).
A set of parameters for Kinetica.filterByRadius(string,string,string,double,string,double,double,IDictionary{string, string}).
IDictionary< string, string > info
Additional information.
FilterByRadiusRequest()
Constructs a FilterByRadiusRequest object with default parameters.
IDictionary< string, string > options
Optional parameters.
const string COLLECTION_NAME
Name of a collection which is to contain the newly created view.
string x_column_name
Name of the column to be used for the x-coordinate (the longitude) of the center. ...
string view_name
If provided, then this will be the name of the view containing the results.
double x_center
Value of the longitude of the center.
double radius
The radius of the circle within which the search will be performed.
KineticaData - class to help with Avro Encoding for Kinetica