You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/md/Land-Use-Types.md
+13-29
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ Each type consists of a dictionary of attributes. The mnimum attributes contined
6
6
7
7
## Attribute Examples
8
8
9
-
A single grid-cell may contain multiple LBCS and multiple NAICS on different floors or even on the same floor. Therefore, the value of each attribute is formatted as a list of lists. The upper-most list represents groups of floors. Each lower-level list represents the mix of uses within that floor-group. For example, the following represents the NAICS attribute for a grid cell where:
9
+
A single grid-cell may contain multiple LBCS and multiple NAICS on different floors or even on the same floor. Therefore, the value of each attribute is formatted as a list of objects. The object in the list represents a grouping of floors starting with the lower-most floors. Each object contains the mix of uses within that floor-group. For example, the following represents the NAICS attribute for a grid cell where:
10
10
- the lower 30% of floors are devoted to a mix of "541310" (architectural services) and "541330" (engineering services).
11
11
- the upper 70% of floors and devoted to a mix of "23" (Construction), "42" (Wholesale) and "61" (Education).
12
12
@@ -17,29 +17,18 @@ A single grid-cell may contain multiple LBCS and multiple NAICS on different flo
17
17
"P": 0.3,
18
18
"use": [
19
19
{
20
-
"P": 0.5,
21
-
"use": "541310"
22
-
},
23
-
{
24
-
"P": 0.5,
25
-
"use": "541330"
20
+
"0.5": "541310",
21
+
"0.5": "541330"
26
22
}
27
23
]
28
24
},
29
25
{
30
26
"P": 0.7,
31
27
"use": [
32
28
{
33
-
"P": 0.3,
34
-
"use": "23"
35
-
},
36
-
{
37
-
"P": 0.4,
38
-
"use": "42"
39
-
},
40
-
{
41
-
"P": 0.3,
42
-
"use": "61"
29
+
"0.3": "23",
30
+
"0.4": "42",
31
+
"0.3": "61"
43
32
}
44
33
]
45
34
}
@@ -49,7 +38,7 @@ A single grid-cell may contain multiple LBCS and multiple NAICS on different flo
49
38
50
39
The number of floors is independent of the type and specified separately by the user. Therefore, if the user assigns 10 floors to this grid cell, the lower 2 floors will be a mix of 541310 and 541330 and the upper 10 floors will be a mix of 23, 42 and 61.
51
40
52
-
In most cases, the type specification will not require such a detailed level of partitioning of types. If for example, the grid cell has only a single usage type, the same data format will be used but the upper and lower level list will have length of 1. For example, the following represents the NAICS attribute for a grid cell solely devoted to "54" (Professional, Scientific and Technical Services).
41
+
In most cases, the type specification will not require such a detailed level of partitioning of types. If for example, the grid cell has only a single usage type, the same data format will be used but the list will only contain 1 object of length 1. For example, the following represents the NAICS attribute for a grid cell solely devoted to "54" (Professional, Scientific and Technical Services).
53
42
54
43
```json
55
44
{
@@ -58,8 +47,7 @@ In most cases, the type specification will not require such a detailed level of
58
47
"P": 1,
59
48
"use": [
60
49
{
61
-
"P": 1,
62
-
"use": "54"
50
+
"1": "54"
63
51
}
64
52
]
65
53
}
@@ -81,8 +69,7 @@ Below are some examples of CityScope types. These can be copy and pasted or modi
81
69
"P": 1,
82
70
"use": [
83
71
{
84
-
"P": 1,
85
-
"use": "1120"
72
+
"1": "1120"
86
73
}
87
74
]
88
75
}
@@ -97,8 +84,7 @@ Below are some examples of CityScope types. These can be copy and pasted or modi
97
84
"P": 0.1,
98
85
"use": [
99
86
{
100
-
"P": 1,
101
-
"use": "4451"
87
+
"1": "4451"
102
88
}
103
89
]
104
90
},
@@ -112,17 +98,15 @@ Below are some examples of CityScope types. These can be copy and pasted or modi
I have a few questions/comments. Please note the following:
Comment: should a type include information about utilization or capacity (in the same way we use S, M, or L on the Volpe table)? I do not think it should be S,M,L, but we could use a person/meter or some scale factor to add to the definition of components within a type. IE: For a given land-use, we need to outline how they are aggregated? Is it 1 unit or 3 units/floor.
Comment: there will never be an economic activity without a land-use, but there can be land-uses without economic activity. Would it be better to format or organize the data in a way that associates a NICS code of each land-use, when a NICS code is available?
Question: what does the "P" above each land-use mean?
1 commit comments
MarkusElKatsha commentedon Apr 24, 2020
Hello Ronan - The above is great!
I have a few questions/comments. Please note the following:
Comment: should a type include information about utilization or capacity (in the same way we use S, M, or L on the Volpe table)? I do not think it should be S,M,L, but we could use a person/meter or some scale factor to add to the definition of components within a type. IE: For a given land-use, we need to outline how they are aggregated? Is it 1 unit or 3 units/floor.
Comment: there will never be an economic activity without a land-use, but there can be land-uses without economic activity. Would it be better to format or organize the data in a way that associates a NICS code of each land-use, when a NICS code is available?
Question: what does the "P" above each land-use mean?