Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
FilterByRadius.cs
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the Kinetica schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 
7 using System.Collections.Generic;
8 
9 
10 
11 namespace kinetica
12 {
13 
36  {
37 
77  public struct Options
78  {
79 
98  public const string CREATE_TEMP_TABLE = "create_temp_table";
99  public const string TRUE = "true";
100  public const string FALSE = "false";
101 
108  public const string COLLECTION_NAME = "collection_name";
109  } // end struct Options
110 
111 
117  public string table_name { get; set; }
118 
126  public string view_name { get; set; } = "";
127 
130  public string x_column_name { get; set; }
131 
135  public double x_center { get; set; }
136 
139  public string y_column_name { get; set; }
140 
144  public double y_center { get; set; }
145 
150  public double radius { get; set; }
151 
189  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
190 
191 
195 
267  string view_name,
268  string x_column_name,
269  double x_center,
270  string y_column_name,
271  double y_center,
272  double radius,
273  IDictionary<string, string> options = null)
274  {
275  this.table_name = table_name ?? "";
276  this.view_name = view_name ?? "";
277  this.x_column_name = x_column_name ?? "";
278  this.x_center = x_center;
279  this.y_column_name = y_column_name ?? "";
280  this.y_center = y_center;
281  this.radius = radius;
282  this.options = options ?? new Dictionary<string, string>();
283  } // end constructor
284 
285  } // end class FilterByRadiusRequest
286 
287 
288 
293  {
294 
307  public struct Info
308  {
309 
312  public const string QUALIFIED_VIEW_NAME = "qualified_view_name";
313  } // end struct Info
314 
315 
318  public long count { get; set; }
319 
330  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
331 
332  } // end class FilterByRadiusResponse
333 
334 
335 
336 
337 } // end namespace kinetica
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, in [schema_name.
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
[DEPRECATED–please specify the containing schema for the view as part of view_name and use Kinetica...
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, 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 ...
double x_center
Value of the longitude of the center.
double radius
The radius of the circle within which the search will be performed.
const string QUALIFIED_VIEW_NAME
The fully qualified name of the view (i.e.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14