GPUdb C++ API
Version 7.0.19.0
|
A set of input parameters for const. More...
#include <gpudb/protocol/filter_by_area_geometry.h>
Public Member Functions | |
FilterByAreaGeometryRequest () | |
Constructs a FilterByAreaGeometryRequest object with default parameter values. More... | |
FilterByAreaGeometryRequest (const std::string &tableName_, const std::string &viewName_, const std::string &columnName_, const std::vector< double > &xVector_, const std::vector< double > &yVector_, const std::map< std::string, std::string > &options_) | |
Constructs a FilterByAreaGeometryRequest object with the specified parameters. More... | |
Public Attributes | |
std::string | tableName |
std::string | viewName |
std::string | columnName |
std::vector< double > | xVector |
std::vector< double > | yVector |
std::map< std::string, std::string > | options |
A set of input parameters for const.
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 viewName passed in as part of the input.
Definition at line 24 of file filter_by_area_geometry.h.
|
inline |
Constructs a FilterByAreaGeometryRequest object with default parameter values.
Definition at line 31 of file filter_by_area_geometry.h.
|
inline |
Constructs a FilterByAreaGeometryRequest object with the specified parameters.
[in] | tableName_ | Name of the table to filter. This may be the name of a collection, a table, or a view (when chaining queries). If filtering a collection, all child tables where the filter expression is valid will be filtered; the filtered result tables will then be placed in a collection specified by viewName. |
[in] | viewName_ | If provided, then this will be the name of the view containing the results. Must not be an already existing collection, table or view. |
[in] | columnName_ | Name of the geospatial geometry column to be filtered. |
[in] | xVector_ | List of x coordinates of the vertices of the polygon representing the area to be filtered. |
[in] | yVector_ | List of y coordinates of the vertices of the polygon representing the area to be filtered. |
[in] | options_ | Optional parameters.
|
Definition at line 73 of file filter_by_area_geometry.h.
std::string gpudb::FilterByAreaGeometryRequest::columnName |
Definition at line 85 of file filter_by_area_geometry.h.
std::map<std::string, std::string> gpudb::FilterByAreaGeometryRequest::options |
Definition at line 88 of file filter_by_area_geometry.h.
std::string gpudb::FilterByAreaGeometryRequest::tableName |
Definition at line 83 of file filter_by_area_geometry.h.
std::string gpudb::FilterByAreaGeometryRequest::viewName |
Definition at line 84 of file filter_by_area_geometry.h.
std::vector<double> gpudb::FilterByAreaGeometryRequest::xVector |
Definition at line 86 of file filter_by_area_geometry.h.
std::vector<double> gpudb::FilterByAreaGeometryRequest::yVector |
Definition at line 87 of file filter_by_area_geometry.h.