Kinetica C# API
Version 6.0.1.0
|
A set of parameters for /filter/byarea. More...
Public Member Functions | |
FilterByAreaRequest () | |
Constructs a FilterByAreaRequest object with default parameters. More... | |
FilterByAreaRequest (string table_name, string view_name, string x_column_name, IList< double > x_vector, string y_column_name, IList< double > y_vector, IDictionary< string, string > options=null) | |
Constructs a FilterByAreaRequest object with the specified parameters. More... | |
![]() | |
KineticaData (KineticaType type) | |
Constructor from Kinetica Type More... | |
KineticaData (System.Type type=null) | |
Default constructor, with optional System.Type More... | |
object | Get (int fieldPos) |
Retrieve a specific property from this object More... | |
void | Put (int fieldPos, object fieldValue) |
Write a specific property to this object More... | |
Properties | |
string | table_name [get, set] |
Name of the table to filter. More... | |
string | view_name [get, set] |
If provided, then this will be the name of the view containing the results. More... | |
string | x_column_name = "" [get, set] |
Name of the column containing the x values to be filtered. More... | |
IList< double > | x_vector [get, set] |
List of x coordinates of the vertices of the polygon representing the area to be filtered. More... | |
string | y_column_name = new List<double>() [get, set] |
Name of the column containing the y values to be filtered. More... | |
IList< double > | y_vector [get, set] |
List of y coordinates of the vertices of the polygon representing the area to be filtered. More... | |
IDictionary< string, string > | options = new List<double>() [get, set] |
Optional parameters. More... | |
![]() | |
Schema | Schema [get] |
Avro Schema for this class More... | |
Additional Inherited Members | |
![]() | |
static RecordSchema | SchemaFromType (System.Type t, KineticaType ktype=null) |
Create an Avro Schema from a System.Type and a KineticaType. More... | |
A set of parameters for /filter/byarea.
Calculates which objects from a table are within a named area of interest (NAI/polygon). The operation is synchronous, meaning that a response will not be returned until all the matching objects are fully available. The response payload provides the count of the resulting set. A new resultant set (view) which satisfies the input NAI restriction specification is created with the name <member name="view_name"> passed in as part of the input.
Note that if you call this endpoint using a table that has WKT data, the x_column_name and y_column_name settings are no longer required because the geospatial filter works automatically.
Definition at line 27 of file FilterByArea.cs.
|
inline |
Constructs a FilterByAreaRequest object with default parameters.
Definition at line 64 of file FilterByArea.cs.
|
inline |
Constructs a FilterByAreaRequest object with the specified parameters.
table_name | Name of the table to filter. This may be the name of a collection, a table or a view (when chaining queries). Collections may be filtered only if all tables within the collection have the same type ID. |
view_name | If provided, then this will be the name of the view containing the results. Has the same naming restrictions as tables. |
x_column_name | Name of the column containing the x values to be filtered. |
x_vector | List of x coordinates of the vertices of the polygon representing the area to be filtered. |
y_column_name | Name of the column containing the y values to be filtered. |
y_vector | List of y coordinates of the vertices of the polygon representing the area to be filtered. |
options | Optional parameters. |
Definition at line 87 of file FilterByArea.cs.
|
getset |
Optional parameters.
Definition at line 59 of file FilterByArea.cs.
|
getset |
Name of the table to filter.
This may be the name of a collection, a table or a view (when chaining queries). Collections may be filtered only if all tables within the collection have the same type ID.
Definition at line 34 of file FilterByArea.cs.
|
getset |
If provided, then this will be the name of the view containing the results.
Has the same naming restrictions as tables.
Definition at line 40 of file FilterByArea.cs.
|
getset |
Name of the column containing the x values to be filtered.
Definition at line 44 of file FilterByArea.cs.
|
getset |
List of x coordinates of the vertices of the polygon representing the area to be filtered.
Definition at line 48 of file FilterByArea.cs.
|
getset |
Name of the column containing the y values to be filtered.
Definition at line 52 of file FilterByArea.cs.
|
getset |
List of y coordinates of the vertices of the polygon representing the area to be filtered.
Definition at line 56 of file FilterByArea.cs.