-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathejsoefielddesc1.html
1662 lines (1638 loc) · 53.2 KB
/
ejsoefielddesc1.html
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
<!--
********************************************************************************************************
* Title: EJScreen Side by Side Comparisons
* Description: The file includes descriptions of each data field, which the API returns in a JSON format.
*
* Author: SAIC, EPA OMS Contractor
* Creation Date: 01/22/2024
* Last Updated: 01/22/2024
********************************************************************************************************
-->
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<title>EJScreen field description</title>
<style type="text/css">
table th {
font-size: 12pt;
}
table td {
font-size: 10pt;
padding: 4px;
}
</style>
</head>
<body style="font-family: Tahoma;">
<table border=1 cellpadding=0 cellspacing=0>
<tr>
<th>
JSON Variable
</th>
<th>Description</th>
<th>Section</th>
</tr>
<tr>
<td>P_ENGLISH</td>
<td>Percent of population speaking English at home</td>
<td>Languages Spoken at Home</td>
</tr>
<tr>
<td>P_SPANISH</td>
<td>Percent of population speaking Spanish at home</td>
<td>Languages Spoken at Home</td>
</tr>
<tr>
<td>P_FRENCH</td>
<td>Percent of population speaking French at home</td>
<td>Languages Spoken at Home</td>
</tr>
<tr>
<td>P_RUS_POL_SLAV</td>
<td>Percent of population speaking Russian, Polish or Other Slavic at home</td>
<td>Languages Spoken at Home</td>
</tr>
<tr>
<td>P_OTHER_IE</td>
<td>Percent of population speaking Indo-European at home </td>
<td>Languages Spoken at Home</td>
</tr>
<tr>
<td>P_VIETNAMESE</td>
<td>Percent of population speaking Vietnamese at home</td>
<td>Languages Spoken at Home</td>
</tr>
<tr>
<td>P_OTHER_ASIAN</td>
<td>Percent of population speaking Other Asian and Pacific Island languages at home</td>
<td>Languages Spoken at Home</td>
</tr>
<tr>
<td>P_ARABIC</td>
<td>Percent of population speaking Arabic at home</td>
<td>Languages Spoken at Home</td>
</tr>
<tr>
<td>P_OTHER</td>
<td>Percent of population speaking Other and Unspecified languages at home</td>
<td>Languages Spoken at Home</td>
</tr>
<tr>
<td>P_NON_ENGLISH</td>
<td>Percent of population speaking Non English languages at home</td>
<td>Languages Spoken at Home</td>
</tr>
<tr>
<td>P_NHWHITE</td>
<td>Percent of Non-Hispanic Whites</td>
<td>Breakdown by Race</td>
</tr>
<tr>
<td>P_NHBLACK</td>
<td>Percent of Non-Hispanic Blacks</td>
<td>Breakdown by Race</td>
</tr>
<tr>
<td>P_NHASIAN</td>
<td>Percent of Non-Hispanic Asians</td>
<td>Breakdown by Race</td>
</tr>
<tr>
<td>P_HISP</td>
<td>Percent of Hispanics</td>
<td>Breakdown by Race</td>
</tr>
<tr>
<td>P_NHAMERIND</td>
<td>Percent of Non-Hispanic American Indians</td>
<td>Breakdown by Race</td>
</tr>
<tr>
<td>P_NHHAWPAC</td>
<td>Percent of Non-Hispanic Hawaiian/Pacific</td>
<td>Breakdown by Race</td>
</tr>
<tr>
<td>P_NHOTHER_RACE</td>
<td>Percent of Non-Hispanic Other Race</td>
<td>Breakdown by Race</td>
</tr>
<tr>
<td>P_NHTWOMORE</td>
<td>Percent of Two or More Non-Hispanic Races</td>
<td>Breakdown by Race</td>
</tr>
<tr>
<td>P_AGE_LT5</td>
<td>Percent Break Down by Age below 5 Years</td>
<td>Breakdown by Age</td>
</tr>
<tr>
<td>P_AGE_LT18</td>
<td>Percent Break Down by Age below 18 Years</td>
<td>Breakdown by Age</td>
</tr>
<tr>
<td>P_AGE_GT17</td>
<td>Percent Break Down by Age above 17 Years</td>
<td>Breakdown by Age</td>
</tr>
<tr>
<td>P_AGE_GT64</td>
<td>Percent Break Down by Age below 64 Years</td>
<td>Breakdown by Age</td>
</tr>
<tr>
<td>P_HLI_SPANISH_LI</td>
<td>Speak Spanish</td>
<td>Breakdown by Limited English Speaking</td>
</tr>
<tr>
<td>P_HLI_IE_LI</td>
<td>Speak Other Indo-European Languages</td>
<td>Breakdown by Limited English Speaking</td>
</tr>
<tr>
<td>P_HLI_API_LI</td>
<td>Speak Asian-Pacific Island Languages</td>
<td>Breakdown by Limited English Speaking</td>
</tr>
<tr>
<td>P_HLI_OTHER_LI</td>
<td>Speak Other Languages</td>
<td>Breakdown by Limited English Speaking</td>
</tr>
<tr>
<td>P_LOWINC</td>
<td>Percent Low Income</td>
<td>Community</td>
</tr>
<tr>
<td>PCT_MINORITY</td>
<td>Percent People of Color</td>
<td>Community</td>
</tr>
<tr>
<td>P_EDU_LTHS</td>
<td>Percent People Who Has Less Than High School Education</td>
<td>Community</td>
</tr>
<tr>
<td>P_LIMITED_ENG_HH</td>
<td>Limited English Speaking Households</td>
<td>Community</td>
</tr>
<tr>
<td>P_EMP_STAT_UNEMPLOYED</td>
<td>Percentage of Unemployment</td>
<td>Community</td>
</tr>
<tr>
<td>P_DISABILITY</td>
<td>Percent population with Disabilities</td>
<td>Community</td>
</tr>
<tr>
<td>P_MALES</td>
<td>Percent Males</td>
<td>Community</td>
</tr>
<tr>
<td>P_FEMALES</td>
<td>Percent Females</td>
<td>Community</td>
</tr>
<tr>
<td>LIFEEXP</td>
<td>Life Expectancy in Years</td>
<td>Community</td>
</tr>
<tr>
<td>PER_CAP_INC</td>
<td>Per Capita Income</td>
<td>Community</td>
</tr>
<tr>
<td>HSHOLDS</td>
<td>Number of Households</td>
<td>Community</td>
</tr>
<tr>
<td>P_OWN_OCCUPIED</td>
<td>Owner Occupied households</td>
<td>Community</td>
</tr>
<tr>
<td>inputAreaMiles</td>
<td>Size for the Area of Interest</td>
<td>General information</td>
</tr>
<tr>
<td>TOTALPOP</td>
<td>Total Population</td>
<td>General information</td>
</tr>
<tr>
<td>RAW_D_PEOPCOLOR</td>
<td>People of Color</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>RAW_D_INCOME</td>
<td>Low Income</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>RAW_D_LESSHS</td>
<td>Less Than High School Education</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>RAW_D_LING</td>
<td>Limited English Speaking</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>RAW_D_UNDER5</td>
<td>Under Age 5</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>RAW_D_OVER64</td>
<td>Over Age 64</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>RAW_D_LIFEEXP</td>
<td>Limited Life Expectancy</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>RAW_D_DEMOGIDX2</td>
<td>Demographic Index</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>RAW_D_DEMOGIDX5</td>
<td>Supplemental Demographic Index</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>RAW_E_LEAD</td>
<td>Lead Paint</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>RAW_E_DIESEL</td>
<td>Diesel Particulate Matter</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>RAW_E_NO2</td>
<td>Nitrogen Dioxide (NO<sub>2</sub>)</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>RAW_E_DWATER</td>
<td>Drinking Water Non-Compliance (points)</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>RAW_E_TRAFFIC</td>
<td>Traffic Proximity</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>RAW_E_NPDES</td>
<td>Wastewater Discharge</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>RAW_E_NPL</td>
<td>Superfund Proximity</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>RAW_E_RMP</td>
<td>RMP Facility Proximity </td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>RAW_E_TSDF</td>
<td>Hazardous Waste Proximity</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>RAW_E_O3</td>
<td>Ozone</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>RAW_E_PM25</td>
<td>Particulate Matter</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>RAW_E_UST</td>
<td>Underground Storage Tanks</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>RAW_E_RSEI_AIR</td>
<td>Toxic Releases to Air</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>RAW_D_DEMOGIDX2ST</td>
<td>Demographic Index State</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>RAW_D_DEMOGIDX5ST</td>
<td>Supplemental Demographic Index State</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>RAW_D_UNEMPLOYED</td>
<td>Unemployment Rate</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>S_D_PEOPCOLOR</td>
<td>State Average of People of Color</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>S_D_INCOME</td>
<td>State Average of Low Income</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>S_D_LESSHS</td>
<td>State Average of Less Than High School Education</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>S_D_LING</td>
<td>State Average of Limited English Speaking</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>S_D_UNDER5</td>
<td>State Average of Under Age 5</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>S_D_OVER64</td>
<td>State Average of Over Age 64</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>S_D_LIFEEXP</td>
<td>State Average of Limited Life Expectancy</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>S_D_DEMOGIDX5ST</td>
<td>State Average of Supplemental Demographic Index</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td> S_D_DEMOGIDX2ST</td>
<td>State Average of Demographic Index</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>S_E_LEAD</td>
<td>State Average of Lead Paint</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_DIESEL</td>
<td>State Average of Diesel Particulate Matter</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_NO2</td>
<td>State Average of Nitrogen Dioxide (NO<sub>2</sub>)</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_DWATER</td>
<td>State Average of Drinking Water Non-Compliance (points)</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_TRAFFIC</td>
<td>State Average of Traffic Proximity</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_NPDES</td>
<td>State Average of Wastewater Discharge</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_NPL</td>
<td>State Average of Superfund Proximity</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_RMP</td>
<td>State Average of RMP Facility Proximity </td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_TSDF</td>
<td>State Average of Hazardous Waste Proximity</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_O3</td>
<td>State Average of Ozone</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_PM25</td>
<td>State Average of Particulate Matter</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_UST</td>
<td>State Average of Underground Storage Tanks</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_RSEI_AIR</td>
<td>State Average of Toxic Releases to Air</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_D_UNEMPLOYED</td>
<td>State Average of Unemployment Rate</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>S_D_PEOPCOLOR_PER</td>
<td>State Percentile of People of Color</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>S_D_INCOME_PER</td>
<td>State Percentile of Low Income</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>S_D_LESSHS_PER</td>
<td>State Percentile of Less Than High School Education</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>S_D_LING_PER</td>
<td>State Percentile of Limited English Speaking</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>S_D_UNDER5_PER</td>
<td>State Percentile of Under Age 5</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>S_D_OVER64_PER</td>
<td>State Percentile of Over Age 64</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>S_D_LIFEEXP_PER</td>
<td>State Percentile of Limited Life Expectancy</td>
<td>Health Indicators</td>
</tr>
<tr>
<td>S_D_DEMOGIDX2ST_PER</td>
<td>State Percentile of Demographic Index</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>S_D_DEMOGIDX5ST_PER</td>
<td>State Percentile of Supplemental Demographic Index</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>S_E_LEAD_PER</td>
<td>State Percentile of Lead Paint</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_DIESEL_PER</td>
<td>State Percentile of Diesel Particulate Matter</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_NO2_PER</td>
<td>State Percentile of Nitrogen Dioxide (NO<sub>2</sub>)</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_DWATER_PER</td>
<td>State Percentile of Drinking Water Non-Compliance (points)</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_TRAFFIC_PER</td>
<td>State Percentile of Traffic Proximity</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_NPDES_PER</td>
<td>State Percentile of Wastewater Discharge</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_NPL_PER</td>
<td>State Percentile of Superfund Proximity</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_RMP_PER</td>
<td>State Percentile of RMP Facility Proximity </td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_TSDF_PER</td>
<td>State Percentile of Hazardous Waste Proximity</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_O3_PER</td>
<td>State Percentile of Ozone</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_PM25_PER</td>
<td>State Percentile of Particulate Matter</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_UST_PER</td>
<td>State Percentile of Underground Storage Tanks</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_E_RSEI_AIR_PER</td>
<td>State Percentile of Toxic Releases to Air</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>S_P2_LEAD</td>
<td>State Percentile of Lead Paint EJ Index</td>
<td>EJ Indexes</td>
</tr>
<tr>
<td>S_P2_DIESEL</td>
<td>State Percentile of Diesel Particulate Matter EJ Index</td>
<td>EJ Indexes</td>
</tr>
<tr>
<td>S_P2_NO2</td>
<td>State Percentile of Nitrogen Dioxide (NO<sub>2</sub>) EJ Index</td>
<td>EJ Indexes</td>
</tr>
<tr>
<td>S_P2_DWATER</td>
<td>State Percentile of Drinking Water Non-Compliance (points) EJ Index</td>
<td>EJ Indexes</td>
</tr>
<tr>
<td>S_P2_TRAFFIC</td>
<td>State Percentile of Traffic Proximity EJ Index</td>
<td>EJ Indexes</td>
</tr>
<tr>
<td>S_P2_NPDES</td>
<td>State Percentile of Wastewater Discharge EJ Index</td>
<td>EJ Indexes</td>
</tr>
<tr>
<td>S_P2_NPL</td>
<td>State Percentile of Superfund Proximity EJ Index</td>
<td>EJ Indexes</td>
</tr>
<tr>
<td>S_P2_RMP</td>
<td>State Percentile of RMP Facility Proximity EJ Index</td>
<td>EJ Indexes</td>
</tr>
<tr>
<td>S_P2_TSDF</td>
<td>State Percentile of Hazardous Waste Proximity EJ Index</td>
<td>EJ Indexes</td>
</tr>
<tr>
<td>S_P2_O3</td>
<td>State Percentile of Ozone EJ Index</td>
<td>EJ Indexes</td>
</tr>
<tr>
<td>S_P2_PM25</td>
<td>State Percentile of Particulate Matter EJ Index</td>
<td>EJ Indexes</td>
</tr>
<tr>
<td>S_P2_UST</td>
<td>State Percentile of Underground Storage Tanks EJ Index</td>
<td>EJ Indexes</td>
</tr>
<tr>
<td>S_P2_RSEI_AIR</td>
<td>State Percentile of Toxic Releases to Air EJ Index</td>
<td>EJ Indexes</td>
</tr>
<tr>
<td>S_P5_LEAD</td>
<td>State Percentile of Lead Paint Supplemental Index</td>
<td>Supplemental Indexes</td>
</tr>
<tr>
<td>S_P5_DIESEL</td>
<td>State Percentile of Diesel Particulate Matter Supplemental Index</td>
<td>Supplemental Indexes</td>
</tr>
<tr>
<td>S_P5_NO2</td>
<td>State Percentile of Nitrogen Dioxide (NO<sub>2</sub>) Supplemental Index</td>
<td>Supplemental Indexes</td>
</tr>
<tr>
<td>S_P5_DWATER</td>
<td>State Percentile of Drinking Water Non-Compliance (points) Supplemental Index</td>
<td>Supplemental Indexes</td>
</tr>
<tr>
<td>S_P5_TRAFFIC</td>
<td>State Percentile of Traffic Proximity Supplemental Index</td>
<td>Supplemental Indexes</td>
</tr>
<tr>
<td>S_P5_NPDES</td>
<td>State Percentile of Wastewater Discharge Supplemental Index</td>
<td>Supplemental Indexes</td>
</tr>
<tr>
<td>S_P5_NPL</td>
<td>State Percentile of Superfund Proximity Supplemental Index</td>
<td>Supplemental Indexes</td>
</tr>
<tr>
<td>S_P5_RMP</td>
<td>State Percentile of RMP Facility Proximity Supplemental Index</td>
<td>Supplemental Indexes</td>
</tr>
<tr>
<td>S_P5_TSDF</td>
<td>State Percentile of Hazardous Waste Proximity Supplemental Index</td>
<td>Supplemental Indexes</td>
</tr>
<tr>
<td>S_P5_O3</td>
<td>State Percentile of Ozone Supplemental Index</td>
<td>Supplemental Indexes</td>
</tr>
<tr>
<td>S_P5_PM25</td>
<td>State Percentile of Particulate Matter Supplemental Index</td>
<td>Supplemental Indexes</td>
</tr>
<tr>
<td>S_P5_UST</td>
<td>State Percentile of Underground Storage Tanks Supplemental Index</td>
<td>Supplemental Indexes</td>
</tr>
<tr>
<td>S_P5_RSEI_AIR</td>
<td>State Percentile of Toxic Releases to Air Supplemental Index</td>
<td>Supplemental Indexes</td>
</tr>
<tr>
<td>S_D_UNEMPLOYED_PER</td>
<td>State Percentile of Unemployment Rate</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>N_D_PEOPCOLOR</td>
<td>National Average of People of Color</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>N_D_INCOME</td>
<td>National Average of Low Income</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>N_D_LESSHS</td>
<td>National Average of Less Than High School Education</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>N_D_LING</td>
<td>National Average of Limited English Speaking</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>N_D_UNDER5</td>
<td>National Average of Under Age 5</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>N_D_OVER64</td>
<td>National Average of Over Age 64</td>
<td>Socioeconomic Indicators</td>
</tr>
<!-- <tr>
<td>N_D_UNEMPLOYED</td>
<td>National Average of Unemployment Rate</td>
<td>Socioeconomic Indicators</td>
</tr> -->
<tr>
<td>N_D_LIFEEXP</td>
<td>National Average of Limited Life Expectancy</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>N_D_DEMOGIDX2</td>
<td>National Average of Demographic Index</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>N_D_DEMOGIDX5</td>
<td>National Average of Supplemental Demographic Index</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>N_E_LEAD</td>
<td>National Average of Lead Paint</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_DIESEL</td>
<td>National Average of Diesel Particulate Matter</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_NO2</td>
<td>National Average of Nitrogen Dioxide (NO<sub>2</sub>)</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_DWATER</td>
<td>National Average of Drinking Water Non-Compliance (points)</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_TRAFFIC</td>
<td>National Average of Traffic Proximity</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_NPDES</td>
<td>National Average of Wastewater Discharge</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_NPL</td>
<td>National Average of Superfund Proximity</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_RMP</td>
<td>National Average of RMP Facility Proximity </td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_TSDF</td>
<td>National Average of Hazardous Waste Proximity</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_O3</td>
<td>National Average of Ozone</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_PM25</td>
<td>National Average of Particulate Matter</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_UST</td>
<td>National Average of Underground Storage Tanks</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_RSEI_AIR</td>
<td>National Average of Toxic Releases to Air</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_D_UNEMPLOYED</td>
<td>National Average of Unemployment Rate</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>N_D_PEOPCOLOR_PER</td>
<td>National Percentile of People of Color</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>N_D_INCOME_PER</td>
<td>National Percentile of Low Income</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>N_D_LESSHS_PER</td>
<td>National Percentile of Less Than High School Education</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>N_D_LING_PER</td>
<td>National Percentile of Limited English Speaking</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>N_D_UNDER5_PER</td>
<td>National Percentile of Under Age 5</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>N_D_OVER64_PER</td>
<td>National Percentile of Over Age 64</td>
<td>Socioeconomic Indicators</td>
</tr>
<!-- <tr>
<td>N_D_UNEMPLOYED_PER</td>
<td>National Percentile of Unemployment Rate</td>
<td>Socioeconomic Indicators</td>
</tr> -->
<tr>
<td>N_D_LIFEEXP_PER</td>
<td>National Percentile of Limited Life Expectancy</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>N_D_DEMOGIDX2_PER</td>
<td>National Percentile of Demographic Index</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>N_D_DEMOGIDX5_PER</td>
<td>National Percentile of Supplemental Demographic Index</td>
<td>Socioeconomic Indicators</td>
</tr>
<tr>
<td>N_E_LEAD_PER</td>
<td>National Percentile of Lead Paint</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_DIESEL_PER</td>
<td>National Percentile of Diesel Particulate Matter</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_NO2_PER</td>
<td>National Percentile of Nitrogen Dioxide (NO<sub>2</sub>)</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_DWATER_PER</td>
<td>National Percentile of Drinking Water Non-Compliance (points)</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_TRAFFIC_PER</td>
<td>National Percentile of Traffic Proximity</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_NPDES_PER</td>
<td>National Percentile of Wastewater Discharge</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_NPL_PER</td>
<td>National Percentile of Superfund Proximity</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_RMP_PER</td>
<td>National Percentile of RMP Facility Proximity </td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_TSDF_PER</td>
<td>National Percentile of Hazardous Waste Proximity</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_O3_PER</td>
<td>National Percentile of Ozone</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_PM25_PER</td>
<td>National Percentile of Particulate Matter</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_UST_PER</td>
<td>National Percentile of Underground Storage Tanks</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_E_RSEI_AIR_PER</td>
<td>National Percentile of Toxic Releases to Air</td>
<td>Environmental Burden Indicators</td>
</tr>
<tr>
<td>N_P2_LEAD</td>
<td>National Percentile of Lead Paint EJ Index</td>
<td>EJ Indexes</td>
</tr>
<tr>
<td>N_P2_DIESEL</td>
<td>National Percentile of Diesel Particulate Matter EJ Index</td>
<td>EJ Indexes</td>
</tr>
<tr>
<td>N_P2_NO2</td>
<td>National Percentile of Nitrogen Dioxide (NO<sub>2</sub>) EJ Index</td>
<td>EJ Indexes</td>
</tr>
<tr>
<td>N_P2_DWATER</td>
<td>National Percentile of Drinking Water Non-Compliance (points) EJ Index</td>
<td>EJ Indexes</td>
</tr>
<tr>
<td>N_P2_TRAFFIC</td>
<td>National Percentile of Traffic Proximity EJ Index</td>
<td>EJ Indexes</td>
</tr>
<tr>
<td>N_P2_NPDES</td>
<td>National Percentile of Wastewater Discharge EJ Index</td>
<td>EJ Indexes</td>