-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.gs
More file actions
68 lines (63 loc) · 1.83 KB
/
Copy pathvariables.gs
File metadata and controls
68 lines (63 loc) · 1.83 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
57
58
59
60
61
62
63
64
65
66
67
const SERVICE_ACCOUNT_EMAIL = 'score-reports@sat-score-reports.iam.gserviceaccount.com';
const ADMIN_EMAIL = PropertiesService.getScriptProperties().getProperty('adminEmail');
const TEMPLATE_SHEETS_SS_ID = PropertiesService.getScriptProperties().getProperty('templateSheetsSsId');
const ACT_MASTER_DATA_SS_ID = PropertiesService.getScriptProperties().getProperty('actMasterDataSsId');
const RW_SCORE_LOOKUP = "=XLOOKUP($A$2&$A$3,'Rev sheet backend'!$T$71:$T$100,'Rev sheet backend'!U$71:U$100,)";
const MATH_SCORE_LOOKUP = "=XLOOKUP($A$2&$A$3,'Rev sheet backend'!$T$71:$T$100,'Rev sheet backend'!V$71:V$100,)";
dataLatestDate = '08/2025';
isUpdateAvailable = false;
areNewSatTestsAvailable = true;
isActSyncAvailable = false;
cats = [
'Area and volume',
'Boundaries',
'Central ideas and details',
'Circles',
'Command of evidence',
'Cross-text connections',
'Distributions',
'Equivalent expressions',
'Form, structure, and sense',
'Inferences',
'Linear equations in one variable',
'Linear equations in two variables',
'Linear functions',
'Linear inequalities',
'Lines, angles, and triangles',
'Models and scatterplots',
'Nonlinear equations and systems',
'Nonlinear functions',
'Observational studies and experiments',
'Percentages',
'Probability',
'Ratios, rates, proportions, and units',
'Systems of linear equations',
'Right triangles and trigonometry',
'Sample statistics and margin of error',
'Words in context',
'Transitions',
'Rhetorical synthesis',
'Text, structure, and purpose',
];
const satSsIds = {
admin: null,
student: null,
studentData: null,
adminData: null,
};
const actSsIds = {
admin: null,
student: null,
studentData: null,
adminData: null,
};
const subjectData = [
{
'name': 'Reading & Writing',
'rowOffset': 7,
},
{
'name': 'Math',
'rowOffset': 10
}
]