forked from llooker/datablocks-acs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bigquery.block_group_facts.view.lkml
223 lines (211 loc) · 6.07 KB
/
bigquery.block_group_facts.view.lkml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
view: bq_block_group_facts {
sql_table_name: `looker-datablocks.acs_fast_facts.fast_facts` ;;
dimension: logrecno_bg_map_block_group {
hidden: yes
type: string
sql: ${TABLE}.logrecno_bg_map_block_group ;;
primary_key: yes
}
measure: total_population {
description: "Total Population"
type: sum
sql: ${TABLE}.total_population ;;
}
# Household Measures
measure: housing_units {
type: sum
group_label: "Households"
sql: ${TABLE}.housing_units ;;
}
measure: avg_persons_house {
type: number
group_label: "Households"
label: "Average Persons per Household"
sql: ${total_population}/NULLIF(${housing_units}, 0) ;;
value_format_name: decimal_2
}
# Income Measure
measure: aggregate_income {
hidden: yes
type: sum
group_label: "Households"
sql: ${TABLE}.aggregate_income ;;
}
measure: avg_income_house {
type: number
group_label: "Households"
label: "Average Income per Household"
sql: ${aggregate_income}/NULLIF(${housing_units}, 0) ;;
value_format_name: usd_0
}
# Sex Measures
measure: female_population {
type: sum
sql: ${TABLE}.female ;;
group_label: "Sex"
}
measure: male_population {
type: sum
sql: ${TABLE}.male ;;
group_label: "Sex"
}
measure: pct_male{
type: number
label: "Male % of Population"
group_label: "Sex"
sql: ${male_population}/NULLIF(${total_population}, 0) ;;
value_format_name: percent_2
}
measure: pct_female{
type: number
label: "Female % of Population"
group_label: "Sex"
sql: ${female_population}/NULLIF(${total_population}, 0) ;;
value_format_name: percent_2
}
# Racial Measures
measure: white_alone_or_in_combo {
label: "White Population (Alone or in Combo with Other Races)"
group_label: "Race"
type: sum
sql: ${TABLE}.white_alone_or_in_combo ;;
}
measure: black_alone_or_in_combo {
label: "Black or African American Population (Alone or in Combo with Other Races)"
group_label: "Race"
type: sum
sql: ${TABLE}.black_alone_or_in_combo ;;
}
measure: amind_alone_or_in_combo {
label: "American Indian or Native Alaskan Population (Alone or in Combo with Other Races)"
group_label: "Race"
type: sum
sql: ${TABLE}.amind_alone_or_in_combo ;;
}
measure: asian_alone_or_in_combo {
label: "Asian Population (Alone or in Combo with Other Races)"
group_label: "Race"
type: sum
sql: ${TABLE}.asian_alone_or_in_combo ;;
}
measure: nat_haw_alone_or_in_combo {
label: "Native Hawaiian or Other Pacific Islander (Alone or in Combo with Other Races)"
group_label: "Race"
type: sum
sql: ${TABLE}.nat_haw_alone_or_in_combo ;;
}
measure: white_non_hisp {
label: "White, Non-Hispanic Population"
group_label: "Race"
type: sum
sql: ${TABLE}.white_non_hisp ;;
}
measure: pct_white {
label: "White % of Population"
group_label: "Race"
type: number
value_format_name: percent_2
sql: ${white_alone_or_in_combo}/NULLIF(${total_population}, 0) ;;
}
measure: pct_black {
label: "Black/African American % of Population"
group_label: "Race"
type: number
value_format_name: percent_2
sql: ${black_alone_or_in_combo}/NULLIF(${total_population}, 0) ;;
}
measure: pct_asian {
label: "Asian % of Population"
group_label: "Race"
type: number
value_format_name: percent_2
sql: ${asian_alone_or_in_combo}/NULLIF(${total_population}, 0) ;;
}
measure: pct_amind {
label: "American Indian or Native Alaskan % of Population"
group_label: "Race"
type: number
value_format_name: percent_2
sql: ${amind_alone_or_in_combo}/NULLIF(${total_population}, 0) ;;
}
measure: pct_nathaw {
label: "Native Hawaiian or Other Pacific Islander % of Population"
group_label: "Race"
type: number
value_format_name: percent_2
sql: ${nat_haw_alone_or_in_combo}/NULLIF(${total_population}, 0) ;;
}
measure: pct_white_nh {
label: "White, Non-Hispanic % of Population"
group_label: "Race"
type: number
value_format_name: percent_2
sql: ${white_non_hisp}/NULLIF(${total_population}, 0) ;;
}
measure: hispanic_or_latino {
label: "Hispanic or Latino Population (Any Race)"
type: sum
sql: ${TABLE}.hispanic_or_latino ;;
group_label: "Hispanic/Latino"
}
measure: pct_hispanic_or_latino {
label: "Hispanic or Latino % of Population (Any Race)"
type: number
sql: ${hispanic_or_latino}/NULLIF(${total_population}, 0) ;;
group_label: "Hispanic/Latino"
value_format_name: percent_2
}
measure: pct_non_hispanic_or_latino {
label: "Non-Hispanic, Non-Latino % of Population (Any Race)"
type: number
sql: 1-(${hispanic_or_latino}/NULLIF(${total_population}, 0)) ;;
group_label: "Hispanic/Latino"
value_format_name: percent_2
}
measure: pct_white_nh2 {
label: "White, Non-Hispanic % of Population"
group_label: "Hispanic/Latino"
type: number
value_format_name: percent_2
sql: ${white_non_hisp}/NULLIF(${total_population}, 0) ;;
}
measure: under_18 {
label: "Population 17 years and younger"
type: sum
sql: ${TABLE}.under_18 ;;
group_label: "Age"
}
measure: eighteen_to_64 {
label: "Population 18 to 64 years"
type: sum
sql: ${TABLE}.eighteen_to_64 ;;
group_label: "Age"
}
measure: sixty_five_and_over {
label: "Population 65 years and older"
type: sum
sql: ${TABLE}.sixty_five_and_over ;;
group_label: "Age"
}
measure: pct_under_18 {
label: "% of Population 17 years and younger"
type: number
sql: ${under_18}/NULLIF(${total_population}, 0) ;;
group_label: "Age"
value_format_name: percent_2
}
measure: pct_18_64 {
label: "% of Population 18 and 64 years"
type: number
sql: ${eighteen_to_64}/NULLIF(${total_population}, 0) ;;
group_label: "Age"
value_format_name: percent_2
}
measure: pct_65_over {
label: "% of Population 65 and older"
type: number
sql: ${sixty_five_and_over}/NULLIF(${total_population}, 0) ;;
group_label: "Age"
value_format_name: percent_2
}
}