-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.py
More file actions
56 lines (52 loc) · 1.79 KB
/
settings.py
File metadata and controls
56 lines (52 loc) · 1.79 KB
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
power = ['Individual', 'Team', 'Director', 'Enterprise', ]
management_levels = [
'Individual',
'Senior Individual',
'Team',
'Senior Team',
'Director',
'Senior Director',
'Enterprise',
'Senior Enterprise',
]
internal_cost_centers = ['Facilities', 'Experience', 'Talent', 'Enterprise', 'Legal', 'Technology',
'Marketing', 'Finance', 'BD', 'Global']
email_col = 'Email - Work'
level_col = 'Management Level'
cost_center_col = 'Cost Center'
identifiers = ['Employee Id', 'Worker', email_col, 'Preferred Name', ]
biz_details = [
# 'businessTitle', 'Position', # businessTitle == Position?? - nope some diff
'Active Status',
'Cost Center',
# 'Job Profile',
'Job Family',
'Craft Cohort',
'Domain',
'On Leave',
'Management Level',
'Time Type',
'Worker Type',
'Hire Date',
'Region',
'Location'
]
# BASED ON PAGE
general_section = ['Job Family', 'Time Type', 'Worker Type', 'Craft Cohort', 'Domain',]
level_section = ['Management Level', 'level_group', 'tenure_in_yrs', 'cost_center_type']
location_section = ['Location', 'studio', 'Region', 'region_simplified']
true_region_mapping = {
'NA': ['Remote', 'Lion', 'Cambridge', 'Chicago', 'San Francisco'],
'Asia': ['Tokyo', 'Shanghai', 'Singapore'],
'Europe': ['Munich', 'London'],
}
studio_details = {
'Cambridge': {'lat': 42.3668233, 'long': -71.1060706},
'Chicago': {'lat': 41.883718, 'long': -87.632382},
'San Francisco': {'lat': 37.73288916682891, 'long': -122.5024402141571},
'London': {'lat': 51.5033466, 'long': -0.0793965},
'Munich': {'lat': 48.1379879, 'long': 11.575182},
'Shanghai': {'lat': 31.2203102, 'long': 121.4623931},
'Singapore': {'lat': 1.351616, 'long': 103.808053},
'Tokyo': {'lat': 35.689506, 'long': 139.6917},
}