@pgsage/loaders 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1827 @@
1
+ /**
2
+ * Curated ACS 5-Year variable list for pgsage v1.
3
+ *
4
+ * Source: 2024 ACS 5-Year Detailed Tables (https://api.census.gov/data/2024/acs/acs5)
5
+ * Vintage: 2024
6
+ *
7
+ * Selection strategy:
8
+ * - Include all variables from compact groups (single-value summaries, income
9
+ * brackets, housing, transportation, education).
10
+ * - Cherry-pick totals and key breakdowns from large crosscut groups (poverty
11
+ * by sex×age, employment by sex×age, health insurance by sex×age, sex×age
12
+ * distribution) to avoid loading hundreds of rarely-queried sub-cells.
13
+ * - All variables are estimate codes (_E suffix). Their paired margin-of-error
14
+ * codes (_M suffix) are fetched automatically by the API client.
15
+ */
16
+ export const CENSUS_VARIABLES = [
17
+ // ==========================================================================
18
+ // INCOME (B19001, B19013, B19301, B19083, B19049)
19
+ // ==========================================================================
20
+ // B19013 — Median Household Income
21
+ {
22
+ code: "B19013_001E",
23
+ label: "Median household income in the past 12 months (in 2024 inflation-adjusted dollars)",
24
+ concept: "Median Household Income in the Past 12 Months",
25
+ category: "income",
26
+ group: "B19013",
27
+ },
28
+ // B19301 — Per Capita Income
29
+ {
30
+ code: "B19301_001E",
31
+ label: "Per capita income in the past 12 months (in 2024 inflation-adjusted dollars)",
32
+ concept: "Per Capita Income in the Past 12 Months",
33
+ category: "income",
34
+ group: "B19301",
35
+ },
36
+ // B19083 — Gini Index
37
+ {
38
+ code: "B19083_001E",
39
+ label: "Gini index of income inequality",
40
+ concept: "Gini Index of Income Inequality",
41
+ category: "income",
42
+ group: "B19083",
43
+ },
44
+ // B19001 — Household Income Distribution (all 17 brackets)
45
+ {
46
+ code: "B19001_001E",
47
+ label: "Total households",
48
+ concept: "Household Income in the Past 12 Months",
49
+ category: "income",
50
+ group: "B19001",
51
+ },
52
+ {
53
+ code: "B19001_002E",
54
+ label: "Households with income less than $10,000",
55
+ concept: "Household Income in the Past 12 Months",
56
+ category: "income",
57
+ group: "B19001",
58
+ },
59
+ {
60
+ code: "B19001_003E",
61
+ label: "Households with income $10,000 to $14,999",
62
+ concept: "Household Income in the Past 12 Months",
63
+ category: "income",
64
+ group: "B19001",
65
+ },
66
+ {
67
+ code: "B19001_004E",
68
+ label: "Households with income $15,000 to $19,999",
69
+ concept: "Household Income in the Past 12 Months",
70
+ category: "income",
71
+ group: "B19001",
72
+ },
73
+ {
74
+ code: "B19001_005E",
75
+ label: "Households with income $20,000 to $24,999",
76
+ concept: "Household Income in the Past 12 Months",
77
+ category: "income",
78
+ group: "B19001",
79
+ },
80
+ {
81
+ code: "B19001_006E",
82
+ label: "Households with income $25,000 to $29,999",
83
+ concept: "Household Income in the Past 12 Months",
84
+ category: "income",
85
+ group: "B19001",
86
+ },
87
+ {
88
+ code: "B19001_007E",
89
+ label: "Households with income $30,000 to $34,999",
90
+ concept: "Household Income in the Past 12 Months",
91
+ category: "income",
92
+ group: "B19001",
93
+ },
94
+ {
95
+ code: "B19001_008E",
96
+ label: "Households with income $35,000 to $39,999",
97
+ concept: "Household Income in the Past 12 Months",
98
+ category: "income",
99
+ group: "B19001",
100
+ },
101
+ {
102
+ code: "B19001_009E",
103
+ label: "Households with income $40,000 to $44,999",
104
+ concept: "Household Income in the Past 12 Months",
105
+ category: "income",
106
+ group: "B19001",
107
+ },
108
+ {
109
+ code: "B19001_010E",
110
+ label: "Households with income $45,000 to $49,999",
111
+ concept: "Household Income in the Past 12 Months",
112
+ category: "income",
113
+ group: "B19001",
114
+ },
115
+ {
116
+ code: "B19001_011E",
117
+ label: "Households with income $50,000 to $59,999",
118
+ concept: "Household Income in the Past 12 Months",
119
+ category: "income",
120
+ group: "B19001",
121
+ },
122
+ {
123
+ code: "B19001_012E",
124
+ label: "Households with income $60,000 to $74,999",
125
+ concept: "Household Income in the Past 12 Months",
126
+ category: "income",
127
+ group: "B19001",
128
+ },
129
+ {
130
+ code: "B19001_013E",
131
+ label: "Households with income $75,000 to $99,999",
132
+ concept: "Household Income in the Past 12 Months",
133
+ category: "income",
134
+ group: "B19001",
135
+ },
136
+ {
137
+ code: "B19001_014E",
138
+ label: "Households with income $100,000 to $124,999",
139
+ concept: "Household Income in the Past 12 Months",
140
+ category: "income",
141
+ group: "B19001",
142
+ },
143
+ {
144
+ code: "B19001_015E",
145
+ label: "Households with income $125,000 to $149,999",
146
+ concept: "Household Income in the Past 12 Months",
147
+ category: "income",
148
+ group: "B19001",
149
+ },
150
+ {
151
+ code: "B19001_016E",
152
+ label: "Households with income $150,000 to $199,999",
153
+ concept: "Household Income in the Past 12 Months",
154
+ category: "income",
155
+ group: "B19001",
156
+ },
157
+ {
158
+ code: "B19001_017E",
159
+ label: "Households with income $200,000 or more",
160
+ concept: "Household Income in the Past 12 Months",
161
+ category: "income",
162
+ group: "B19001",
163
+ },
164
+ // B19049 — Median Household Income by Age of Householder
165
+ {
166
+ code: "B19049_001E",
167
+ label: "Median household income — all householders",
168
+ concept: "Median Household Income by Age of Householder",
169
+ category: "income",
170
+ group: "B19049",
171
+ },
172
+ {
173
+ code: "B19049_002E",
174
+ label: "Median household income — householder under 25 years",
175
+ concept: "Median Household Income by Age of Householder",
176
+ category: "income",
177
+ group: "B19049",
178
+ },
179
+ {
180
+ code: "B19049_003E",
181
+ label: "Median household income — householder 25 to 44 years",
182
+ concept: "Median Household Income by Age of Householder",
183
+ category: "income",
184
+ group: "B19049",
185
+ },
186
+ {
187
+ code: "B19049_004E",
188
+ label: "Median household income — householder 45 to 64 years",
189
+ concept: "Median Household Income by Age of Householder",
190
+ category: "income",
191
+ group: "B19049",
192
+ },
193
+ {
194
+ code: "B19049_005E",
195
+ label: "Median household income — householder 65 years and over",
196
+ concept: "Median Household Income by Age of Householder",
197
+ category: "income",
198
+ group: "B19049",
199
+ },
200
+ // ==========================================================================
201
+ // POVERTY (B17001 — cherry-picked totals only)
202
+ // ==========================================================================
203
+ {
204
+ code: "B17001_001E",
205
+ label: "Total population for poverty determination",
206
+ concept: "Poverty Status in the Past 12 Months by Sex by Age",
207
+ category: "poverty",
208
+ group: "B17001",
209
+ },
210
+ {
211
+ code: "B17001_002E",
212
+ label: "Population with income below poverty level",
213
+ concept: "Poverty Status in the Past 12 Months by Sex by Age",
214
+ category: "poverty",
215
+ group: "B17001",
216
+ },
217
+ {
218
+ code: "B17001_003E",
219
+ label: "Males with income below poverty level",
220
+ concept: "Poverty Status in the Past 12 Months by Sex by Age",
221
+ category: "poverty",
222
+ group: "B17001",
223
+ },
224
+ {
225
+ code: "B17001_017E",
226
+ label: "Females with income below poverty level",
227
+ concept: "Poverty Status in the Past 12 Months by Sex by Age",
228
+ category: "poverty",
229
+ group: "B17001",
230
+ },
231
+ {
232
+ code: "B17001_031E",
233
+ label: "Population with income at or above poverty level",
234
+ concept: "Poverty Status in the Past 12 Months by Sex by Age",
235
+ category: "poverty",
236
+ group: "B17001",
237
+ },
238
+ // ==========================================================================
239
+ // HOUSING (B25001, B25002, B25003, B25034, B25035, B25064, B25070, B25071, B25077)
240
+ // ==========================================================================
241
+ // B25001 — Housing Units
242
+ {
243
+ code: "B25001_001E",
244
+ label: "Total housing units",
245
+ concept: "Housing Units",
246
+ category: "housing",
247
+ group: "B25001",
248
+ },
249
+ // B25002 — Occupancy Status
250
+ {
251
+ code: "B25002_001E",
252
+ label: "Total housing units (occupancy status)",
253
+ concept: "Occupancy Status",
254
+ category: "housing",
255
+ group: "B25002",
256
+ },
257
+ {
258
+ code: "B25002_002E",
259
+ label: "Occupied housing units",
260
+ concept: "Occupancy Status",
261
+ category: "housing",
262
+ group: "B25002",
263
+ },
264
+ {
265
+ code: "B25002_003E",
266
+ label: "Vacant housing units",
267
+ concept: "Occupancy Status",
268
+ category: "housing",
269
+ group: "B25002",
270
+ },
271
+ // B25003 — Tenure (owner/renter)
272
+ {
273
+ code: "B25003_001E",
274
+ label: "Total occupied housing units",
275
+ concept: "Tenure",
276
+ category: "housing",
277
+ group: "B25003",
278
+ },
279
+ {
280
+ code: "B25003_002E",
281
+ label: "Owner-occupied housing units",
282
+ concept: "Tenure",
283
+ category: "housing",
284
+ group: "B25003",
285
+ },
286
+ {
287
+ code: "B25003_003E",
288
+ label: "Renter-occupied housing units",
289
+ concept: "Tenure",
290
+ category: "housing",
291
+ group: "B25003",
292
+ },
293
+ // B25034 — Year Structure Built
294
+ {
295
+ code: "B25034_001E",
296
+ label: "Total housing units (year built)",
297
+ concept: "Year Structure Built",
298
+ category: "housing",
299
+ group: "B25034",
300
+ },
301
+ {
302
+ code: "B25034_002E",
303
+ label: "Housing units built 2020 or later",
304
+ concept: "Year Structure Built",
305
+ category: "housing",
306
+ group: "B25034",
307
+ },
308
+ {
309
+ code: "B25034_003E",
310
+ label: "Housing units built 2010 to 2019",
311
+ concept: "Year Structure Built",
312
+ category: "housing",
313
+ group: "B25034",
314
+ },
315
+ {
316
+ code: "B25034_004E",
317
+ label: "Housing units built 2000 to 2009",
318
+ concept: "Year Structure Built",
319
+ category: "housing",
320
+ group: "B25034",
321
+ },
322
+ {
323
+ code: "B25034_005E",
324
+ label: "Housing units built 1990 to 1999",
325
+ concept: "Year Structure Built",
326
+ category: "housing",
327
+ group: "B25034",
328
+ },
329
+ {
330
+ code: "B25034_006E",
331
+ label: "Housing units built 1980 to 1989",
332
+ concept: "Year Structure Built",
333
+ category: "housing",
334
+ group: "B25034",
335
+ },
336
+ {
337
+ code: "B25034_007E",
338
+ label: "Housing units built 1970 to 1979",
339
+ concept: "Year Structure Built",
340
+ category: "housing",
341
+ group: "B25034",
342
+ },
343
+ {
344
+ code: "B25034_008E",
345
+ label: "Housing units built 1960 to 1969",
346
+ concept: "Year Structure Built",
347
+ category: "housing",
348
+ group: "B25034",
349
+ },
350
+ {
351
+ code: "B25034_009E",
352
+ label: "Housing units built 1950 to 1959",
353
+ concept: "Year Structure Built",
354
+ category: "housing",
355
+ group: "B25034",
356
+ },
357
+ {
358
+ code: "B25034_010E",
359
+ label: "Housing units built 1940 to 1949",
360
+ concept: "Year Structure Built",
361
+ category: "housing",
362
+ group: "B25034",
363
+ },
364
+ {
365
+ code: "B25034_011E",
366
+ label: "Housing units built 1939 or earlier",
367
+ concept: "Year Structure Built",
368
+ category: "housing",
369
+ group: "B25034",
370
+ },
371
+ // B25035 — Median Year Structure Built
372
+ {
373
+ code: "B25035_001E",
374
+ label: "Median year structure built",
375
+ concept: "Median Year Structure Built",
376
+ category: "housing",
377
+ group: "B25035",
378
+ },
379
+ // B25064 — Median Gross Rent
380
+ {
381
+ code: "B25064_001E",
382
+ label: "Median gross rent (dollars)",
383
+ concept: "Median Gross Rent",
384
+ category: "housing",
385
+ group: "B25064",
386
+ },
387
+ // B25071 — Median Gross Rent as % of Income
388
+ {
389
+ code: "B25071_001E",
390
+ label: "Median gross rent as a percentage of household income",
391
+ concept: "Median Gross Rent as a Percentage of Household Income",
392
+ category: "housing",
393
+ group: "B25071",
394
+ },
395
+ // B25077 — Median Home Value
396
+ {
397
+ code: "B25077_001E",
398
+ label: "Median value of owner-occupied housing units (dollars)",
399
+ concept: "Median Value (Dollars)",
400
+ category: "housing",
401
+ group: "B25077",
402
+ },
403
+ // B25070 — Gross Rent as % of Income (all 11 brackets)
404
+ {
405
+ code: "B25070_001E",
406
+ label: "Total renter-occupied housing units (rent as % of income)",
407
+ concept: "Gross Rent as a Percentage of Household Income",
408
+ category: "housing",
409
+ group: "B25070",
410
+ },
411
+ {
412
+ code: "B25070_002E",
413
+ label: "Renter-occupied units paying less than 10% of income on rent",
414
+ concept: "Gross Rent as a Percentage of Household Income",
415
+ category: "housing",
416
+ group: "B25070",
417
+ },
418
+ {
419
+ code: "B25070_003E",
420
+ label: "Renter-occupied units paying 10.0 to 14.9% of income on rent",
421
+ concept: "Gross Rent as a Percentage of Household Income",
422
+ category: "housing",
423
+ group: "B25070",
424
+ },
425
+ {
426
+ code: "B25070_004E",
427
+ label: "Renter-occupied units paying 15.0 to 19.9% of income on rent",
428
+ concept: "Gross Rent as a Percentage of Household Income",
429
+ category: "housing",
430
+ group: "B25070",
431
+ },
432
+ {
433
+ code: "B25070_005E",
434
+ label: "Renter-occupied units paying 20.0 to 24.9% of income on rent",
435
+ concept: "Gross Rent as a Percentage of Household Income",
436
+ category: "housing",
437
+ group: "B25070",
438
+ },
439
+ {
440
+ code: "B25070_006E",
441
+ label: "Renter-occupied units paying 25.0 to 29.9% of income on rent",
442
+ concept: "Gross Rent as a Percentage of Household Income",
443
+ category: "housing",
444
+ group: "B25070",
445
+ },
446
+ {
447
+ code: "B25070_007E",
448
+ label: "Renter-occupied units paying 30.0 to 34.9% of income on rent",
449
+ concept: "Gross Rent as a Percentage of Household Income",
450
+ category: "housing",
451
+ group: "B25070",
452
+ },
453
+ {
454
+ code: "B25070_008E",
455
+ label: "Renter-occupied units paying 35.0 to 39.9% of income on rent",
456
+ concept: "Gross Rent as a Percentage of Household Income",
457
+ category: "housing",
458
+ group: "B25070",
459
+ },
460
+ {
461
+ code: "B25070_009E",
462
+ label: "Renter-occupied units paying 40.0 to 49.9% of income on rent",
463
+ concept: "Gross Rent as a Percentage of Household Income",
464
+ category: "housing",
465
+ group: "B25070",
466
+ },
467
+ {
468
+ code: "B25070_010E",
469
+ label: "Renter-occupied units paying 50% or more of income on rent",
470
+ concept: "Gross Rent as a Percentage of Household Income",
471
+ category: "housing",
472
+ group: "B25070",
473
+ },
474
+ {
475
+ code: "B25070_011E",
476
+ label: "Renter-occupied units with rent as % of income not computed",
477
+ concept: "Gross Rent as a Percentage of Household Income",
478
+ category: "housing",
479
+ group: "B25070",
480
+ },
481
+ // ==========================================================================
482
+ // EMPLOYMENT (B23025, B23001 cherry-picked)
483
+ // ==========================================================================
484
+ // B23025 — Employment Status summary (all 7)
485
+ {
486
+ code: "B23025_001E",
487
+ label: "Total population 16 years and over",
488
+ concept: "Employment Status for the Population 16 Years and Over",
489
+ category: "employment",
490
+ group: "B23025",
491
+ },
492
+ {
493
+ code: "B23025_002E",
494
+ label: "Population 16+ in labor force",
495
+ concept: "Employment Status for the Population 16 Years and Over",
496
+ category: "employment",
497
+ group: "B23025",
498
+ },
499
+ {
500
+ code: "B23025_003E",
501
+ label: "Civilian labor force population 16+",
502
+ concept: "Employment Status for the Population 16 Years and Over",
503
+ category: "employment",
504
+ group: "B23025",
505
+ },
506
+ {
507
+ code: "B23025_004E",
508
+ label: "Civilian labor force population 16+ — employed",
509
+ concept: "Employment Status for the Population 16 Years and Over",
510
+ category: "employment",
511
+ group: "B23025",
512
+ },
513
+ {
514
+ code: "B23025_005E",
515
+ label: "Civilian labor force population 16+ — unemployed",
516
+ concept: "Employment Status for the Population 16 Years and Over",
517
+ category: "employment",
518
+ group: "B23025",
519
+ },
520
+ {
521
+ code: "B23025_006E",
522
+ label: "Population 16+ in Armed Forces",
523
+ concept: "Employment Status for the Population 16 Years and Over",
524
+ category: "employment",
525
+ group: "B23025",
526
+ },
527
+ {
528
+ code: "B23025_007E",
529
+ label: "Population 16+ not in labor force",
530
+ concept: "Employment Status for the Population 16 Years and Over",
531
+ category: "employment",
532
+ group: "B23025",
533
+ },
534
+ // B23001 — Employment by sex by age (cherry-picked: totals per age group)
535
+ {
536
+ code: "B23001_001E",
537
+ label: "Total population 16+ (employment by sex by age)",
538
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
539
+ category: "employment",
540
+ group: "B23001",
541
+ },
542
+ {
543
+ code: "B23001_002E",
544
+ label: "Total males 16+",
545
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
546
+ category: "employment",
547
+ group: "B23001",
548
+ },
549
+ {
550
+ code: "B23001_088E",
551
+ label: "Total females 16+",
552
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
553
+ category: "employment",
554
+ group: "B23001",
555
+ },
556
+ // Male age groups — total for each bracket
557
+ {
558
+ code: "B23001_003E",
559
+ label: "Males 16 to 19 years",
560
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
561
+ category: "employment",
562
+ group: "B23001",
563
+ },
564
+ {
565
+ code: "B23001_010E",
566
+ label: "Males 20 and 21 years",
567
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
568
+ category: "employment",
569
+ group: "B23001",
570
+ },
571
+ {
572
+ code: "B23001_017E",
573
+ label: "Males 22 to 24 years",
574
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
575
+ category: "employment",
576
+ group: "B23001",
577
+ },
578
+ {
579
+ code: "B23001_024E",
580
+ label: "Males 25 to 29 years",
581
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
582
+ category: "employment",
583
+ group: "B23001",
584
+ },
585
+ {
586
+ code: "B23001_031E",
587
+ label: "Males 30 to 34 years",
588
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
589
+ category: "employment",
590
+ group: "B23001",
591
+ },
592
+ {
593
+ code: "B23001_038E",
594
+ label: "Males 35 to 44 years",
595
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
596
+ category: "employment",
597
+ group: "B23001",
598
+ },
599
+ {
600
+ code: "B23001_045E",
601
+ label: "Males 45 to 54 years",
602
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
603
+ category: "employment",
604
+ group: "B23001",
605
+ },
606
+ {
607
+ code: "B23001_052E",
608
+ label: "Males 55 to 59 years",
609
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
610
+ category: "employment",
611
+ group: "B23001",
612
+ },
613
+ {
614
+ code: "B23001_059E",
615
+ label: "Males 60 and 61 years",
616
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
617
+ category: "employment",
618
+ group: "B23001",
619
+ },
620
+ {
621
+ code: "B23001_066E",
622
+ label: "Males 62 to 64 years",
623
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
624
+ category: "employment",
625
+ group: "B23001",
626
+ },
627
+ {
628
+ code: "B23001_073E",
629
+ label: "Males 65 to 69 years",
630
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
631
+ category: "employment",
632
+ group: "B23001",
633
+ },
634
+ {
635
+ code: "B23001_078E",
636
+ label: "Males 70 to 74 years",
637
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
638
+ category: "employment",
639
+ group: "B23001",
640
+ },
641
+ {
642
+ code: "B23001_083E",
643
+ label: "Males 75 years and over",
644
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
645
+ category: "employment",
646
+ group: "B23001",
647
+ },
648
+ // Female age groups — total for each bracket
649
+ {
650
+ code: "B23001_089E",
651
+ label: "Females 16 to 19 years",
652
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
653
+ category: "employment",
654
+ group: "B23001",
655
+ },
656
+ {
657
+ code: "B23001_096E",
658
+ label: "Females 20 and 21 years",
659
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
660
+ category: "employment",
661
+ group: "B23001",
662
+ },
663
+ {
664
+ code: "B23001_103E",
665
+ label: "Females 22 to 24 years",
666
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
667
+ category: "employment",
668
+ group: "B23001",
669
+ },
670
+ {
671
+ code: "B23001_110E",
672
+ label: "Females 25 to 29 years",
673
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
674
+ category: "employment",
675
+ group: "B23001",
676
+ },
677
+ {
678
+ code: "B23001_117E",
679
+ label: "Females 30 to 34 years",
680
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
681
+ category: "employment",
682
+ group: "B23001",
683
+ },
684
+ {
685
+ code: "B23001_124E",
686
+ label: "Females 35 to 44 years",
687
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
688
+ category: "employment",
689
+ group: "B23001",
690
+ },
691
+ {
692
+ code: "B23001_131E",
693
+ label: "Females 45 to 54 years",
694
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
695
+ category: "employment",
696
+ group: "B23001",
697
+ },
698
+ {
699
+ code: "B23001_138E",
700
+ label: "Females 55 to 59 years",
701
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
702
+ category: "employment",
703
+ group: "B23001",
704
+ },
705
+ {
706
+ code: "B23001_145E",
707
+ label: "Females 60 and 61 years",
708
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
709
+ category: "employment",
710
+ group: "B23001",
711
+ },
712
+ {
713
+ code: "B23001_152E",
714
+ label: "Females 62 to 64 years",
715
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
716
+ category: "employment",
717
+ group: "B23001",
718
+ },
719
+ {
720
+ code: "B23001_159E",
721
+ label: "Females 65 to 69 years",
722
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
723
+ category: "employment",
724
+ group: "B23001",
725
+ },
726
+ {
727
+ code: "B23001_164E",
728
+ label: "Females 70 to 74 years",
729
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
730
+ category: "employment",
731
+ group: "B23001",
732
+ },
733
+ {
734
+ code: "B23001_169E",
735
+ label: "Females 75 years and over",
736
+ concept: "Sex by Age by Employment Status for the Population 16 Years and Over",
737
+ category: "employment",
738
+ group: "B23001",
739
+ },
740
+ // ==========================================================================
741
+ // DEMOGRAPHICS (B01001, B01002, B01003, B02001, B03003)
742
+ // ==========================================================================
743
+ // B01003 — Total Population
744
+ {
745
+ code: "B01003_001E",
746
+ label: "Total population",
747
+ concept: "Total Population",
748
+ category: "demographics",
749
+ group: "B01003",
750
+ },
751
+ // B01002 — Median Age by Sex
752
+ {
753
+ code: "B01002_001E",
754
+ label: "Median age — total",
755
+ concept: "Median Age by Sex",
756
+ category: "demographics",
757
+ group: "B01002",
758
+ },
759
+ {
760
+ code: "B01002_002E",
761
+ label: "Median age — male",
762
+ concept: "Median Age by Sex",
763
+ category: "demographics",
764
+ group: "B01002",
765
+ },
766
+ {
767
+ code: "B01002_003E",
768
+ label: "Median age — female",
769
+ concept: "Median Age by Sex",
770
+ category: "demographics",
771
+ group: "B01002",
772
+ },
773
+ // B02001 — Race (all 10)
774
+ {
775
+ code: "B02001_001E",
776
+ label: "Total population (race)",
777
+ concept: "Race",
778
+ category: "demographics",
779
+ group: "B02001",
780
+ },
781
+ {
782
+ code: "B02001_002E",
783
+ label: "White alone",
784
+ concept: "Race",
785
+ category: "demographics",
786
+ group: "B02001",
787
+ },
788
+ {
789
+ code: "B02001_003E",
790
+ label: "Black or African American alone",
791
+ concept: "Race",
792
+ category: "demographics",
793
+ group: "B02001",
794
+ },
795
+ {
796
+ code: "B02001_004E",
797
+ label: "American Indian and Alaska Native alone",
798
+ concept: "Race",
799
+ category: "demographics",
800
+ group: "B02001",
801
+ },
802
+ {
803
+ code: "B02001_005E",
804
+ label: "Asian alone",
805
+ concept: "Race",
806
+ category: "demographics",
807
+ group: "B02001",
808
+ },
809
+ {
810
+ code: "B02001_006E",
811
+ label: "Native Hawaiian and Other Pacific Islander alone",
812
+ concept: "Race",
813
+ category: "demographics",
814
+ group: "B02001",
815
+ },
816
+ {
817
+ code: "B02001_007E",
818
+ label: "Some other race alone",
819
+ concept: "Race",
820
+ category: "demographics",
821
+ group: "B02001",
822
+ },
823
+ {
824
+ code: "B02001_008E",
825
+ label: "Two or more races",
826
+ concept: "Race",
827
+ category: "demographics",
828
+ group: "B02001",
829
+ },
830
+ {
831
+ code: "B02001_009E",
832
+ label: "Two or more races — two races including some other race",
833
+ concept: "Race",
834
+ category: "demographics",
835
+ group: "B02001",
836
+ },
837
+ {
838
+ code: "B02001_010E",
839
+ label: "Two or more races — two races excluding some other race, and three or more races",
840
+ concept: "Race",
841
+ category: "demographics",
842
+ group: "B02001",
843
+ },
844
+ // B03003 — Hispanic or Latino Origin (all 3)
845
+ {
846
+ code: "B03003_001E",
847
+ label: "Total population (Hispanic or Latino origin)",
848
+ concept: "Hispanic or Latino Origin",
849
+ category: "demographics",
850
+ group: "B03003",
851
+ },
852
+ {
853
+ code: "B03003_002E",
854
+ label: "Not Hispanic or Latino",
855
+ concept: "Hispanic or Latino Origin",
856
+ category: "demographics",
857
+ group: "B03003",
858
+ },
859
+ {
860
+ code: "B03003_003E",
861
+ label: "Hispanic or Latino",
862
+ concept: "Hispanic or Latino Origin",
863
+ category: "demographics",
864
+ group: "B03003",
865
+ },
866
+ // B01001 — Sex by Age (cherry-picked: totals + broad groups)
867
+ {
868
+ code: "B01001_001E",
869
+ label: "Total population (sex by age)",
870
+ concept: "Sex by Age",
871
+ category: "demographics",
872
+ group: "B01001",
873
+ },
874
+ {
875
+ code: "B01001_002E",
876
+ label: "Total male population",
877
+ concept: "Sex by Age",
878
+ category: "demographics",
879
+ group: "B01001",
880
+ },
881
+ {
882
+ code: "B01001_026E",
883
+ label: "Total female population",
884
+ concept: "Sex by Age",
885
+ category: "demographics",
886
+ group: "B01001",
887
+ },
888
+ // Male age groups
889
+ {
890
+ code: "B01001_003E",
891
+ label: "Male population under 5 years",
892
+ concept: "Sex by Age",
893
+ category: "demographics",
894
+ group: "B01001",
895
+ },
896
+ {
897
+ code: "B01001_004E",
898
+ label: "Male population 5 to 9 years",
899
+ concept: "Sex by Age",
900
+ category: "demographics",
901
+ group: "B01001",
902
+ },
903
+ {
904
+ code: "B01001_005E",
905
+ label: "Male population 10 to 14 years",
906
+ concept: "Sex by Age",
907
+ category: "demographics",
908
+ group: "B01001",
909
+ },
910
+ {
911
+ code: "B01001_006E",
912
+ label: "Male population 15 to 17 years",
913
+ concept: "Sex by Age",
914
+ category: "demographics",
915
+ group: "B01001",
916
+ },
917
+ {
918
+ code: "B01001_011E",
919
+ label: "Male population 25 to 29 years",
920
+ concept: "Sex by Age",
921
+ category: "demographics",
922
+ group: "B01001",
923
+ },
924
+ {
925
+ code: "B01001_012E",
926
+ label: "Male population 30 to 34 years",
927
+ concept: "Sex by Age",
928
+ category: "demographics",
929
+ group: "B01001",
930
+ },
931
+ {
932
+ code: "B01001_013E",
933
+ label: "Male population 35 to 39 years",
934
+ concept: "Sex by Age",
935
+ category: "demographics",
936
+ group: "B01001",
937
+ },
938
+ {
939
+ code: "B01001_014E",
940
+ label: "Male population 40 to 44 years",
941
+ concept: "Sex by Age",
942
+ category: "demographics",
943
+ group: "B01001",
944
+ },
945
+ {
946
+ code: "B01001_015E",
947
+ label: "Male population 45 to 49 years",
948
+ concept: "Sex by Age",
949
+ category: "demographics",
950
+ group: "B01001",
951
+ },
952
+ {
953
+ code: "B01001_020E",
954
+ label: "Male population 65 and 66 years",
955
+ concept: "Sex by Age",
956
+ category: "demographics",
957
+ group: "B01001",
958
+ },
959
+ {
960
+ code: "B01001_022E",
961
+ label: "Male population 70 to 74 years",
962
+ concept: "Sex by Age",
963
+ category: "demographics",
964
+ group: "B01001",
965
+ },
966
+ {
967
+ code: "B01001_025E",
968
+ label: "Male population 85 years and over",
969
+ concept: "Sex by Age",
970
+ category: "demographics",
971
+ group: "B01001",
972
+ },
973
+ // Female age groups
974
+ {
975
+ code: "B01001_027E",
976
+ label: "Female population under 5 years",
977
+ concept: "Sex by Age",
978
+ category: "demographics",
979
+ group: "B01001",
980
+ },
981
+ {
982
+ code: "B01001_028E",
983
+ label: "Female population 5 to 9 years",
984
+ concept: "Sex by Age",
985
+ category: "demographics",
986
+ group: "B01001",
987
+ },
988
+ {
989
+ code: "B01001_029E",
990
+ label: "Female population 10 to 14 years",
991
+ concept: "Sex by Age",
992
+ category: "demographics",
993
+ group: "B01001",
994
+ },
995
+ {
996
+ code: "B01001_030E",
997
+ label: "Female population 15 to 17 years",
998
+ concept: "Sex by Age",
999
+ category: "demographics",
1000
+ group: "B01001",
1001
+ },
1002
+ {
1003
+ code: "B01001_035E",
1004
+ label: "Female population 25 to 29 years",
1005
+ concept: "Sex by Age",
1006
+ category: "demographics",
1007
+ group: "B01001",
1008
+ },
1009
+ {
1010
+ code: "B01001_036E",
1011
+ label: "Female population 30 to 34 years",
1012
+ concept: "Sex by Age",
1013
+ category: "demographics",
1014
+ group: "B01001",
1015
+ },
1016
+ {
1017
+ code: "B01001_037E",
1018
+ label: "Female population 35 to 39 years",
1019
+ concept: "Sex by Age",
1020
+ category: "demographics",
1021
+ group: "B01001",
1022
+ },
1023
+ {
1024
+ code: "B01001_038E",
1025
+ label: "Female population 40 to 44 years",
1026
+ concept: "Sex by Age",
1027
+ category: "demographics",
1028
+ group: "B01001",
1029
+ },
1030
+ {
1031
+ code: "B01001_039E",
1032
+ label: "Female population 45 to 49 years",
1033
+ concept: "Sex by Age",
1034
+ category: "demographics",
1035
+ group: "B01001",
1036
+ },
1037
+ {
1038
+ code: "B01001_044E",
1039
+ label: "Female population 65 and 66 years",
1040
+ concept: "Sex by Age",
1041
+ category: "demographics",
1042
+ group: "B01001",
1043
+ },
1044
+ {
1045
+ code: "B01001_046E",
1046
+ label: "Female population 70 to 74 years",
1047
+ concept: "Sex by Age",
1048
+ category: "demographics",
1049
+ group: "B01001",
1050
+ },
1051
+ {
1052
+ code: "B01001_049E",
1053
+ label: "Female population 85 years and over",
1054
+ concept: "Sex by Age",
1055
+ category: "demographics",
1056
+ group: "B01001",
1057
+ },
1058
+ // ==========================================================================
1059
+ // EDUCATION (B15003 — all 25)
1060
+ // ==========================================================================
1061
+ {
1062
+ code: "B15003_001E",
1063
+ label: "Total population 25 years and over (educational attainment)",
1064
+ concept: "Educational Attainment for the Population 25 Years and Over",
1065
+ category: "education",
1066
+ group: "B15003",
1067
+ },
1068
+ {
1069
+ code: "B15003_002E",
1070
+ label: "Population 25+ — no schooling completed",
1071
+ concept: "Educational Attainment for the Population 25 Years and Over",
1072
+ category: "education",
1073
+ group: "B15003",
1074
+ },
1075
+ {
1076
+ code: "B15003_003E",
1077
+ label: "Population 25+ — nursery school",
1078
+ concept: "Educational Attainment for the Population 25 Years and Over",
1079
+ category: "education",
1080
+ group: "B15003",
1081
+ },
1082
+ {
1083
+ code: "B15003_004E",
1084
+ label: "Population 25+ — kindergarten",
1085
+ concept: "Educational Attainment for the Population 25 Years and Over",
1086
+ category: "education",
1087
+ group: "B15003",
1088
+ },
1089
+ {
1090
+ code: "B15003_005E",
1091
+ label: "Population 25+ — 1st grade",
1092
+ concept: "Educational Attainment for the Population 25 Years and Over",
1093
+ category: "education",
1094
+ group: "B15003",
1095
+ },
1096
+ {
1097
+ code: "B15003_006E",
1098
+ label: "Population 25+ — 2nd grade",
1099
+ concept: "Educational Attainment for the Population 25 Years and Over",
1100
+ category: "education",
1101
+ group: "B15003",
1102
+ },
1103
+ {
1104
+ code: "B15003_007E",
1105
+ label: "Population 25+ — 3rd grade",
1106
+ concept: "Educational Attainment for the Population 25 Years and Over",
1107
+ category: "education",
1108
+ group: "B15003",
1109
+ },
1110
+ {
1111
+ code: "B15003_008E",
1112
+ label: "Population 25+ — 4th grade",
1113
+ concept: "Educational Attainment for the Population 25 Years and Over",
1114
+ category: "education",
1115
+ group: "B15003",
1116
+ },
1117
+ {
1118
+ code: "B15003_009E",
1119
+ label: "Population 25+ — 5th grade",
1120
+ concept: "Educational Attainment for the Population 25 Years and Over",
1121
+ category: "education",
1122
+ group: "B15003",
1123
+ },
1124
+ {
1125
+ code: "B15003_010E",
1126
+ label: "Population 25+ — 6th grade",
1127
+ concept: "Educational Attainment for the Population 25 Years and Over",
1128
+ category: "education",
1129
+ group: "B15003",
1130
+ },
1131
+ {
1132
+ code: "B15003_011E",
1133
+ label: "Population 25+ — 7th grade",
1134
+ concept: "Educational Attainment for the Population 25 Years and Over",
1135
+ category: "education",
1136
+ group: "B15003",
1137
+ },
1138
+ {
1139
+ code: "B15003_012E",
1140
+ label: "Population 25+ — 8th grade",
1141
+ concept: "Educational Attainment for the Population 25 Years and Over",
1142
+ category: "education",
1143
+ group: "B15003",
1144
+ },
1145
+ {
1146
+ code: "B15003_013E",
1147
+ label: "Population 25+ — 9th grade",
1148
+ concept: "Educational Attainment for the Population 25 Years and Over",
1149
+ category: "education",
1150
+ group: "B15003",
1151
+ },
1152
+ {
1153
+ code: "B15003_014E",
1154
+ label: "Population 25+ — 10th grade",
1155
+ concept: "Educational Attainment for the Population 25 Years and Over",
1156
+ category: "education",
1157
+ group: "B15003",
1158
+ },
1159
+ {
1160
+ code: "B15003_015E",
1161
+ label: "Population 25+ — 11th grade",
1162
+ concept: "Educational Attainment for the Population 25 Years and Over",
1163
+ category: "education",
1164
+ group: "B15003",
1165
+ },
1166
+ {
1167
+ code: "B15003_016E",
1168
+ label: "Population 25+ — 12th grade, no diploma",
1169
+ concept: "Educational Attainment for the Population 25 Years and Over",
1170
+ category: "education",
1171
+ group: "B15003",
1172
+ },
1173
+ {
1174
+ code: "B15003_017E",
1175
+ label: "Population 25+ — regular high school diploma",
1176
+ concept: "Educational Attainment for the Population 25 Years and Over",
1177
+ category: "education",
1178
+ group: "B15003",
1179
+ },
1180
+ {
1181
+ code: "B15003_018E",
1182
+ label: "Population 25+ — GED or alternative credential",
1183
+ concept: "Educational Attainment for the Population 25 Years and Over",
1184
+ category: "education",
1185
+ group: "B15003",
1186
+ },
1187
+ {
1188
+ code: "B15003_019E",
1189
+ label: "Population 25+ — some college, less than 1 year",
1190
+ concept: "Educational Attainment for the Population 25 Years and Over",
1191
+ category: "education",
1192
+ group: "B15003",
1193
+ },
1194
+ {
1195
+ code: "B15003_020E",
1196
+ label: "Population 25+ — some college, 1 or more years, no degree",
1197
+ concept: "Educational Attainment for the Population 25 Years and Over",
1198
+ category: "education",
1199
+ group: "B15003",
1200
+ },
1201
+ {
1202
+ code: "B15003_021E",
1203
+ label: "Population 25+ — associate's degree",
1204
+ concept: "Educational Attainment for the Population 25 Years and Over",
1205
+ category: "education",
1206
+ group: "B15003",
1207
+ },
1208
+ {
1209
+ code: "B15003_022E",
1210
+ label: "Population 25+ — bachelor's degree",
1211
+ concept: "Educational Attainment for the Population 25 Years and Over",
1212
+ category: "education",
1213
+ group: "B15003",
1214
+ },
1215
+ {
1216
+ code: "B15003_023E",
1217
+ label: "Population 25+ — master's degree",
1218
+ concept: "Educational Attainment for the Population 25 Years and Over",
1219
+ category: "education",
1220
+ group: "B15003",
1221
+ },
1222
+ {
1223
+ code: "B15003_024E",
1224
+ label: "Population 25+ — professional school degree",
1225
+ concept: "Educational Attainment for the Population 25 Years and Over",
1226
+ category: "education",
1227
+ group: "B15003",
1228
+ },
1229
+ {
1230
+ code: "B15003_025E",
1231
+ label: "Population 25+ — doctorate degree",
1232
+ concept: "Educational Attainment for the Population 25 Years and Over",
1233
+ category: "education",
1234
+ group: "B15003",
1235
+ },
1236
+ // ==========================================================================
1237
+ // TRANSPORTATION (B08301, B08303 — all variables)
1238
+ // ==========================================================================
1239
+ // B08301 — Means of Transportation to Work (all 21)
1240
+ {
1241
+ code: "B08301_001E",
1242
+ label: "Total workers 16 years and over (means of transportation)",
1243
+ concept: "Means of Transportation to Work",
1244
+ category: "transportation",
1245
+ group: "B08301",
1246
+ },
1247
+ {
1248
+ code: "B08301_002E",
1249
+ label: "Workers commuting by car, truck, or van",
1250
+ concept: "Means of Transportation to Work",
1251
+ category: "transportation",
1252
+ group: "B08301",
1253
+ },
1254
+ {
1255
+ code: "B08301_003E",
1256
+ label: "Workers who drove alone",
1257
+ concept: "Means of Transportation to Work",
1258
+ category: "transportation",
1259
+ group: "B08301",
1260
+ },
1261
+ {
1262
+ code: "B08301_004E",
1263
+ label: "Workers who carpooled",
1264
+ concept: "Means of Transportation to Work",
1265
+ category: "transportation",
1266
+ group: "B08301",
1267
+ },
1268
+ {
1269
+ code: "B08301_005E",
1270
+ label: "Workers in 2-person carpool",
1271
+ concept: "Means of Transportation to Work",
1272
+ category: "transportation",
1273
+ group: "B08301",
1274
+ },
1275
+ {
1276
+ code: "B08301_006E",
1277
+ label: "Workers in 3-person carpool",
1278
+ concept: "Means of Transportation to Work",
1279
+ category: "transportation",
1280
+ group: "B08301",
1281
+ },
1282
+ {
1283
+ code: "B08301_007E",
1284
+ label: "Workers in 4-person carpool",
1285
+ concept: "Means of Transportation to Work",
1286
+ category: "transportation",
1287
+ group: "B08301",
1288
+ },
1289
+ {
1290
+ code: "B08301_008E",
1291
+ label: "Workers in 5- or 6-person carpool",
1292
+ concept: "Means of Transportation to Work",
1293
+ category: "transportation",
1294
+ group: "B08301",
1295
+ },
1296
+ {
1297
+ code: "B08301_009E",
1298
+ label: "Workers in 7-or-more-person carpool",
1299
+ concept: "Means of Transportation to Work",
1300
+ category: "transportation",
1301
+ group: "B08301",
1302
+ },
1303
+ {
1304
+ code: "B08301_010E",
1305
+ label: "Workers using public transportation",
1306
+ concept: "Means of Transportation to Work",
1307
+ category: "transportation",
1308
+ group: "B08301",
1309
+ },
1310
+ {
1311
+ code: "B08301_011E",
1312
+ label: "Workers commuting by bus",
1313
+ concept: "Means of Transportation to Work",
1314
+ category: "transportation",
1315
+ group: "B08301",
1316
+ },
1317
+ {
1318
+ code: "B08301_012E",
1319
+ label: "Workers commuting by subway or elevated rail",
1320
+ concept: "Means of Transportation to Work",
1321
+ category: "transportation",
1322
+ group: "B08301",
1323
+ },
1324
+ {
1325
+ code: "B08301_013E",
1326
+ label: "Workers commuting by long-distance train or commuter rail",
1327
+ concept: "Means of Transportation to Work",
1328
+ category: "transportation",
1329
+ group: "B08301",
1330
+ },
1331
+ {
1332
+ code: "B08301_014E",
1333
+ label: "Workers commuting by light rail, streetcar or trolley",
1334
+ concept: "Means of Transportation to Work",
1335
+ category: "transportation",
1336
+ group: "B08301",
1337
+ },
1338
+ {
1339
+ code: "B08301_015E",
1340
+ label: "Workers commuting by ferryboat",
1341
+ concept: "Means of Transportation to Work",
1342
+ category: "transportation",
1343
+ group: "B08301",
1344
+ },
1345
+ {
1346
+ code: "B08301_016E",
1347
+ label: "Workers using taxi or ride-hailing services",
1348
+ concept: "Means of Transportation to Work",
1349
+ category: "transportation",
1350
+ group: "B08301",
1351
+ },
1352
+ {
1353
+ code: "B08301_017E",
1354
+ label: "Workers commuting by motorcycle",
1355
+ concept: "Means of Transportation to Work",
1356
+ category: "transportation",
1357
+ group: "B08301",
1358
+ },
1359
+ {
1360
+ code: "B08301_018E",
1361
+ label: "Workers commuting by bicycle",
1362
+ concept: "Means of Transportation to Work",
1363
+ category: "transportation",
1364
+ group: "B08301",
1365
+ },
1366
+ {
1367
+ code: "B08301_019E",
1368
+ label: "Workers who walked to work",
1369
+ concept: "Means of Transportation to Work",
1370
+ category: "transportation",
1371
+ group: "B08301",
1372
+ },
1373
+ {
1374
+ code: "B08301_020E",
1375
+ label: "Workers using other means of transportation",
1376
+ concept: "Means of Transportation to Work",
1377
+ category: "transportation",
1378
+ group: "B08301",
1379
+ },
1380
+ {
1381
+ code: "B08301_021E",
1382
+ label: "Workers who worked from home",
1383
+ concept: "Means of Transportation to Work",
1384
+ category: "transportation",
1385
+ group: "B08301",
1386
+ },
1387
+ // B08303 — Travel Time to Work (all 13)
1388
+ {
1389
+ code: "B08303_001E",
1390
+ label: "Total workers 16+ with a commute (travel time)",
1391
+ concept: "Travel Time to Work",
1392
+ category: "transportation",
1393
+ group: "B08303",
1394
+ },
1395
+ {
1396
+ code: "B08303_002E",
1397
+ label: "Workers with commute less than 5 minutes",
1398
+ concept: "Travel Time to Work",
1399
+ category: "transportation",
1400
+ group: "B08303",
1401
+ },
1402
+ {
1403
+ code: "B08303_003E",
1404
+ label: "Workers with commute 5 to 9 minutes",
1405
+ concept: "Travel Time to Work",
1406
+ category: "transportation",
1407
+ group: "B08303",
1408
+ },
1409
+ {
1410
+ code: "B08303_004E",
1411
+ label: "Workers with commute 10 to 14 minutes",
1412
+ concept: "Travel Time to Work",
1413
+ category: "transportation",
1414
+ group: "B08303",
1415
+ },
1416
+ {
1417
+ code: "B08303_005E",
1418
+ label: "Workers with commute 15 to 19 minutes",
1419
+ concept: "Travel Time to Work",
1420
+ category: "transportation",
1421
+ group: "B08303",
1422
+ },
1423
+ {
1424
+ code: "B08303_006E",
1425
+ label: "Workers with commute 20 to 24 minutes",
1426
+ concept: "Travel Time to Work",
1427
+ category: "transportation",
1428
+ group: "B08303",
1429
+ },
1430
+ {
1431
+ code: "B08303_007E",
1432
+ label: "Workers with commute 25 to 29 minutes",
1433
+ concept: "Travel Time to Work",
1434
+ category: "transportation",
1435
+ group: "B08303",
1436
+ },
1437
+ {
1438
+ code: "B08303_008E",
1439
+ label: "Workers with commute 30 to 34 minutes",
1440
+ concept: "Travel Time to Work",
1441
+ category: "transportation",
1442
+ group: "B08303",
1443
+ },
1444
+ {
1445
+ code: "B08303_009E",
1446
+ label: "Workers with commute 35 to 39 minutes",
1447
+ concept: "Travel Time to Work",
1448
+ category: "transportation",
1449
+ group: "B08303",
1450
+ },
1451
+ {
1452
+ code: "B08303_010E",
1453
+ label: "Workers with commute 40 to 44 minutes",
1454
+ concept: "Travel Time to Work",
1455
+ category: "transportation",
1456
+ group: "B08303",
1457
+ },
1458
+ {
1459
+ code: "B08303_011E",
1460
+ label: "Workers with commute 45 to 59 minutes",
1461
+ concept: "Travel Time to Work",
1462
+ category: "transportation",
1463
+ group: "B08303",
1464
+ },
1465
+ {
1466
+ code: "B08303_012E",
1467
+ label: "Workers with commute 60 to 89 minutes",
1468
+ concept: "Travel Time to Work",
1469
+ category: "transportation",
1470
+ group: "B08303",
1471
+ },
1472
+ {
1473
+ code: "B08303_013E",
1474
+ label: "Workers with commute 90 or more minutes",
1475
+ concept: "Travel Time to Work",
1476
+ category: "transportation",
1477
+ group: "B08303",
1478
+ },
1479
+ // ==========================================================================
1480
+ // HEALTH INSURANCE (B27001 — cherry-picked: totals + with/without per age)
1481
+ // ==========================================================================
1482
+ {
1483
+ code: "B27001_001E",
1484
+ label: "Total civilian noninstitutionalized population (health insurance)",
1485
+ concept: "Health Insurance Coverage Status by Sex by Age",
1486
+ category: "health_insurance",
1487
+ group: "B27001",
1488
+ },
1489
+ {
1490
+ code: "B27001_002E",
1491
+ label: "Total male population (health insurance)",
1492
+ concept: "Health Insurance Coverage Status by Sex by Age",
1493
+ category: "health_insurance",
1494
+ group: "B27001",
1495
+ },
1496
+ {
1497
+ code: "B27001_030E",
1498
+ label: "Total female population (health insurance)",
1499
+ concept: "Health Insurance Coverage Status by Sex by Age",
1500
+ category: "health_insurance",
1501
+ group: "B27001",
1502
+ },
1503
+ // Male age groups — total, with coverage, without coverage
1504
+ {
1505
+ code: "B27001_003E",
1506
+ label: "Males under 6 years (health insurance)",
1507
+ concept: "Health Insurance Coverage Status by Sex by Age",
1508
+ category: "health_insurance",
1509
+ group: "B27001",
1510
+ },
1511
+ {
1512
+ code: "B27001_004E",
1513
+ label: "Males under 6 years with health insurance coverage",
1514
+ concept: "Health Insurance Coverage Status by Sex by Age",
1515
+ category: "health_insurance",
1516
+ group: "B27001",
1517
+ },
1518
+ {
1519
+ code: "B27001_005E",
1520
+ label: "Males under 6 years with no health insurance coverage",
1521
+ concept: "Health Insurance Coverage Status by Sex by Age",
1522
+ category: "health_insurance",
1523
+ group: "B27001",
1524
+ },
1525
+ {
1526
+ code: "B27001_006E",
1527
+ label: "Males 6 to 18 years (health insurance)",
1528
+ concept: "Health Insurance Coverage Status by Sex by Age",
1529
+ category: "health_insurance",
1530
+ group: "B27001",
1531
+ },
1532
+ {
1533
+ code: "B27001_007E",
1534
+ label: "Males 6 to 18 years with health insurance coverage",
1535
+ concept: "Health Insurance Coverage Status by Sex by Age",
1536
+ category: "health_insurance",
1537
+ group: "B27001",
1538
+ },
1539
+ {
1540
+ code: "B27001_008E",
1541
+ label: "Males 6 to 18 years with no health insurance coverage",
1542
+ concept: "Health Insurance Coverage Status by Sex by Age",
1543
+ category: "health_insurance",
1544
+ group: "B27001",
1545
+ },
1546
+ {
1547
+ code: "B27001_009E",
1548
+ label: "Males 19 to 25 years (health insurance)",
1549
+ concept: "Health Insurance Coverage Status by Sex by Age",
1550
+ category: "health_insurance",
1551
+ group: "B27001",
1552
+ },
1553
+ {
1554
+ code: "B27001_010E",
1555
+ label: "Males 19 to 25 years with health insurance coverage",
1556
+ concept: "Health Insurance Coverage Status by Sex by Age",
1557
+ category: "health_insurance",
1558
+ group: "B27001",
1559
+ },
1560
+ {
1561
+ code: "B27001_011E",
1562
+ label: "Males 19 to 25 years with no health insurance coverage",
1563
+ concept: "Health Insurance Coverage Status by Sex by Age",
1564
+ category: "health_insurance",
1565
+ group: "B27001",
1566
+ },
1567
+ {
1568
+ code: "B27001_018E",
1569
+ label: "Males 45 to 54 years (health insurance)",
1570
+ concept: "Health Insurance Coverage Status by Sex by Age",
1571
+ category: "health_insurance",
1572
+ group: "B27001",
1573
+ },
1574
+ {
1575
+ code: "B27001_019E",
1576
+ label: "Males 45 to 54 years with health insurance coverage",
1577
+ concept: "Health Insurance Coverage Status by Sex by Age",
1578
+ category: "health_insurance",
1579
+ group: "B27001",
1580
+ },
1581
+ {
1582
+ code: "B27001_020E",
1583
+ label: "Males 45 to 54 years with no health insurance coverage",
1584
+ concept: "Health Insurance Coverage Status by Sex by Age",
1585
+ category: "health_insurance",
1586
+ group: "B27001",
1587
+ },
1588
+ {
1589
+ code: "B27001_021E",
1590
+ label: "Males 55 to 64 years (health insurance)",
1591
+ concept: "Health Insurance Coverage Status by Sex by Age",
1592
+ category: "health_insurance",
1593
+ group: "B27001",
1594
+ },
1595
+ {
1596
+ code: "B27001_022E",
1597
+ label: "Males 55 to 64 years with health insurance coverage",
1598
+ concept: "Health Insurance Coverage Status by Sex by Age",
1599
+ category: "health_insurance",
1600
+ group: "B27001",
1601
+ },
1602
+ {
1603
+ code: "B27001_023E",
1604
+ label: "Males 55 to 64 years with no health insurance coverage",
1605
+ concept: "Health Insurance Coverage Status by Sex by Age",
1606
+ category: "health_insurance",
1607
+ group: "B27001",
1608
+ },
1609
+ {
1610
+ code: "B27001_024E",
1611
+ label: "Males 65 to 74 years (health insurance)",
1612
+ concept: "Health Insurance Coverage Status by Sex by Age",
1613
+ category: "health_insurance",
1614
+ group: "B27001",
1615
+ },
1616
+ {
1617
+ code: "B27001_025E",
1618
+ label: "Males 65 to 74 years with health insurance coverage",
1619
+ concept: "Health Insurance Coverage Status by Sex by Age",
1620
+ category: "health_insurance",
1621
+ group: "B27001",
1622
+ },
1623
+ {
1624
+ code: "B27001_026E",
1625
+ label: "Males 65 to 74 years with no health insurance coverage",
1626
+ concept: "Health Insurance Coverage Status by Sex by Age",
1627
+ category: "health_insurance",
1628
+ group: "B27001",
1629
+ },
1630
+ {
1631
+ code: "B27001_027E",
1632
+ label: "Males 75 years and over (health insurance)",
1633
+ concept: "Health Insurance Coverage Status by Sex by Age",
1634
+ category: "health_insurance",
1635
+ group: "B27001",
1636
+ },
1637
+ {
1638
+ code: "B27001_028E",
1639
+ label: "Males 75 years and over with health insurance coverage",
1640
+ concept: "Health Insurance Coverage Status by Sex by Age",
1641
+ category: "health_insurance",
1642
+ group: "B27001",
1643
+ },
1644
+ {
1645
+ code: "B27001_029E",
1646
+ label: "Males 75 years and over with no health insurance coverage",
1647
+ concept: "Health Insurance Coverage Status by Sex by Age",
1648
+ category: "health_insurance",
1649
+ group: "B27001",
1650
+ },
1651
+ // Female age groups — total, with coverage, without coverage
1652
+ {
1653
+ code: "B27001_031E",
1654
+ label: "Females under 6 years (health insurance)",
1655
+ concept: "Health Insurance Coverage Status by Sex by Age",
1656
+ category: "health_insurance",
1657
+ group: "B27001",
1658
+ },
1659
+ {
1660
+ code: "B27001_032E",
1661
+ label: "Females under 6 years with health insurance coverage",
1662
+ concept: "Health Insurance Coverage Status by Sex by Age",
1663
+ category: "health_insurance",
1664
+ group: "B27001",
1665
+ },
1666
+ {
1667
+ code: "B27001_033E",
1668
+ label: "Females under 6 years with no health insurance coverage",
1669
+ concept: "Health Insurance Coverage Status by Sex by Age",
1670
+ category: "health_insurance",
1671
+ group: "B27001",
1672
+ },
1673
+ {
1674
+ code: "B27001_034E",
1675
+ label: "Females 6 to 18 years (health insurance)",
1676
+ concept: "Health Insurance Coverage Status by Sex by Age",
1677
+ category: "health_insurance",
1678
+ group: "B27001",
1679
+ },
1680
+ {
1681
+ code: "B27001_035E",
1682
+ label: "Females 6 to 18 years with health insurance coverage",
1683
+ concept: "Health Insurance Coverage Status by Sex by Age",
1684
+ category: "health_insurance",
1685
+ group: "B27001",
1686
+ },
1687
+ {
1688
+ code: "B27001_036E",
1689
+ label: "Females 6 to 18 years with no health insurance coverage",
1690
+ concept: "Health Insurance Coverage Status by Sex by Age",
1691
+ category: "health_insurance",
1692
+ group: "B27001",
1693
+ },
1694
+ {
1695
+ code: "B27001_037E",
1696
+ label: "Females 19 to 25 years (health insurance)",
1697
+ concept: "Health Insurance Coverage Status by Sex by Age",
1698
+ category: "health_insurance",
1699
+ group: "B27001",
1700
+ },
1701
+ {
1702
+ code: "B27001_038E",
1703
+ label: "Females 19 to 25 years with health insurance coverage",
1704
+ concept: "Health Insurance Coverage Status by Sex by Age",
1705
+ category: "health_insurance",
1706
+ group: "B27001",
1707
+ },
1708
+ {
1709
+ code: "B27001_039E",
1710
+ label: "Females 19 to 25 years with no health insurance coverage",
1711
+ concept: "Health Insurance Coverage Status by Sex by Age",
1712
+ category: "health_insurance",
1713
+ group: "B27001",
1714
+ },
1715
+ {
1716
+ code: "B27001_046E",
1717
+ label: "Females 45 to 54 years (health insurance)",
1718
+ concept: "Health Insurance Coverage Status by Sex by Age",
1719
+ category: "health_insurance",
1720
+ group: "B27001",
1721
+ },
1722
+ {
1723
+ code: "B27001_047E",
1724
+ label: "Females 45 to 54 years with health insurance coverage",
1725
+ concept: "Health Insurance Coverage Status by Sex by Age",
1726
+ category: "health_insurance",
1727
+ group: "B27001",
1728
+ },
1729
+ {
1730
+ code: "B27001_048E",
1731
+ label: "Females 45 to 54 years with no health insurance coverage",
1732
+ concept: "Health Insurance Coverage Status by Sex by Age",
1733
+ category: "health_insurance",
1734
+ group: "B27001",
1735
+ },
1736
+ {
1737
+ code: "B27001_049E",
1738
+ label: "Females 55 to 64 years (health insurance)",
1739
+ concept: "Health Insurance Coverage Status by Sex by Age",
1740
+ category: "health_insurance",
1741
+ group: "B27001",
1742
+ },
1743
+ {
1744
+ code: "B27001_050E",
1745
+ label: "Females 55 to 64 years with health insurance coverage",
1746
+ concept: "Health Insurance Coverage Status by Sex by Age",
1747
+ category: "health_insurance",
1748
+ group: "B27001",
1749
+ },
1750
+ {
1751
+ code: "B27001_051E",
1752
+ label: "Females 55 to 64 years with no health insurance coverage",
1753
+ concept: "Health Insurance Coverage Status by Sex by Age",
1754
+ category: "health_insurance",
1755
+ group: "B27001",
1756
+ },
1757
+ {
1758
+ code: "B27001_052E",
1759
+ label: "Females 65 to 74 years (health insurance)",
1760
+ concept: "Health Insurance Coverage Status by Sex by Age",
1761
+ category: "health_insurance",
1762
+ group: "B27001",
1763
+ },
1764
+ {
1765
+ code: "B27001_053E",
1766
+ label: "Females 65 to 74 years with health insurance coverage",
1767
+ concept: "Health Insurance Coverage Status by Sex by Age",
1768
+ category: "health_insurance",
1769
+ group: "B27001",
1770
+ },
1771
+ {
1772
+ code: "B27001_054E",
1773
+ label: "Females 65 to 74 years with no health insurance coverage",
1774
+ concept: "Health Insurance Coverage Status by Sex by Age",
1775
+ category: "health_insurance",
1776
+ group: "B27001",
1777
+ },
1778
+ {
1779
+ code: "B27001_055E",
1780
+ label: "Females 75 years and over (health insurance)",
1781
+ concept: "Health Insurance Coverage Status by Sex by Age",
1782
+ category: "health_insurance",
1783
+ group: "B27001",
1784
+ },
1785
+ {
1786
+ code: "B27001_056E",
1787
+ label: "Females 75 years and over with health insurance coverage",
1788
+ concept: "Health Insurance Coverage Status by Sex by Age",
1789
+ category: "health_insurance",
1790
+ group: "B27001",
1791
+ },
1792
+ {
1793
+ code: "B27001_057E",
1794
+ label: "Females 75 years and over with no health insurance coverage",
1795
+ concept: "Health Insurance Coverage Status by Sex by Age",
1796
+ category: "health_insurance",
1797
+ group: "B27001",
1798
+ },
1799
+ ];
1800
+ /**
1801
+ * All valid VariableCategory values.
1802
+ */
1803
+ export const VARIABLE_CATEGORIES = [
1804
+ "income",
1805
+ "poverty",
1806
+ "housing",
1807
+ "employment",
1808
+ "demographics",
1809
+ "education",
1810
+ "transportation",
1811
+ "health_insurance",
1812
+ ];
1813
+ /**
1814
+ * A small subset of variables used for smoke-test runs (--smoke flag).
1815
+ * Covers all 8 categories with 1-2 representative variables each.
1816
+ */
1817
+ export const SMOKE_TEST_VARIABLES = CENSUS_VARIABLES.filter((v) => [
1818
+ "B19013_001E", // median household income
1819
+ "B17001_002E", // population below poverty
1820
+ "B25077_001E", // median home value
1821
+ "B23025_005E", // unemployed
1822
+ "B01003_001E", // total population
1823
+ "B15003_022E", // bachelor's degree
1824
+ "B08301_003E", // drove alone
1825
+ "B27001_004E", // males under 6 with health insurance
1826
+ ].includes(v.code));
1827
+ //# sourceMappingURL=variables.js.map