Package com.gpudb.protocol
Class VisualizeIsochroneRequest.Options
java.lang.Object
com.gpudb.protocol.VisualizeIsochroneRequest.Options
Enclosing class:
A set of string constants for the
VisualizeIsochroneRequest parameter options.
Additional parameters.
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringFactor to qualify the concavity of the isochrone curves.static final StringUpper bound for the x values.static final StringUpper bound for the y values.static final StringLower bound for the x values.static final StringLower bound for the y values.static final StringUses the solvers ‘priority_queue’ and ‘inverse_priority_queue’ based onSOLVE_DIRECTION.static final StringShortest path to get to the source (inverse Dijkstra).static final StringIf set toTRUE, replicate theSOLVE_TABLE.static final StringSpecify whether we are going to the source node, or starting from it.static final StringName of the table to host intermediate solve results, in [schema_name.]table_name format, using standard name resolution rules and meeting table naming criteria.static final StringShortest path to source (Dijkstra).static final StringUses the solvers scheduled for ‘shortest_path’ and ‘inverse_shortest_path’ based onSOLVE_DIRECTION.static final StringSets the solver methods explicitly if true.
Field Details
SOLVE_TABLE
Name of the table to host intermediate solve results, in [schema_name.]table_name format, using standard name resolution rules and meeting table naming criteria. This table will contain the position and cost for each vertex in the graph. If the default value is used, a temporary table is created and deleted once the solution is calculated. The default value is ”.See Also:TRUE
Uses the solvers scheduled for ‘shortest_path’ and ‘inverse_shortest_path’ based onSOLVE_DIRECTION.See Also:FALSE
Uses the solvers ‘priority_queue’ and ‘inverse_priority_queue’ based onSOLVE_DIRECTION.See Also:CONCAVITY_LEVEL
Factor to qualify the concavity of the isochrone curves. The lower the value, the more convex (with ‘0’ being completely convex and ‘1’ being the most concave). The default value is ‘0.5’. The minimum allowed value is ‘0’. The maximum allowed value is ‘1’.See Also:USE_PRIORITY_QUEUE_SOLVERS
Sets the solver methods explicitly if true. Supported values:TRUE: Uses the solvers scheduled for ‘shortest_path’ and ‘inverse_shortest_path’ based onSOLVE_DIRECTION.FALSE: Uses the solvers ‘priority_queue’ and ‘inverse_priority_queue’ based onSOLVE_DIRECTION.
FALSE.See Also:SOLVE_DIRECTION
Specify whether we are going to the source node, or starting from it. Supported values:FROM_SOURCE: Shortest path to get to the source (inverse Dijkstra).TO_SOURCE: Shortest path to source (Dijkstra).
FROM_SOURCE.See Also: