Kinetica C# API  Version 6.1.0.0
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 
31  public string table_name { get; set; }
32 
36  public string view_name { get; set; } = "";
37 
40  public string column_name { get; set; }
41 
45  public double x_center { get; set; }
46 
50  public double y_center { get; set; }
51 
56  public double radius { get; set; }
57 
59  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
60 
61 
65 
91  string view_name,
92  string column_name,
93  double x_center,
94  double y_center,
95  double radius,
96  IDictionary<string, string> options = null)
97  {
98  this.table_name = table_name ?? "";
99  this.view_name = view_name ?? "";
100  this.column_name = column_name ?? "";
101  this.x_center = x_center;
102  this.y_center = y_center;
103  this.radius = radius;
104  this.options = options ?? new Dictionary<string, string>();
105  } // end constructor
106 
107  } // end class FilterByRadiusGeometryRequest
108 
109 
110 
115  {
116 
119  public long count { get; set; }
120 
121  } // end class FilterByRadiusGeometryResponse
122 
123 
124 
125 
126 } // end namespace kinetica
double radius
The radius of the circle within which the search will be performed.
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.
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.