Kinetica C# API
Version 7.0.19.0
|
Additional parameters
Public Attributes | |
const string | SOLVE_TABLE = "solve_table" |
Name of the table to host intermediate solve results containing the position and cost for each vertex in the graph. More... | |
const string | IS_REPLICATED = "is_replicated" |
If set to true, replicate the solve_table. More... | |
const string | TRUE = "true" |
uses the solvers scheduled for 'shortest_path' and 'inverse_shortest_path' based on solve_direction More... | |
const string | FALSE = "false" |
uses the solvers 'priority_queue' and 'inverse_priority_queue' based on solve_direction More... | |
const string | DATA_MIN_X = "data_min_x" |
Lower bound for the x values. More... | |
const string | DATA_MAX_X = "data_max_x" |
Upper bound for the x values. More... | |
const string | DATA_MIN_Y = "data_min_y" |
Lower bound for the y values. More... | |
const string | DATA_MAX_Y = "data_max_y" |
Upper bound for the y values. More... | |
const string | CONCAVITY_LEVEL = "concavity_level" |
Factor to qualify the concavity of the isochrone curves. More... | |
const string | USE_PRIORITY_QUEUE_SOLVERS = "use_priority_queue_solvers" |
sets the solver methods explicitly if true Supported values: | |
const string | SOLVE_DIRECTION = "solve_direction" |
Specify whether we are going to the source node, or starting from it. More... | |
const string | FROM_SOURCE = "from_source" |
Shortest path to get to the source (inverse Dijkstra) More... | |
const string | TO_SOURCE = "to_source" |
Shortest path to source (Dijkstra) More... | |
Additional parameters
If the default value is used, a temporary table is created and deleted once the solution is calculated. The default value is ''. IS_REPLICATED: If set to true, replicate the solve_table. Supported values:
The default value is TRUE. DATA_MIN_X: Lower bound for the x values. If not provided, it will be computed from the bounds of the input data. DATA_MAX_X: Upper bound for the x values. If not provided, it will be computed from the bounds of the input data. DATA_MIN_Y: Lower bound for the y values. If not provided, it will be computed from the bounds of the input data. DATA_MAX_Y: Upper bound for the y values. If not provided, it will be computed from the bounds of the input data. 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'. USE_PRIORITY_QUEUE_SOLVERS: sets the solver methods explicitly if true Supported values:
The default value is FALSE. SOLVE_DIRECTION: Specify whether we are going to the source node, or starting from it. Supported values:
The default value is FROM_SOURCE.
The default value is an empty Dictionary. A set of string constants for the parameter options.
Definition at line 1331 of file VisualizeIsochrone.cs.
const string kinetica.VisualizeIsochroneRequest.Options.CONCAVITY_LEVEL = "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'.
Definition at line 1386 of file VisualizeIsochrone.cs.
const string kinetica.VisualizeIsochroneRequest.Options.DATA_MAX_X = "data_max_x" |
Upper bound for the x values.
If not provided, it will be computed from the bounds of the input data.
Definition at line 1372 of file VisualizeIsochrone.cs.
const string kinetica.VisualizeIsochroneRequest.Options.DATA_MAX_Y = "data_max_y" |
Upper bound for the y values.
If not provided, it will be computed from the bounds of the input data.
Definition at line 1380 of file VisualizeIsochrone.cs.
const string kinetica.VisualizeIsochroneRequest.Options.DATA_MIN_X = "data_min_x" |
Lower bound for the x values.
If not provided, it will be computed from the bounds of the input data.
Definition at line 1368 of file VisualizeIsochrone.cs.
const string kinetica.VisualizeIsochroneRequest.Options.DATA_MIN_Y = "data_min_y" |
Lower bound for the y values.
If not provided, it will be computed from the bounds of the input data.
Definition at line 1376 of file VisualizeIsochrone.cs.
const string kinetica.VisualizeIsochroneRequest.Options.FALSE = "false" |
uses the solvers 'priority_queue' and 'inverse_priority_queue' based on solve_direction
Definition at line 1364 of file VisualizeIsochrone.cs.
const string kinetica.VisualizeIsochroneRequest.Options.FROM_SOURCE = "from_source" |
Shortest path to get to the source (inverse Dijkstra)
Definition at line 1432 of file VisualizeIsochrone.cs.
const string kinetica.VisualizeIsochroneRequest.Options.IS_REPLICATED = "is_replicated" |
If set to true, replicate the solve_table.
Supported values:
The default value is TRUE.
Definition at line 1356 of file VisualizeIsochrone.cs.
const string kinetica.VisualizeIsochroneRequest.Options.SOLVE_DIRECTION = "solve_direction" |
Specify whether we are going to the source node, or starting from it.
Supported values:
The default value is FROM_SOURCE.
Definition at line 1428 of file VisualizeIsochrone.cs.
const string kinetica.VisualizeIsochroneRequest.Options.SOLVE_TABLE = "solve_table" |
Name of the table to host intermediate solve results containing 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 ''.
Definition at line 1339 of file VisualizeIsochrone.cs.
const string kinetica.VisualizeIsochroneRequest.Options.TO_SOURCE = "to_source" |
Shortest path to source (Dijkstra)
Definition at line 1435 of file VisualizeIsochrone.cs.
const string kinetica.VisualizeIsochroneRequest.Options.TRUE = "true" |
uses the solvers scheduled for 'shortest_path' and 'inverse_shortest_path' based on solve_direction
Definition at line 1360 of file VisualizeIsochrone.cs.
const string kinetica.VisualizeIsochroneRequest.Options.USE_PRIORITY_QUEUE_SOLVERS = "use_priority_queue_solvers" |
sets the solver methods explicitly if true Supported values:
The default value is FALSE.
Definition at line 1407 of file VisualizeIsochrone.cs.