Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
kinetica.FilterByAreaGeometryRequest Class Reference

A set of parameters for Kinetica.filterByAreaGeometry(string,string,string,IList{double},IList{double},IDictionary{string, string}). More...

+ Inheritance diagram for kinetica.FilterByAreaGeometryRequest:
+ Collaboration diagram for kinetica.FilterByAreaGeometryRequest:

Classes

struct  Options
 Optional parameters. More...
 

Public Member Functions

 FilterByAreaGeometryRequest ()
 Constructs a FilterByAreaGeometryRequest object with default parameters. More...
 
 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. More...
 
- Public Member Functions inherited from kinetica.KineticaData
 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, in [schema_name. More...
 
string view_name [get, set]
 If provided, then this will be the name of the view containing the results, in [schema_name. More...
 
string column_name = "" [get, set]
 Name of the geospatial geometry column 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...
 
IList< double > y_vector = new List<double>() [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...
 
- Properties inherited from kinetica.KineticaData
Schema Schema [get]
 Avro Schema for this class More...
 

Additional Inherited Members

- Static Public Member Functions inherited from kinetica.KineticaData
static RecordSchema SchemaFromType (System.Type t, KineticaType ktype=null)
 Create an Avro Schema from a System.Type and a KineticaType. More...
 

Detailed Description

A set of parameters for Kinetica.filterByAreaGeometry(string,string,string,IList{double},IList{double},IDictionary{string, string}).


Calculates which geospatial geometry objects from a table intersect 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 view_name passed in as part of the input.

Definition at line 29 of file FilterByAreaGeometry.cs.

Constructor & Destructor Documentation

kinetica.FilterByAreaGeometryRequest.FilterByAreaGeometryRequest ( )
inline

Constructs a FilterByAreaGeometryRequest object with default parameters.

Definition at line 176 of file FilterByAreaGeometry.cs.

kinetica.FilterByAreaGeometryRequest.FilterByAreaGeometryRequest ( string  table_name,
string  view_name,
string  column_name,
IList< double >  x_vector,
IList< double >  y_vector,
IDictionary< string, string >  options = null 
)
inline

Constructs a FilterByAreaGeometryRequest object with the specified parameters.

Parameters
table_nameName of the table to filter, in [schema_name.]table_name format, using standard name resolution rules. This may be the name of a table or a view (when chaining queries).
view_nameIf provided, then this will be the name of the view containing the results, in [schema_name.]view_name format, using standard name resolution rules and meeting table naming criteria. Must not be an already existing table or view. The default value is ''.
column_nameName of the geospatial geometry column to be filtered.
x_vectorList of x coordinates of the vertices of the polygon representing the area to be filtered.
y_vectorList of y coordinates of the vertices of the polygon representing the area to be filtered.
optionsOptional parameters.
  • CREATE_TEMP_TABLE: If true, a unique temporary table name will be generated in the sys_temp schema and used in place of . This is always allowed even if the caller does not have permission to create tables. The generated name is returned in qualified_view_name. Supported values: The default value is FALSE.
  • COLLECTION_NAME: [DEPRECATED–please specify the containing schema for the view as part of and use /create/schema to create the schema if non-existent] The schema for the newly created view. If the schema is non-existent, it will be automatically created.
The default value is an empty Dictionary.

Definition at line 238 of file FilterByAreaGeometry.cs.

Property Documentation

string kinetica.FilterByAreaGeometryRequest.column_name = ""
getset

Name of the geospatial geometry column to be filtered.

Definition at line 124 of file FilterByAreaGeometry.cs.

IDictionary<string, string> kinetica.FilterByAreaGeometryRequest.options = new List<double>()
getset

Optional parameters.

  • CREATE_TEMP_TABLE: If true, a unique temporary table name will be generated in the sys_temp schema and used in place of . This is always allowed even if the caller does not have permission to create tables. The generated name is returned in qualified_view_name. Supported values: The default value is FALSE.
  • COLLECTION_NAME: [DEPRECATED–please specify the containing schema for the view as part of and use /create/schema to create the schema if non-existent] The schema for the newly created view. If the schema is non-existent, it will be automatically created.

The default value is an empty Dictionary.

Definition at line 171 of file FilterByAreaGeometry.cs.

string kinetica.FilterByAreaGeometryRequest.table_name
getset

Name of the table to filter, in [schema_name.

]table_name format, using standard name resolution rules. This may be the name of a table or a view (when chaining queries).

Definition at line 111 of file FilterByAreaGeometry.cs.

string kinetica.FilterByAreaGeometryRequest.view_name
getset

If provided, then this will be the name of the view containing the results, in [schema_name.

]view_name format, using standard name resolution rules and meeting table naming criteria. Must not be an already existing table or view. The default value is ''.

Definition at line 120 of file FilterByAreaGeometry.cs.

IList<double> kinetica.FilterByAreaGeometryRequest.x_vector
getset

List of x coordinates of the vertices of the polygon representing the area to be filtered.

Definition at line 128 of file FilterByAreaGeometry.cs.

IList<double> kinetica.FilterByAreaGeometryRequest.y_vector = new List<double>()
getset

List of y coordinates of the vertices of the polygon representing the area to be filtered.

Definition at line 132 of file FilterByAreaGeometry.cs.


The documentation for this class was generated from the following file: