Package com.gpudb.protocol
Class FilterBySeriesRequest.Options
- java.lang.Object
-
- com.gpudb.protocol.FilterBySeriesRequest.Options
-
- Enclosing class:
- FilterBySeriesRequest
public static final class FilterBySeriesRequest.Options extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static StringCOLLECTION_NAME[DEPRECATED--please specify the containing schema for the view as part ofviewNameand useGPUdb.createSchemato create the schema if non-existent] Name of a schema for the newly created view.static StringCREATE_TEMP_TABLEstatic StringEUCLIDEANstatic StringFALSEstatic StringGREAT_CIRCLEstatic StringSPATIAL_DISTANCE_METRICA string representing the coordinate system to use for the spatial search criteria.static StringSPATIAL_RADIUSA positive number passed as a string representing the radius of the search area centered around each track point's geospatial coordinates.static StringTIME_RADIUSA positive number passed as a string representing the maximum allowable time difference between the timestamps of a filtered object and the given track's points.static StringTRUE
-
-
-
Field Detail
-
CREATE_TEMP_TABLE
public static final String CREATE_TEMP_TABLE
IfTRUE, a unique temporary table name will be generated in the sys_temp schema and used in place ofviewName. This is always allowed even if the caller does not have permission to create tables. The generated name is returned inQUALIFIED_VIEW_NAME. Supported values: The default value isFALSE.- See Also:
- Constant Field Values
-
TRUE
public static final String TRUE
- See Also:
- Constant Field Values
-
FALSE
public static final String FALSE
- See Also:
- Constant Field Values
-
COLLECTION_NAME
public static final String COLLECTION_NAME
[DEPRECATED--please specify the containing schema for the view as part ofviewNameand useGPUdb.createSchemato create the schema if non-existent] Name of a schema for the newly created view. If the schema is non-existent, it will be automatically created.- See Also:
- Constant Field Values
-
SPATIAL_RADIUS
public static final String SPATIAL_RADIUS
A positive number passed as a string representing the radius of the search area centered around each track point's geospatial coordinates. The value is interpreted in meters. Required parameter. The minimum allowed value is '0'.- See Also:
- Constant Field Values
-
TIME_RADIUS
public static final String TIME_RADIUS
A positive number passed as a string representing the maximum allowable time difference between the timestamps of a filtered object and the given track's points. The value is interpreted in seconds. Required parameter. The minimum allowed value is '0'.- See Also:
- Constant Field Values
-
SPATIAL_DISTANCE_METRIC
public static final String SPATIAL_DISTANCE_METRIC
A string representing the coordinate system to use for the spatial search criteria. Acceptable values are 'euclidean' and 'great_circle'. Optional parameter; default is 'euclidean'. Supported values:- See Also:
- Constant Field Values
-
EUCLIDEAN
public static final String EUCLIDEAN
- See Also:
- Constant Field Values
-
GREAT_CIRCLE
public static final String GREAT_CIRCLE
- See Also:
- Constant Field Values
-
-