Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
FilterByRadiusGeometry.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 
27  {
28 
43  public struct Options
44  {
45 
50  public const string COLLECTION_NAME = "collection_name";
51  } // end struct Options
52 
53 
56  public string table_name { get; set; }
57 
61  public string view_name { get; set; } = "";
62 
65  public string column_name { get; set; }
66 
70  public double x_center { get; set; }
71 
75  public double y_center { get; set; }
76 
81  public double radius { get; set; }
82 
95  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
96 
97 
101 
138  string view_name,
139  string column_name,
140  double x_center,
141  double y_center,
142  double radius,
143  IDictionary<string, string> options = null)
144  {
145  this.table_name = table_name ?? "";
146  this.view_name = view_name ?? "";
147  this.column_name = column_name ?? "";
148  this.x_center = x_center;
149  this.y_center = y_center;
150  this.radius = radius;
151  this.options = options ?? new Dictionary<string, string>();
152  } // end constructor
153 
154  } // end class FilterByRadiusGeometryRequest
155 
156 
157 
162  {
163 
166  public long count { get; set; }
167 
169  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
170 
171  } // end class FilterByRadiusGeometryResponse
172 
173 
174 
175 
176 } // end namespace kinetica
double radius
The radius of the circle within which the search will be performed.
long count
The number of records passing the radius filter.
const string COLLECTION_NAME
Name of a collection which is to contain the newly created view.
double x_center
Value of the longitude of the center.
FilterByRadiusGeometryRequest(string table_name, string view_name, string column_name, double x_center, double y_center, double radius, IDictionary< string, string > options=null)
Constructs a FilterByRadiusGeometryRequest object with the specified parameters.
string table_name
Name of the table on which the filter by radius operation will be performed.
IDictionary< string, string > info
Additional information.
A set of parameters for Kinetica.filterByRadiusGeometry(string,string,string,double,double,double,IDictionary{string, string}).
IDictionary< string, string > options
Optional parameters.
A set of results returned by Kinetica.filterByRadiusGeometry(string,string,string,double,double,double,IDictionary{string, string}).
string view_name
If provided, then this will be the name of the view containing the results.
string column_name
Name of the geospatial geometry column to be filtered.
FilterByRadiusGeometryRequest()
Constructs a FilterByRadiusGeometryRequest object with default parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
double y_center
Value of the latitude of the center.