-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmake_pkg_theme11.py
65 lines (57 loc) · 2.04 KB
/
make_pkg_theme11.py
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import urllib2
import urllib
import json
import pprint
import ckan_api
from make_pkg import make_pkg
ind11_1 = {
"name" : "median-household-income",
"title" : "Median Household Income",
"groups" : [{"name" : "employment-opportunities"}],
"notes" : "Source: 2000 Decennial Census, 2005-2010 1-Year ACS Samples",
}
ind11_2 = {
"name" : "workforce",
"title" : "Workforce",
"groups" : [{"name" : "employment-opportunities"}],
"notes" : "Indicator: % population over 16 in workforce (same as labor force participation). Source: 2005-2010 1-Year ACS Samples",
}
ind11_3 = {
"name" : "poverty",
"title" : "Poverty",
"groups" : [{"name" : "employment-opportunities"}],
"notes" : "Indicator: % population below poverty level. Source: 2000 Decennial Census, 2005-2010 1-Year ACS Samples",
}
ind11_4 = {
"name" : "graduation",
"title" : "On-Time Graduation",
"groups" : [{"name" : "employment-opportunities"}],
"notes" : "Indicator: ACPS High School Graduation Rate. Source: Alexandria City Public Schools",
}
ind11_5 = {
"name" : "unemployment",
"title" : "Unemployment",
"groups" : [{"name" : "employment-opportunities"}],
"notes" : "Indicator: Unemployment at local level. Source: Bureau of Labor Statistics",
}
ind11_6 = {
"name" : "hs-diploma",
"title" : "High School Diploma",
"groups" : [{"name" : "employment-opportunities"}],
"notes" : "Indicator: % adults aged 25 and older with a high school diploma or GED. Source: 2000 Decennial Census, 2005-2010 1-Year ACS Samples",
}
ind11_7 = {
"name" : "retail-occupancy",
"title" : "Retail Occupancy",
"groups" : [{"name" : "employment-opportunities"}],
"notes" : "Indicator: % Retail Occupancy. Source: Alexandria Economic Development Partnership. Contact: Christina Mindrup Robinson, Alexandria Economic Development Partnership, [email protected]",
}
make_pkg(ind11_1)
make_pkg(ind11_2)
make_pkg(ind11_3)
make_pkg(ind11_4)
make_pkg(ind11_5)
make_pkg(ind11_6)
make_pkg(ind11_7)