-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew_E_total_vacc_by_household_income.xml
84 lines (82 loc) · 4.5 KB
/
new_E_total_vacc_by_household_income.xml
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
81
82
83
84
<?xml version="1.0" encoding="UTF-8"?>
<!-- User Request: Show me the number of people infected and number of people vaccinated
for the whole simulation by household median income. -->
<!-- Note: This requires 2 messages as we are counting two different "things." -->
<apollo:SimulatorCountOutputSpecificationListElement
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://types.apollo.pitt.edu/v4_0/ apollo_types_4.0.xsd"
xmlns:apollo="http://types.apollo.pitt.edu/v4_0/">
<!-- Message 1, getting human counts -->
<apollo:SimulatorCountOutputSpecification>
<apollo:speciesToCount>9606</apollo:speciesToCount>
<apollo:temporalGranularity>entireSimulation</apollo:temporalGranularity>
<apollo:spatialGranularity>none</apollo:spatialGranularity>
<apollo:infectionStates>newly_sick</apollo:infectionStates>
<apollo:otherVariables>
<apollo:variable>householdMedianIncome</apollo:variable>
<apollo:categories xsi:type="apollo:MeasuredQuantityRangeCategoryDefinition">
<apollo:unitOfMeasure>dollars</apollo:unitOfMeasure>
<apollo:lowerBound>
<apollo:infiniteBoundary>negativeInfinity</apollo:infiniteBoundary>
</apollo:lowerBound>
<apollo:upperBound>
<apollo:finiteBoundary>20000</apollo:finiteBoundary>
</apollo:upperBound>
</apollo:categories>
<apollo:categories xsi:type="apollo:MeasuredQuantityRangeCategoryDefinition">
<apollo:unitOfMeasure>dollars</apollo:unitOfMeasure>
<apollo:lowerBound>
<apollo:finiteBoundary>20000</apollo:finiteBoundary>
</apollo:lowerBound>
<apollo:upperBound>
<apollo:finiteBoundary>40000</apollo:finiteBoundary>
</apollo:upperBound>
</apollo:categories>
<apollo:categories xsi:type="apollo:MeasuredQuantityRangeCategoryDefinition">
<apollo:unitOfMeasure>dollars</apollo:unitOfMeasure>
<apollo:lowerBound>
<apollo:finiteBoundary>40000</apollo:finiteBoundary>
</apollo:lowerBound>
<apollo:upperBound>
<apollo:infiniteBoundary>positiveInfinity</apollo:infiniteBoundary>
</apollo:upperBound>
</apollo:categories>
</apollo:otherVariables>
</apollo:SimulatorCountOutputSpecification>
<!-- Message 2, getting vaccine counts -->
<apollo:SimulatorCountOutputSpecification>
<apollo:thingsToCount>vaccinations</apollo:thingsToCount>
<apollo:temporalGranularity>entireSimulation</apollo:temporalGranularity>
<apollo:spatialGranularity>none</apollo:spatialGranularity>
<apollo:otherVariables>
<apollo:variable>householdMedianIncome</apollo:variable>
<apollo:categories xsi:type="apollo:MeasuredQuantityRangeCategoryDefinition">
<apollo:unitOfMeasure>dollars</apollo:unitOfMeasure>
<apollo:lowerBound>
<apollo:infiniteBoundary>negativeInfinity</apollo:infiniteBoundary>
</apollo:lowerBound>
<apollo:upperBound>
<apollo:finiteBoundary>20000</apollo:finiteBoundary>
</apollo:upperBound>
</apollo:categories>
<apollo:categories xsi:type="apollo:MeasuredQuantityRangeCategoryDefinition">
<apollo:unitOfMeasure>dollars</apollo:unitOfMeasure>
<apollo:lowerBound>
<apollo:finiteBoundary>20000</apollo:finiteBoundary>
</apollo:lowerBound>
<apollo:upperBound>
<apollo:finiteBoundary>40000</apollo:finiteBoundary>
</apollo:upperBound>
</apollo:categories>
<apollo:categories xsi:type="apollo:MeasuredQuantityRangeCategoryDefinition">
<apollo:unitOfMeasure>dollars</apollo:unitOfMeasure>
<apollo:lowerBound>
<apollo:finiteBoundary>40000</apollo:finiteBoundary>
</apollo:lowerBound>
<apollo:upperBound>
<apollo:infiniteBoundary>positiveInfinity</apollo:infiniteBoundary>
</apollo:upperBound>
</apollo:categories>
</apollo:otherVariables>
</apollo:SimulatorCountOutputSpecification>
</apollo:SimulatorCountOutputSpecificationListElement>