|
Kinetica C# API
Version 7.2.3.1
|
A set of parameters for Kinetica.filterByGeometry. More...
Inheritance diagram for FilterByGeometryRequest:
Collaboration diagram for FilterByGeometryRequest:Classes | |
| struct | Operation |
| A set of string constants for the parameter operation. More... | |
| struct | Options |
| A set of string constants for the parameter options. More... | |
Public Member Functions | |
| FilterByGeometryRequest () | |
| Constructs a FilterByGeometryRequest object with default parameters. More... | |
| FilterByGeometryRequest (string table_name, string view_name, string column_name, string input_wkt, string operation, IDictionary< string, string > options=null) | |
| Constructs a FilterByGeometryRequest object with the specified parameters. More... | |
Public Member Functions inherited from 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 on which the filter by geometry will be performed, 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 column to be used in the filter. More... | |
| string | input_wkt = "" [get, set] |
| A geometry in WKT format that will be used to filter the objects in table_name. More... | |
| string | operation [get, set] |
| The geometric filtering operation to perform. More... | |
| IDictionary< string, string > | options = new Dictionary<string, string>() [get, set] |
| Optional parameters. More... | |
Properties inherited from KineticaData | |
| Schema | Schema [get] |
| Avro Schema for this class More... | |
Properties inherited from Avro.Specific.ISpecificRecord | |
| Schema | Schema [get] |
Additional Inherited Members | |
Static Public Member Functions inherited from KineticaData | |
| 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 Kinetica.filterByGeometry.
Applies a geometry filter against a geospatial geometry column in a given table or view. The filtering geometry is provided by input_wkt.
Definition at line 17 of file FilterByGeometry.cs.
|
inline |
Constructs a FilterByGeometryRequest object with default parameters.
Definition at line 202 of file FilterByGeometry.cs.
|
inline |
Constructs a FilterByGeometryRequest object with the specified parameters.
| table_name | Name of the table on which the filter by geometry will be performed, in [schema_name.]table_name format, using standard name resolution rules. Must be an existing table or view containing a geospatial geometry column. |
| view_name | 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 ''. |
| column_name | Name of the column to be used in the filter. Must be a geospatial geometry column. |
| input_wkt | A geometry in WKT format that will be used to filter the objects in table_name . The default value is ''. |
| operation | The geometric filtering operation to perform. Supported values:
|
| options | Optional parameters.
|
Definition at line 306 of file FilterByGeometry.cs.
|
getset |
Name of the column to be used in the filter.
Must be a geospatial geometry column.
Definition at line 108 of file FilterByGeometry.cs.
|
getset |
A geometry in WKT format that will be used to filter the objects in table_name.
The default value is ''.
Definition at line 113 of file FilterByGeometry.cs.
|
getset |
The geometric filtering operation to perform.
Supported values:
Definition at line 160 of file FilterByGeometry.cs.
|
getset |
Optional parameters.
The default value is an empty Dictionary.
Definition at line 198 of file FilterByGeometry.cs.
|
getset |
Name of the table on which the filter by geometry will be performed, in [schema_name.
]table_name format, using standard name resolution rules.
Must be an existing table or view containing a geospatial geometry column.
Definition at line 94 of file FilterByGeometry.cs.
|
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 104 of file FilterByGeometry.cs.