Kinetica C# API  Version 6.0.1.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 
30  {
31 
34  public string table_name { get; set; }
35 
40  public string view_name { get; set; } = "";
41 
44  public string x_column_name { get; set; }
45 
49  public double x_center { get; set; }
50 
53  public string y_column_name { get; set; }
54 
58  public double y_center { get; set; }
59 
64  public double radius { get; set; }
65 
67  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
68 
69 
72  public FilterByRadiusRequest() { }
73 
102  string view_name,
103  string x_column_name,
104  double x_center,
105  string y_column_name,
106  double y_center,
107  double radius,
108  IDictionary<string, string> options = null)
109  {
110  this.table_name = table_name ?? "";
111  this.view_name = view_name ?? "";
112  this.x_column_name = x_column_name ?? "";
113  this.x_center = x_center;
114  this.y_column_name = y_column_name ?? "";
115  this.y_center = y_center;
116  this.radius = radius;
117  this.options = options ?? new Dictionary<string, string>();
118  } // end constructor
119 
120  } // end class FilterByRadiusRequest
121 
122 
123 
126  {
127 
130  public long count { get; set; }
131 
132  } // end class FilterByRadiusResponse
133 
134 
135 
136 
137 } // 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.
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 /filter/byradius.
A set of parameters for /filter/byradius.
FilterByRadiusRequest()
Constructs a FilterByRadiusRequest object with default parameters.
IDictionary< string, string > options
Optional parameters.
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
Definition: KineticaData.cs:14