nastasiasnk commited on
Commit
d92e7dc
1 Parent(s): a173230

Update config.py

Browse files
Files changed (1) hide show
  1. config.py +15 -15
config.py CHANGED
@@ -1,32 +1,32 @@
 
 
1
 
2
 
 
3
 
4
- import sys
5
- sys.path.append('C:/Users/anast/OneDrive/Doc/GitHub/gf/RECODE_speckle_utils') # Adjust path as necessary
6
-
7
-
8
-
9
-
10
- # define variables
11
  streamId="ebcfc50abe"
12
-
13
-
14
- # distance matrices
15
  dmBranchName = "graph_geometry/distance_matrix"
16
  dmCommitId = "cfde6f4ba4"
17
  distanceMatrixActivityNodes = "activity_node+distance_matrix_ped_mm_noEntr"
18
  distanceMatrixTransportStops = "an_stations+distance_matrix_ped_mm_art_noEntr"
19
-
20
- # land use attributes
21
  luBranchName = "graph_geometry/activity_nodes_with_land_use"
22
  luCommitId = "13ae6cdd30"
23
 
24
- # livability attributes
25
- landuseDatabaseId = "407c2fce664f4dde8940bb416780a86d"
26
- subdomainAttributesDatabaseId = "01401b78420f4296a2449f587d4ed9c9"
27
 
 
28
 
 
 
29
 
 
 
 
 
 
 
 
30
 
31
 
32
 
 
1
+ #import sys
2
+ #sys.path.append('C:/Users/anast/OneDrive/Doc/GitHub/gf/RECODE_speckle_utils') # Adjust path as necessary
3
 
4
 
5
+ # ------------------------- Speckle variables ------------------------- #
6
 
 
 
 
 
 
 
 
7
  streamId="ebcfc50abe"
8
+ # distance matrix
 
 
9
  dmBranchName = "graph_geometry/distance_matrix"
10
  dmCommitId = "cfde6f4ba4"
11
  distanceMatrixActivityNodes = "activity_node+distance_matrix_ped_mm_noEntr"
12
  distanceMatrixTransportStops = "an_stations+distance_matrix_ped_mm_art_noEntr"
13
+ # activity nodes with land use
 
14
  luBranchName = "graph_geometry/activity_nodes_with_land_use"
15
  luCommitId = "13ae6cdd30"
16
 
 
 
 
17
 
18
+ # ------------------------- Notion variables ------------------------- #
19
 
20
+ landuseDatabaseId = "407c2fce664f4dde8940bb416780a86d"
21
+ subdomainAttributesDatabaseId = "01401b78420f4296a2449f587d4ed9c9"
22
 
23
+ landuseColumnName = "LANDUSE"
24
+ subdomainColumnName = "SUBDOMAIN_LIVEABILITY"
25
+ subdomainColumnName = "SUBDOMAIN_UNIQUE"
26
+ sqmPerEmployeeColumnName = "SQM PER EMPL"
27
+ thresholdsColumnName = "MANHATTAN THRESHOLD"
28
+ maxPointsColumnName = "LIVABILITY MAX POINT"
29
+ domainColumnName = "DOMAIN"
30
 
31
 
32