Kinetica C# API  Version 6.1.0.0
FilterByAreaGeometry.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 
26  {
27 
32  public string table_name { get; set; }
33 
37  public string view_name { get; set; } = "";
38 
41  public string column_name { get; set; }
42 
45  public IList<double> x_vector { get; set; } = new List<double>();
46 
49  public IList<double> y_vector { get; set; } = new List<double>();
50 
52  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
53 
54 
58 
78  string view_name,
79  string column_name,
80  IList<double> x_vector,
81  IList<double> y_vector,
82  IDictionary<string, string> options = null)
83  {
84  this.table_name = table_name ?? "";
85  this.view_name = view_name ?? "";
86  this.column_name = column_name ?? "";
87  this.x_vector = x_vector ?? new List<double>();
88  this.y_vector = y_vector ?? new List<double>();
89  this.options = options ?? new Dictionary<string, string>();
90  } // end constructor
91 
92  } // end class FilterByAreaGeometryRequest
93 
94 
95 
100  {
101 
103  public long count { get; set; }
104 
105  } // end class FilterByAreaGeometryResponse
106 
107 
108 
109 
110 } // end namespace kinetica
A set of parameters for Kinetica.filterByAreaGeometry(string,string,string,IList<double>,IList<double>,IDictionary<string, string>).
IDictionary< string, string > options
Optional parameters.
IList< double > x_vector
List of x coordinates of the vertices of the polygon representing the area to be filtered.
FilterByAreaGeometryRequest()
Constructs a FilterByAreaGeometryRequest object with default parameters.
FilterByAreaGeometryRequest(string table_name, string view_name, string column_name, IList< double > x_vector, IList< double > y_vector, IDictionary< string, string > options=null)
Constructs a FilterByAreaGeometryRequest object with the specified parameters.
string view_name
If provided, then this will be the name of the view containing the results.
A set of results returned by Kinetica.filterByAreaGeometry(string,string,string,IList<double>,IList<double>,IDictionary<string, string>).
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
string column_name
Name of the geospatial geometry column to be filtered.
IList< double > y_vector
List of y coordinates of the vertices of the polygon representing the area to be filtered.
string table_name
Name of the table to filter.