Skip to content

Commit 3ec22b7

Browse files
committed
provide better descriptions of variables
1 parent de02e71 commit 3ec22b7

1 file changed

Lines changed: 22 additions & 16 deletions

File tree

example.env

Lines changed: 22 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,29 @@
1-
# postgresql connection info
1+
# connection parameters for postgresql
22
SEQ_SOURCE_HOST=localhost
33
SEQ_SOURCE_DB=stc
44
SEQ_SOURCE_USER=postgres
55
SEQ_SOURCE_PASS=postgres
66

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
7+
# output directory for temporary and final files
8+
SEQ_OUTPUT=.
9+
10+
# parent geography layer details
11+
SEQ_PARENT_LAYER=lu
12+
SEQ_PARENT_UID=lu_uid
1813

19-
# block face layer view (road sides)
20-
SEQ_BF_TABLE=bf_view
14+
# child geography layer details
15+
SEQ_CHILD_LAYER=lb
16+
SEQ_CHILD_UID=lb_uid
17+
18+
# road layer details
19+
SEQ_ROAD_LAYER=ngd_al
20+
SEQ_ROAD_UID=ngd_uid
21+
# only required if not wanting to use ST_Length
22+
# SEQ_ROAD_COST=length
2123

22-
# outputs sqlite database
23-
SEQ_OUTPUT=../sequencing/seq.db
24+
# DB table of edges to be sequenced
25+
SEQ_BF_TABLE=bf_list
26+
# field containing preferred turn direction
27+
SEQ_BF_SIDE_FIELD=arc_side
28+
# preferred turn direction when routing
29+
SEQ_BF_SIDE_PREFERRED=R

0 commit comments

Comments
 (0)