Event records writer
DeathsRecord
Bases: EventRecord
Source code in june/records/event_records_writer.py
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 |
|
accumulate(location_spec, location_id, dead_person_id)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
location_spec
|
|
required | |
location_id
|
|
required | |
dead_person_id
|
|
required |
Source code in june/records/event_records_writer.py
197 198 199 200 201 202 203 204 205 206 207 208 |
|
DischargesRecord
Bases: EventRecord
Source code in june/records/event_records_writer.py
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
|
accumulate(hospital_id, patient_id)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
hospital_id
|
|
required | |
patient_id
|
|
required |
Source code in june/records/event_records_writer.py
174 175 176 177 178 179 180 181 182 183 |
|
EventRecord
Source code in june/records/event_records_writer.py
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 |
|
number_of_events
property
accumulate()
Source code in june/records/event_records_writer.py
44 45 46 |
|
record(hdf5_file, timestamp)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
hdf5_file
|
|
required | |
timestamp
|
str
|
|
required |
Source code in june/records/event_records_writer.py
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 |
|
HospitalAdmissionsRecord
Bases: EventRecord
Source code in june/records/event_records_writer.py
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
|
accumulate(hospital_id, patient_id)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
hospital_id
|
|
required | |
patient_id
|
|
required |
Source code in june/records/event_records_writer.py
128 129 130 131 132 133 134 135 136 137 |
|
ICUAdmissionsRecord
Bases: EventRecord
Source code in june/records/event_records_writer.py
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
|
accumulate(hospital_id, patient_id)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
hospital_id
|
|
required | |
patient_id
|
|
required |
Source code in june/records/event_records_writer.py
151 152 153 154 155 156 157 158 159 160 |
|
InfectionRecord
Bases: EventRecord
Source code in june/records/event_records_writer.py
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
|
accumulate(location_spec, location_id, region_name, infector_ids, infected_ids, infection_ids)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
location_spec
|
|
required | |
location_id
|
|
required | |
region_name
|
|
required | |
infector_ids
|
|
required | |
infected_ids
|
|
required | |
infection_ids
|
|
required |
Source code in june/records/event_records_writer.py
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
|
RecoveriesRecord
Bases: EventRecord
Source code in june/records/event_records_writer.py
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 |
|
accumulate(recovered_person_id, infection_id)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
recovered_person_id
|
|
required | |
infection_id
|
|
required |
Source code in june/records/event_records_writer.py
222 223 224 225 226 227 228 229 230 231 |
|
SymptomsRecord
Bases: EventRecord
Source code in june/records/event_records_writer.py
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 |
|
accumulate(infected_id, symptoms, infection_id)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
infected_id
|
|
required | |
symptoms
|
|
required | |
infection_id
|
|
required |
Source code in june/records/event_records_writer.py
245 246 247 248 249 250 251 252 253 254 255 256 |
|
VaccinesRecord
Bases: EventRecord
Source code in june/records/event_records_writer.py
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 |
|
accumulate(vaccinated_id, vaccine_name, dose_number)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
vaccinated_id
|
|
required | |
vaccine_name
|
|
required | |
dose_number
|
|
required |
Source code in june/records/event_records_writer.py
270 271 272 273 274 275 276 277 278 279 280 281 |
|