forked from COOZI99/GardenMockups
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconstants.js
80 lines (79 loc) · 2.63 KB
/
constants.js
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
var medfiMap = {
IPL: [
{text: "Median Household Income"},
{text: "Income Below Poverty Level"},
{text: "Income At or Above Poverty Level"},
{text: "Per Capita Income"},
{text: "Ratio of Income to Poverty Level"},
{text: "Persons for whom income status has been determined"},
{text: "Low Income (less than 2x poverty level)"},
{text: "Percent Low Income (less than 2x poverty level)"}
],
EmpStatus: [
{text: "Employment Status"},
{text: "Total Employment Status by Disability STatus"}
],
EduStatus: [
{text: "Education Attainment Status"},
{text: "Less than High School Education"},
{text: "Pct. Less than High School Education"}
],
OccStatus: [
{text: "Median Earnings by Occupation"}
],
LangSpoken: [ // There are two other variables with really long names here
{text: "Linguistically Isolated"},
{text: "Pct. Linguistically Isolated"}
],
VotePop: [
{text: "Age Group"},
{text: "Education Attainment"},
{text: "Poverty Status"}
],
CompDevice: [
{text: "Type of Device"},
{text: "Internet Service"},
{text: "Age Group"},
{text: "Education Attainment"},
{text: "Employment Status"}
],
IntAccess: [
{text: "Type of Internet Subscription"},
{text: "With Computer"},
{text: "Without Computer"}
],
DisStatus: [
{text: "Healthcare Coverage Status"},
{text: "Age"},
{text: "Sex"},
{text: "Race"},
{text: "Disability status of grandparents with responsibility of <18 year old grandchildren"}
],
HouseType: [
{text: "Household Population"},
{text: "Group Quarters Population"},
{text: "Institutionalized Group Quarters"},
{text: "Households?"}
],
HouseUnits: [
{text: "Housing Units"},
{text: "Housing Units Build Prior to 1960"},
{text: "Pct. Housing Units Built Prior to 1960"}
],
Age: [
{text: "Age by Disability Status"},
{text: "Total Age by Disability Status by Poverty Status"},
{text: "Population Age 25 and Above"},
{text: "Under Age 5"},
{text: "Pct. Under Age 5"},
{text: "Over Age 64"},
{text: "Pct. Over Age 64"}
],
VetPop: [
{text: "Total Veteran status by age by disability for civilian population 18 years and over"}
],
MinPop: [
{text: "Minority Population"},
{text: "Pct. Minority Population "}
]
}