Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
kinetica.VisualizeIsochroneRequest.Options Struct Reference

Additional parameters

More...

Public Attributes

const string SOLVE_TABLE = "solve_table"
 Name of the table to host intermediate solve results, in [schema_name. 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:

  • TRUE: uses the solvers scheduled for 'shortest_path' and 'inverse_shortest_path' based on solve_direction
  • FALSE: uses the solvers 'priority_queue' and 'inverse_priority_queue' based on solve_direction

The default value is FALSE. More...

 
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...
 

Detailed Description

Additional parameters

  • 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 ''. 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:

  • TRUE: uses the solvers scheduled for 'shortest_path' and 'inverse_shortest_path' based on solve_direction
  • FALSE: uses the solvers 'priority_queue' and 'inverse_priority_queue' based on solve_direction

The default value is FALSE. 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)

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 1336 of file VisualizeIsochrone.cs.

Member Data Documentation

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 1396 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 1382 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 1390 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 1378 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 1386 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 1374 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 1442 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 1366 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:

  • FROM_SOURCE: Shortest path to get to the source (inverse Dijkstra)
  • TO_SOURCE: Shortest path to source (Dijkstra)

The default value is FROM_SOURCE.

Definition at line 1438 of file VisualizeIsochrone.cs.

const string kinetica.VisualizeIsochroneRequest.Options.SOLVE_TABLE = "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 ''.

Definition at line 1349 of file VisualizeIsochrone.cs.

const string kinetica.VisualizeIsochroneRequest.Options.TO_SOURCE = "to_source"

Shortest path to source (Dijkstra)

Definition at line 1445 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 1370 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:

  • TRUE: uses the solvers scheduled for 'shortest_path' and 'inverse_shortest_path' based on solve_direction
  • FALSE: uses the solvers 'priority_queue' and 'inverse_priority_queue' based on solve_direction

The default value is FALSE.

Definition at line 1417 of file VisualizeIsochrone.cs.


The documentation for this struct was generated from the following file: