-
Notifications
You must be signed in to change notification settings - Fork 1
/
header_mapping.py
executable file
·1465 lines (1432 loc) · 57.1 KB
/
header_mapping.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
66
67
68
69
70
71
72
73
74
75
76
77
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python3
class HeaderMapping(object):
"""Instantiate with either "HOS" or "LTC" to get header utils for each type
of CSV."""
def __init__(self, mapping_type):
if mapping_type == "HOS":
self.mapping = hos_mapping
elif mapping_type == "LTC":
self.mapping = ltc_mapping
else:
raise ValueError("HeaderMapping() requires positional argument 'HOS' or 'LTC'")
def get_fieldname_lookup(self):
"""This lookup has aliases as keys and their corresponding short
fieldnames as values."""
lookup = {}
for k, v in self.mapping.items():
for alias in v:
lookup[alias] = k
return lookup
def get_alias_lookup(self):
"""This lookup has short fieldnames as keys and their preferred aliases
as values. Preferred alias is the first in the list in hos_mapping."""
lookup = {}
for k, v in self.mapping.items():
lookup[k] = v[0]
return lookup
def get_aliases(self):
"""This is a list of all valid aliases. Most useful for testing."""
values = []
for v in self.mapping.values():
values += v['aliases']
return values
def get_fieldnames(self):
"""This is a list of all valid short fieldnames. Most useful for testing."""
return list(self.mapping.keys())
def get_fieldnames_and_aliases(self):
"""Creates one big list of all fieldnames and all aliases."""
return self.get_fieldnames() + self.get_aliases()
def get_master_lookup(self):
"""This lookup has keys for all long names AND all short names. Each key
corresponds to the proper short name. Allows a single point of entry for
any header name."""
lookup = {}
for k, v in self.mapping.items():
lookup[k] = k
for alias in v['aliases']:
lookup[alias] = k
return lookup
def get_public_column_names(self):
"""returns the names of all columns in the mapping that have been marked
'public' = True"""
cols = list()
for k, v in self.mapping.items():
if v.get("public", False) is True:
cols.append(k)
return cols
def get_hos_supplies_mapping(self):
supplies_mapping = {
'supplies_headers': {
"3": "Less Than 3 Days",
"14": "4 to 14 Days",
"15": "15 or More Days"
},
'supplies_sum_columns': {
"N95": {
"3": "n95masksupply3less",
"14": "n95masksupply414",
"15": "n95masksupply>=15",
},
"PPE": {
"3": "ppeutil3less",
"14": "ppeutil414",
"15": "ppeutil>=15",
},
"NP Specimen Collection Supplies": {
"3": "nputil3less",
"14": "nputil414",
"15": "nputil>=15",
}
}
}
return supplies_mapping
ltc_mapping = {}
hos_mapping = {
'hospitalname': {
'aliases': [
'HospitalName',
'hospitalName',
],
'public': True,
},
'hospitalstreetaddress': {
'aliases': [
'HospitalStreetAddress',
'hospitalStreetAddress',
],
'public': True,
},
'hospitalcity': {
'aliases': [
'HospitalCity',
'hospitalCity',
],
'public': True,
},
'hospitalstate': {
'aliases': [
'HospitalState',
'hospitalState',
],
'public': True,
},
'hospitalzip': {
'aliases': [
'HospitalZip',
'hospitalZip',
],
'public': True,
},
'hospitallatitude': {
'aliases': [
'HospitalLatitude',
'hospitalLatitude',
],
'public': True,
},
'hospitallongitude': {
'aliases': [
'HospitalLongitude',
'hospitalLongitude',
],
'public': True,
},
'numicubeds': {
'aliases': [
'Available Beds-Adult Intensive Care Unit (ICU) Staffed Beds',
],
'public': True,
},
'icuavail': {
'aliases': [
'Available Beds-Adult Intensive Care Unit (ICU) Current Available',
],
'public': True,
},
'icu24h': {
'aliases': [
'Available Beds-Adult Intensive Care Unit (ICU) 24hr Beds',
],
'public': True,
},
'icu72h': {
'aliases': [
'Available Beds-Adult Intensive Care Unit (ICU) 72hr Beds',
],
'public': True,
},
'medsurgstaff': {
'aliases': [
'Available Beds-Medical and Surgical (Med/Surg) Staffed Beds',
],
'public': True,
},
'medsurgavail': {
'aliases': [
'Available Beds-Medical and Surgical (Med/Surg) Current Available',
],
'public': True,
},
'medsurg24h': {
'aliases': [
'Available Beds-Medical and Surgical (Med/Surg) 24hr Beds',
],
'public': True,
},
'medsurg72h': {
'aliases': [
'Available Beds-Medical and Surgical (Med/Surg) 72hr Beds',
],
'public': True,
},
'burnstaff': {
'aliases': [
'Available Beds-Burn Staffed Beds',
],
},
'burnavail': {
'aliases': [
'Available Beds-Burn Current Available',
],
},
'burn24h': {
'aliases': [
'Available Beds-Burn 24hr Beds',
],
},
'burn72h': {
'aliases': [
'Available Beds-Burn 72hr Beds',
],
},
'picstaff': {
'aliases': [
'Available Beds-Pediatric Intensive Care Staffed Beds',
],
'public': True,
},
'picavail': {
'aliases': [
'Available Beds-Pediatric Intensive Care Current Available',
],
'public': True,
},
'pic24h': {
'aliases': [
'Available Beds-Pediatric Intensive Care 24hr Beds',
],
'public': True,
},
'pic72h': {
'aliases': [
'Available Beds-Pediatric Intensive Care 72hr Beds',
],
'public': True,
},
'pedstaff': {
'aliases': [
'Available Beds-Pediatric Staffed Beds',
],
'public': True,
},
'pedavail': {
'aliases': [
'Available Beds-Pediatric Current Available',
],
'public': True,
},
'ped24h': {
'aliases': [
'Available Beds-Pediatric 24hr Beds',
],
'public': True,
},
'ped72h': {
'aliases': [
'Available Beds-Pediatric 72hr Beds',
],
'public': True,
},
'nicustaff': {
'aliases': [
'Available Beds-Neonatal Staffed Beds',
],
},
'nicuavail': {
'aliases': [
'Available Beds-Neonatal Current Available',
],
},
'nicu24h': {
'aliases': [
'Available Beds-Neonatal 24hr Beds',
],
},
'nicu72h': {
'aliases': [
'Available Beds-Neonatal 72hr Beds',
],
},
'rehabstaff': {
'aliases': [
'Available Beds-Inpatient Rehab Staffed Beds',
],
},
'rehabavail': {
'aliases': [
'Available Beds-Inpatient Rehab Current Available',
],
},
'rehab24h': {
'aliases': [
'Available Beds-Inpatient Rehab 24hr Beds',
],
},
'rehab72h': {
'aliases': [
'Available Beds-Inpatient Rehab 72hr Beds',
],
},
'psychstaff': {
'aliases': [
'Psych Beds-Psychiatric Staffed Beds',
],
},
'psychavail': {
'aliases': [
'Psych Beds-Psychiatric Current Available',
],
},
'psych24h': {
'aliases': [
'Psych Beds-Psychiatric 24hr Beds',
],
},
'psych72h': {
'aliases': [
'Psych Beds-Psychiatric 72hr Beds',
],
},
'psychadultstaff': {
'aliases': [
'Psych Beds-Adult Staffed Beds',
],
},
'psychadultavail': {
'aliases': [
'Psych Beds-Adult Current Available',
],
},
'psychadult24h': {
'aliases': [
'Psych Beds-Adult 24hr Beds',
],
},
'psychadult72h': {
'aliases': [
'Psych Beds-Adult 72hr Beds',
],
},
'psychadolstaff': {
'aliases': [
'Psych Beds-Adolescent Staffed Beds',
],
},
'psychadolavail': {
'aliases': [
'Psych Beds-Adolescent Current Available',
],
},
'psychadol24h': {
'aliases': [
'Psych Beds-Adolescent 24hr Beds',
],
},
'psychadol72h': {
'aliases': [
'Psych Beds-Adolescent 72hr Beds',
],
},
'psychgeristaff': {
'aliases': [
'Psych Beds-Geriatric Staffed Beds',
],
},
'psychgeriavail': {
'aliases': [
'Psych Beds-Geriatric Current Available',
],
},
'psychgeri24h': {
'aliases': [
'Psych Beds-Geriatric 24hr Beds',
],
},
'psychgeri72h': {
'aliases': [
'Psych Beds-Geriatric 72hr Beds',
],
},
'psychmeddetoxstaff': {
'aliases': [
'Psych Beds-Medical Detox Staffed Beds',
],
},
'psychmeddetoxavail': {
'aliases': [
'Psych Beds-Medical Detox Current Available',
],
},
'psychmeddetox24h': {
'aliases': [
'Psych Beds-Medical Detox 24hr Beds',
],
},
'psychmeddetox72h': {
'aliases': [
'Psych Beds-Medical Detox 72hr Beds',
],
},
'psychsaddstaff': {
'aliases': [
'Psych Beds-Substance Abuse (Dual Diagnosis) Staffed Beds',
],
},
'psychsaddavail': {
'aliases': [
'Psych Beds-Substance Abuse (Dual Diagnosis) Current Available',
],
},
'psychsadd24h': {
'aliases': [
'Psych Beds-Substance Abuse (Dual Diagnosis) 24hr Beds',
],
},
'psychsadd72h': {
'aliases': [
'Psych Beds-Substance Abuse (Dual Diagnosis) 72hr Beds',
],
},
'labordelivstaff': {
'aliases': [
'Other Beds-Labor / Delivery Staffed Beds',
],
},
'labordelivavail': {
'aliases': [
'Other Beds-Labor / Delivery Current Available',
],
},
'labordeliv24h': {
'aliases': [
'Other Beds-Labor / Delivery 24hr Beds',
],
},
'labordeliv72h': {
'aliases': [
'Other Beds-Labor / Delivery 72hr Beds',
],
},
'maternitystaff': {
'aliases': [
'Other Beds-Maternity / Newborn Nursery Staffed Beds',
],
},
'maternityavail': {
'aliases': [
'Other Beds-Maternity / Newborn Nursery Current Available',
],
},
'maternity24h': {
'aliases': [
'Other Beds-Maternity / Newborn Nursery 24hr Beds',
],
},
'maternity72h': {
'aliases': [
'Other Beds-Maternity / Newborn Nursery 72hr Beds',
],
},
'aiistaff': {
'aliases': [
'Other Beds-Airborne Infection Isolation Staffed Beds',
],
'public': True,
},
'aiiavail': {
'aliases': [
'Other Beds-Airborne Infection Isolation Current Available',
],
'public': True,
},
'aii24h': {
'aliases': [
'Other Beds-Airborne Infection Isolation 24hr Beds',
],
'public': True,
},
'aii72h': {
'aliases': [
'Other Beds-Airborne Infection Isolation 72hr Beds',
],
'public': True,
},
'edimmediate': {
'aliases': [
'Emergency Department-ED Available Capacity Immediate',
],
},
'eddelayed': {
'aliases': [
'Emergency Department-ED Available Capacity Delayed',
],
},
'edminor': {
'aliases': [
'Emergency Department-ED Available Capacity Minor',
],
},
'eddeceased': {
'aliases': [
'Emergency Department-ED Available Capacity Deceased',
],
},
'noncvd19pntadmit': {
'aliases': [
'Admission Data-Number of Patients awaiting admission Non COVID-19 Response ?',
'Admission Data-Number of Patients awaiting admission Response ?',
],
},
'cvd19pntadmitnonvent': {
'aliases': [
'Admission Data-Number of Patients awaiting admission with Confirmed or PUI COVID-19 non-ventilated Response ?',
'Admission Data-Number of Patients awaiting admission with Confirmed or PUI COVID19 non-ventilated Response ?',
],
},
'cvd19pntadmitnvent': {
'aliases': [
'Admission Data-Number of Patients awaiting admission for Confirmed or PUI COVID-19 on ventilator Response ?',
'Admission Data-Number of Patients awaiting admission for Confirmed or PUI COVID 19 on ventilator Response ?',
],
},
'pntadmiticu': {
'aliases': [
'Admission Data-Number of Patients awaiting ICU Bed Response ?',
],
},
'pntdischrg': {
'aliases': [
'Admission Data-Number of Patients awaiting discharge placement Response ?',
],
},
'facrespplan': {
'aliases': [
'EEIs-Does your facility have an established respiratory protection plan? Response ?',
],
},
'n95fittested': {
'aliases': [
'EEIs-Is your facility planning to use N95 masks. If so is your staff fit-tested to wear N95 masks? Response ?',
],
},
'modelsfittested': {
'aliases': [
'EEIs-What mask brands and models are staff fit tested to use? Response ?',
],
},
'paprtrained': {
'aliases': [
'EEIs-Is your facility planning to use PAPRs. If so is your staff trained to use PAPRs? Response ?',
],
},
'ppedondoff': {
'aliases': [
'EEIs-Is your staff adequately trained in correctly donning and doffing of PPE? Response ?',
],
},
'needsanitizer': {
'aliases': [
'Is there an immediate need for hand hygiene/disinfection supplies listed below?-Alcohol Based Hand Sanitizer Response ?',
],
},
'needhandsoap': {
'aliases': [
'Is there an immediate need for hand hygiene/disinfection supplies listed below?-Hand Soap Response ?',
],
},
'needsolution': {
'aliases': [
'Is there an immediate need for hand hygiene/disinfection supplies listed below?-Disinfection Solutions Response ?',
],
},
'needwipes': {
'aliases': [
'Is there an immediate need for hand hygiene/disinfection supplies listed below?-Disinfection Wipes Response ?',
],
},
'needgloves': {
'aliases': [
'Is there an immediate need for hand hygiene/disinfection supplies listed below?-Gloves Response ?',
],
},
'needother1': {
'aliases': [
'Is there an immediate need for hand hygiene/disinfection supplies listed below?-Other (please specify) Response ?',
],
},
'needn95': {
'aliases': [
"Does your facility anticipate material/supply shortages of the following?-N95's Response ?",
],
},
'needpapr': {
'aliases': [
"Does your facility anticipate material/supply shortages of the following?-PAPR's Response ?",
],
},
'needpaprhoods': {
'aliases': [
"Does your facility anticipate material/supply shortages of the following?-PAPR's Hoods Response ?",
],
},
'needpaprfilters': {
'aliases': [
"Does your facility anticipate material/supply shortages of the following?-PAPR's Filters Response ?",
],
},
'needmasks': {
'aliases': [
'Does your facility anticipate material/supply shortages of the following?-Facial Masks (Procedural/Surgical) Response ?',
],
},
'needgown': {
'aliases': [
'Does your facility anticipate material/supply shortages of the following?-Gown/Apron Response ?',
],
},
'needeyepro': {
'aliases': [
'Does your facility anticipate material/supply shortages of the following?-Eye Protection (Goggles Face shield) Response ?',
],
},
'needcleaning': {
'aliases': [
'Does your facility anticipate material/supply shortages of the following?-Cleaning/Disinfection Supplies Response ?',
],
},
'needother2': {
'aliases': [
'Does your facility anticipate material/supply shortages of the following?-Other (please specify) Response ?',
],
},
'shortn95': {
'aliases': [
"If you have a COVID-19 resident(s) Do you anticipate shortages of the below:-N95's Response ?",
],
},
'shortpapr': {
'aliases': [
"If you have a COVID-19 resident(s) Do you anticipate shortages of the below:-PAPR's Response ?",
],
},
'shortpaprhoods': {
'aliases': [
"If you have a COVID-19 resident(s) Do you anticipate shortages of the below:-PAPR's Hoods Response ?",
],
},
'shortpaprfilters': {
'aliases': [
"If you have a COVID-19 resident(s) Do you anticipate shortages of the below:-PAPR's Filters Response ?",
],
},
'shortmasks': {
'aliases': [
'If you have a COVID-19 resident(s) Do you anticipate shortages of the below:-Facial Masks (Procedural/Surgical) Response ?',
],
},
'shortgowns': {
'aliases': [
'If you have a COVID-19 resident(s) Do you anticipate shortages of the below:-Gowns Response ?',
],
},
'shorteyepro': {
'aliases': [
'If you have a COVID-19 resident(s) Do you anticipate shortages of the below:-Eye Protection (Goggles Face shield) Response ?',
],
},
'shortsoap': {
'aliases': [
'If you have a COVID-19 resident(s) Do you anticipate shortages of the below:-Hand Soap Response ?',
],
},
'shortsanitizer': {
'aliases': [
'If you have a COVID-19 resident(s) Do you anticipate shortages of the below:-Hand Sanitizer Response ?',
],
},
'shortcleaning': {
'aliases': [
'If you have a COVID-19 resident(s) Do you anticipate shortages of the below:-Cleaning/Disinfection Supplies Response ?',
],
},
'shortother1': {
'aliases': [
'If you have a COVID-19 resident(s) Do you anticipate shortages of the below:-Other (please specify) Response ?',
],
},
'burnn95': {
'aliases': [
"Current Burn Rates per day for the following PPE (Single Units):-N95's Response ?",
],
},
'burnpapr': {
'aliases': [
"Current Burn Rates per day for the following PPE (Single Units):-PAPR's Response ?",
],
},
'burnpaprhoods': {
'aliases': [
"Current Burn Rates per day for the following PPE (Single Units):-PAPR's Hoods Response ?",
],
},
'burnpaprfilter': {
'aliases': [
"Current Burn Rates per day for the following PPE (Single Units):-PAPR's Filters Response ?",
],
},
'burnmask': {
'aliases': [
'Current Burn Rates per day for the following PPE (Single Units):-Facial Masks (Procedural/Surgical) Response ?',
],
},
'burngowns': {
'aliases': [
'Current Burn Rates per day for the following PPE (Single Units):-Gowns Response ?',
],
},
'burneyepro': {
'aliases': [
'Current Burn Rates per day for the following PPE (Single Units):-Eye Protection (Goggles Face shield) Response ?',
],
},
'shortcollection': {
'aliases': [
'Testing Supplies-What diagnostic testing or specimen collection supplies do you anticipate a shortage of? ',
],
},
'shortother2': {
'aliases': [
'Testing Supplies-Other (please specify) ',
],
},
'testlocal': {
'aliases': [
'Local Testing-Do you have a commercial or inhouse platform for performing local testing of COVID-19? ',
],
},
'date': {
'aliases': [
'Local Testing-Real or future go-live date: ',
],
},
'cvd19tstrun': {
'aliases': [
'Local Testing-How many COVID-19 tests were run at your inhouse lab today? ',
'How many COVID-19 tests were run at your inhouse lab today? ',
],
},
'cvd19tstpostve': {
'aliases': [
'Local Testing-How many of those inhouse tests were positive? ',
'How many of those inhouse tests were positive? ',
],
},
'numc19hosppats': {
'aliases': [
'COVID-19 Patient Counts-Total number of inpatients diagnosed with COVID-19: ',
'COVID-19 Patient Counts-Total number of inpatients diagnosed with COVID-19:',
],
'public': True,
},
'ttlcvd19pui': {
'aliases': [
'COVID-19 Patient Counts-Total number of inpatients under suspicion for COVID-19 (PUI): ',
'COVID-19 Patient Counts-Total number of inpatients under suspicion for COVID-19 (PUI):',
],
'public': True,
},
'ttlnumicubedscvd19': {
'aliases': [
'COVID-19 Patient Counts - Total number of ICU beds occupied by a diagnosed COVID-19 patient:',
'COVID-19 Patient Counts-Total number of ICU beds occupied by a diagnosed COVID-19 patient: ',
'COVID-19 Patient Counts-Total number of ICU beds occupied by a diagnosed COVID-19 patient:',
],
},
'cvdnumc19hopats': {
'aliases': [
'COVID-19 Patient Counts-Total number of inpatients admitted 14+ days for other conditions now PUI or confirmed COVID-19?: ',
'COVID-19 Patient Counts-Total number of inpatients admitted 14+ days for other conditions now PUI or confirmed COVID-19?:',
],
},
'numc19mechventpats': {
'aliases': [
'COVID-19 Patient Counts-Total number of inpatients diagnosed with COVID-19 on ventilators: ',
'COVID-19 Patient Counts-Total number of patients diagnosed with COVID-19 on ventilators: ',
'COVID-19 Patient Counts-Total number of patients diagnosed with COVID-19 on ventilators:',
],
'public': True,
},
'ttlcvd19ptntecmo': {
'aliases': [
'COVID-19 Patient Counts-Total number of inpatients diagnosed with COVID-19 on ECMO: ',
'COVID-19 Patient Counts-Total number of patients diagnosed with COVID-19 on ECMO: ',
'COVID-19 Patient Counts-Total number of patients diagnosed with COVID-19 on ECMO:',
],
'public': True,
},
'ttlaiied': {
'aliases': [
'COVID-19 Patient Counts-How many airborne infection isolation rooms are in your ED? ',
'COVID-19 Patient Counts-How many airborne infection isolation rooms are in your ED?',
],
'public': True,
},
'ttlaiiicu': {
'aliases': [
'COVID-19 Patient Counts-How many airborne infection isolation rooms are in your ICU? ',
'COVID-19 Patient Counts-How many airborne infection isolation rooms are in your ICU?',
],
'public': True,
},
'ttlaiinonicu': {
'aliases': [
'COVID-19 Patient Counts-How many airborne infection isolation rooms are in non-ICU? ',
'COVID-19 Patient Counts-How many airborne infection isolation rooms are in non-ICU?',
],
'public': True,
},
'cvdnumc19died': {
'aliases': [
'COVID-19 Patient Counts-Number of patient deaths with Confirmed or PUI for COVID-19 in last 24 hours: ',
'COVID-19 Patient Counts-Number of patient deaths with Confirmed or PUI for COVID 19 in last 24 hours: ',
'COVID-19 Patient Counts-Number of patient deaths with Confirmed or PUI for COVID 19 in last 24 hours:',
],
},
'conspperesp': {
'aliases': [
'Are you currently implementing conservation strategies to preserve PPE:-Extended use of respirators Response ?',
],
},
'consppereuseresp': {
'aliases': [
'Are you currently implementing conservation strategies to preserve PPE:-Use of reusable respirators in place of disposable N95s (i.e. PAPRs elastomeric N95s etc.) Response ?',
],
},
'consppedispon95': {
'aliases': [
'Are you currently implementing conservation strategies to preserve PPE:-Reuse of disposable N95 respirators Response ?',
],
},
'consppestaffhours': {
'aliases': [
'Are you currently implementing conservation strategies to preserve PPE:-Extended staff hours/shifts Response ?',
],
},
'consppecohortwodestaff': {
'aliases': [
'Are you currently implementing conservation strategies to preserve PPE:-Cohorting patients without dedicated staff Response ?',
],
},
'consppecohortwdestaff': {
'aliases': [
'Are you currently implementing conservation strategies to preserve PPE:-Cohorting patients with dedicated staff Response ?',
],
},
'n95masksupply3less': {
'aliases': [
'n95utli3less',
'At current utilization rates how long do you expect your current supply of N95 respirators to last at your facility?-3 or less days Response ?',
],
},
'n95masksupply414': {
'aliases': [],
},
'n95masksupply>=15': {
'aliases': [],
},
'n95utli47': {
'aliases': [
'n95util47',
'At current utilization rates how long do you expect your current supply of N95 respirators to last at your facility?-4-7 days Response ?',
],
},
'n95util814': {
'aliases': [
'At current utilization rates how long do you expect your current supply of N95 respirators to last at your facility?-8-14 days Response ?',
],
},
'n95util1528': {
'aliases': [
'At current utilization rates how long do you expect your current supply of N95 respirators to last at your facility?-15-28 days Response ?',
],
},
'n95util29more': {
'aliases': [
'At current utilization rates how long do you expect your current supply of N95 respirators to last at your facility?-29 or more days Response ?',
],
},
'ppeutil3less': {
'aliases': [
'ppeutli3less',
'At current utilization rates how long do you expect your current supply of other PPE (gowns gloves etc) to last at your facility?-3 or less days Response ?',
],
},
'ppeutil414': {
'aliases': [],
},
'ppeutil>=15': {
'aliases': [],
},
'ppeutli47': {
'aliases': [
'At current utilization rates how long do you expect your current supply of other PPE (gowns gloves etc) to last at your facility?-4-7 days Response ?',
],
},
'ppeutil814': {
'aliases': [
'At current utilization rates how long do you expect your current supply of other PPE (gowns gloves etc) to last at your facility?-8-14 days Response ?',
],
},
'ppeutil1528': {
'aliases': [
'At current utilization rates how long do you expect your current supply of other PPE (gowns gloves etc) to last at your facility?-15-28 days Response ?',
],
},
'ppeutil29more': {
'aliases': [
'At current utilization rates how long do you expect your current supply of other PPE (gowns gloves etc) to last at your facility?-29 or more days Response ?',
],
},
'nputil3less': {
'aliases': [
'nputli3less',
'At current utilization rates how long do you expect your current supply of NP specimen collection supplies to last at your facility?-3 or less days Response ?',
],
},
'nputil414': {
'aliases': [],
},
'nputil>=15': {
'aliases': [],
},
'nputli47': {
'aliases': [
'At current utilization rates how long do you expect your current supply of NP specimen collection supplies to last at your facility?-4-7 days Response ?',
],
},
'nputil814': {
'aliases': [
'At current utilization rates how long do you expect your current supply of NP specimen collection supplies to last at your facility?-8-14 days Response ?',
],
},
'nputil1528': {
'aliases': [
'At current utilization rates how long do you expect your current supply of NP specimen collection supplies to last at your facility?-15-28 days Response ?',
],
},
'nputil29more': {
'aliases': [
'At current utilization rates how long do you expect your current supply of NP specimen collection supplies to last at your facility?-29 or more days Response ?',
],
},
'ttlempcall': {
'aliases': [
'Employee Status-Total Employee Call Outs/Absenteeism ',
],
},
'ttlempcvd19': {
'aliases': [
'Employee Status-Call out reason: sick with COVID-19 ',
],
},
'ttlcalloutphys': {
'aliases': [
'Employee Status-Number of Call Outs that are Physicians ',
],
},
'ttlcalloutnurse': {
'aliases': [
'Employee Status-Number of Call Outs that are Nurses ',
],
},
'ttlcalloutisolation': {
'aliases': [
'Employee Status-Call out reason: quarantine or isolation due to exposure ',
],
},
'ttlcalloutchildcare': {
'aliases': [
'Employee Status-Call out reason: child care issues ',
],
},
'envrnmntlsrvcsday': {
'aliases': [