1- # postgresql connection info
2- SEQ_SOURCE_HOST = localhost
3- SEQ_SOURCE_DB = stc
4- SEQ_SOURCE_USER = postgres
5- SEQ_SOURCE_PASS = postgres
1+ # Input edge data CSV file
2+ SEQ_EDGE_DATA_FILE = data/edge_data.csv
3+ # Input block representative point CSV file
4+ SEQ_BLOCK_DATA_FILE = data/block_data.csv
65
7- # parent geography layer
8- SEQ_PARENT_LAYER = LU
9- SEQ_PARENT_UID = LU_UID
10- # child geography layer
11- SEQ_CHILD_LAYER = LB
12- SEQ_CHILD_UID = LB_UID
13- # road layer
14- SEQ_ROAD_LAYER = NGD_AL
15- SEQ_ROAD_UID = NGD_UID
16- # only required if not wanting to use ST_Length
17- SEQ_ROAD_COST = SHAPE_Length
6+ # Sequencing results output file
7+ SEQ_OUTPUT = ../sequencing_results.csv
8+ # Sequencing results anomolous data output directory
9+ SEQ_ANOMALY_FOLDER = ../seq_anomalies
1810
19- # block face layer view (road sides)
20- SEQ_BF_TABLE = bf_view
11+ # UID field to identify parent geographies in the block and edge data
12+ SEQ_PARENT_UID = parent_block_uid
13+ # UID field to identify child geographies in the block and edge data
14+ SEQ_CHILD_UID = child_block_uid
2115
22- # outputs sqlite database
23- SEQ_OUTPUT = ../sequencing/seq.db
16+ # Field containing the X coordinate for the block representative point
17+ SEQ_BLOCK_X_FIELD = rep_point_x
18+ # Field containing the Y coordinate for the block representative point
19+ SEQ_BLOCK_Y_FIELD = rep_point_y
20+
21+ # Source node identifier to build an edge graph from
22+ SEQ_EDGE_SOURCE_FIELD = source
23+ # Target node identifier to build an edge graph from
24+ SEQ_EDGE_TARGET_FIELD = target
25+ # UID field to uniquely identify each edge in the inptu data
26+ SEQ_EDGE_UID_FIELD = edge_uid
27+ # Field name of the interior road arc flag field
28+ SEQ_INTERIOR_EDGE_FLAG_FIELD = interior_flag
29+ # Field name of UID field to identify edges that form a contiguous road arc
30+ SEQ_STREET_UID_FIELD = street_uid
31+
32+ # Field name of the block order field in the results file
33+ SEQ_BO_FIELD_NAME = block_order
34+ # Field name of the edge order field in the results file
35+ SEQ_EO_FIELD_NAME = edge_order
0 commit comments