forked from USEPA-clone/EJScreen
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathejscreen-map-descriptions.html
1547 lines (1001 loc) · 151 KB
/
ejscreen-map-descriptions.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
<!DOCTYPE html>
<html lang="en" dir="ltr" prefix="og: https://ogp.me/ns#" class="no-js">
<head>
<meta charset="utf-8" />
<link rel="canonical" href="https://www.epa.gov/ejscreen/ejscreen-map-descriptions" />
<meta name="robots" content="index, follow" />
<link rel="shortlink" href="https://www.epa.gov/node/87349" />
<meta name="description" content="This page provides EJScreen Map Descriptions." />
<meta property="DC.title" content="EJScreen Map Descriptions" />
<meta property="DC.description" content="This page provides EJScreen Map Descriptions." />
<meta property="DC.Subject.epachannel" content="Learn the Issues" />
<meta property="DC.type" content="Collections and Lists" />
<meta property="DC.date.created" content="2015-06-03" />
<meta property="DC.date.modified" content="2024-01-03" />
<meta property="DC.date.reviewed" content="2025-01-02" />
<meta property="DC.creator" content="US EPA,OEJECR" />
<meta property="DC.language" content="en" />
<meta property="WebArea" content="EJScreen: Environmental Justice Screening and Mapping Tool" />
<meta property="ContentType" content="Basic page" />
<meta property="NavigationStyle" content="sidebar_navigation" />
<meta property="og:site_name" content="US EPA" />
<meta property="og:type" content="Basic page" />
<meta property="og:url" content="https://www.epa.gov/ejscreen/ejscreen-map-descriptions" />
<meta property="og:title" content="EJScreen Map Descriptions | US EPA" />
<meta property="og:description" content="This page provides EJScreen Map Descriptions." />
<meta property="og:image" content="https://www.epa.gov/sites/all/themes/epa/img/epa-standard-og.jpg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:updated_time" content="2024-01-03" />
<meta property="og:image:alt" content="U.S. Environmental Protection Agency" />
<meta property="og:country_name" content="United States of America" />
<meta property="og:locale" content="en_US" />
<meta property="article:published_time" content="2015-06-03T11:07:20-04:00" />
<meta property="article:modified_time" content="2024-01-03" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:description" content="This page provides EJScreen Map Descriptions." />
<meta name="twitter:title" content="EJScreen Map Descriptions | US EPA" />
<meta name="twitter:url" content="https://www.epa.gov/ejscreen/ejscreen-map-descriptions" />
<meta name="twitter:image:alt" content="U.S. Environmental Protection Agency" />
<meta name="twitter:image:height" content="600" />
<meta name="twitter:image:width" content="1200" />
<meta name="twitter:image" content="https://www.epa.gov/sites/all/themes/epa/img/epa-standard-twitter.jpg" />
<meta name="MobileOptimized" content="width" />
<meta name="HandheldFriendly" content="true" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="x-ua-compatible" content="ie=edge" /><script type="text/javascript">(window.NREUM||(NREUM={})).init={ajax:{deny_list:["gov-bam.nr-data.net"]}};(window.NREUM||(NREUM={})).loader_config={licenseKey:"ead36e43ac",applicationID:"529886857"};;/*! For license information please see nr-loader-rum-1.252.0.min.js.LICENSE.txt */
(()=>{var e,t,r={234:(e,t,r)=>{"use strict";r.d(t,{P_:()=>v,Mt:()=>b,C5:()=>s,DL:()=>w,OP:()=>S,lF:()=>T,Yu:()=>x,Dg:()=>m,CX:()=>c,GE:()=>_,sU:()=>R});var n=r(8632),i=r(9567);const o={beacon:n.ce.beacon,errorBeacon:n.ce.errorBeacon,licenseKey:void 0,applicationID:void 0,sa:void 0,queueTime:void 0,applicationTime:void 0,ttGuid:void 0,user:void 0,account:void 0,product:void 0,extra:void 0,jsAttributes:{},userAttributes:void 0,atts:void 0,transactionName:void 0,tNamePlain:void 0},a={};function s(e){if(!e)throw new Error("All info objects require an agent identifier!");if(!a[e])throw new Error("Info for ".concat(e," was never set"));return a[e]}function c(e,t){if(!e)throw new Error("All info objects require an agent identifier!");a[e]=(0,i.D)(t,o);const r=(0,n.ek)(e);r&&(r.info=a[e])}const u=e=>{if(!e||"string"!=typeof e)return!1;try{document.createDocumentFragment().querySelector(e)}catch{return!1}return!0};var d=r(7056),l=r(50);const f="[data-nr-mask]",g=()=>{const e={mask_selector:"*",block_selector:"[data-nr-block]",mask_input_options:{color:!1,date:!1,"datetime-local":!1,email:!1,month:!1,number:!1,range:!1,search:!1,tel:!1,text:!1,time:!1,url:!1,week:!1,textarea:!1,select:!1,password:!0}};return{feature_flags:[],proxy:{assets:void 0,beacon:void 0},privacy:{cookies_enabled:!0},ajax:{deny_list:void 0,block_internal:!0,enabled:!0,harvestTimeSeconds:10,autoStart:!0},distributed_tracing:{enabled:void 0,exclude_newrelic_header:void 0,cors_use_newrelic_header:void 0,cors_use_tracecontext_headers:void 0,allowed_origins:void 0},session:{domain:void 0,expiresMs:d.oD,inactiveMs:d.Hb},ssl:void 0,obfuscate:void 0,jserrors:{enabled:!0,harvestTimeSeconds:10,autoStart:!0},metrics:{enabled:!0,autoStart:!0},page_action:{enabled:!0,harvestTimeSeconds:30,autoStart:!0},page_view_event:{enabled:!0,autoStart:!0},page_view_timing:{enabled:!0,harvestTimeSeconds:30,long_task:!1,autoStart:!0},session_trace:{enabled:!0,harvestTimeSeconds:10,autoStart:!0},harvest:{tooManyRequestsDelay:60},session_replay:{autoStart:!0,enabled:!1,harvestTimeSeconds:60,sampling_rate:10,error_sampling_rate:100,collect_fonts:!1,inline_images:!1,inline_stylesheet:!0,mask_all_inputs:!0,get mask_text_selector(){return e.mask_selector},set mask_text_selector(t){u(t)?e.mask_selector="".concat(t,",").concat(f):""===t||null===t?e.mask_selector=f:(0,l.Z)("An invalid session_replay.mask_selector was provided. '*' will be used.",t)},get block_class(){return"nr-block"},get ignore_class(){return"nr-ignore"},get mask_text_class(){return"nr-mask"},get block_selector(){return e.block_selector},set block_selector(t){u(t)?e.block_selector+=",".concat(t):""!==t&&(0,l.Z)("An invalid session_replay.block_selector was provided and will not be used",t)},get mask_input_options(){return e.mask_input_options},set mask_input_options(t){t&&"object"==typeof t?e.mask_input_options={...t,password:!0}:(0,l.Z)("An invalid session_replay.mask_input_option was provided and will not be used",t)}},spa:{enabled:!0,harvestTimeSeconds:10,autoStart:!0}}},p={},h="All configuration objects require an agent identifier!";function v(e){if(!e)throw new Error(h);if(!p[e])throw new Error("Configuration for ".concat(e," was never set"));return p[e]}function m(e,t){if(!e)throw new Error(h);p[e]=(0,i.D)(t,g());const r=(0,n.ek)(e);r&&(r.init=p[e])}function b(e,t){if(!e)throw new Error(h);var r=v(e);if(r){for(var n=t.split("."),i=0;i<n.length-1;i++)if("object"!=typeof(r=r[n[i]]))return;r=r[n[n.length-1]]}return r}const y={accountID:void 0,trustKey:void 0,agentID:void 0,licenseKey:void 0,applicationID:void 0,xpid:void 0},A={};function w(e){if(!e)throw new Error("All loader-config objects require an agent identifier!");if(!A[e])throw new Error("LoaderConfig for ".concat(e," was never set"));return A[e]}function _(e,t){if(!e)throw new Error("All loader-config objects require an agent identifier!");A[e]=(0,i.D)(t,y);const r=(0,n.ek)(e);r&&(r.loader_config=A[e])}const x=(0,n.mF)().o;var E=r(385),D=r(6818);const k={buildEnv:D.Re,customTransaction:void 0,disabled:!1,distMethod:D.gF,isolatedBacklog:!1,loaderType:void 0,maxBytes:3e4,offset:Math.floor(E._A?.performance?.timeOrigin||E._A?.performance?.timing?.navigationStart||Date.now()),onerror:void 0,origin:""+E._A.location,ptid:void 0,releaseIds:{},session:void 0,xhrWrappable:"function"==typeof E._A.XMLHttpRequest?.prototype?.addEventListener,version:D.q4,denyList:void 0},j={};function S(e){if(!e)throw new Error("All runtime objects require an agent identifier!");if(!j[e])throw new Error("Runtime for ".concat(e," was never set"));return j[e]}function R(e,t){if(!e)throw new Error("All runtime objects require an agent identifier!");j[e]=(0,i.D)(t,k);const r=(0,n.ek)(e);r&&(r.runtime=j[e])}function T(e){return function(e){try{const t=s(e);return!!t.licenseKey&&!!t.errorBeacon&&!!t.applicationID}catch(e){return!1}}(e)}},9567:(e,t,r)=>{"use strict";r.d(t,{D:()=>i});var n=r(50);function i(e,t){try{if(!e||"object"!=typeof e)return(0,n.Z)("Setting a Configurable requires an object as input");if(!t||"object"!=typeof t)return(0,n.Z)("Setting a Configurable requires a model to set its initial properties");const r=Object.create(Object.getPrototypeOf(t),Object.getOwnPropertyDescriptors(t)),o=0===Object.keys(r).length?e:r;for(let a in o)if(void 0!==e[a])try{Array.isArray(e[a])&&Array.isArray(t[a])?r[a]=Array.from(new Set([...e[a],...t[a]])):"object"==typeof e[a]&&"object"==typeof t[a]?r[a]=i(e[a],t[a]):r[a]=e[a]}catch(e){(0,n.Z)("An error occurred while setting a property of a Configurable",e)}return r}catch(e){(0,n.Z)("An error occured while setting a Configurable",e)}}},6818:(e,t,r)=>{"use strict";r.d(t,{Re:()=>i,gF:()=>o,q4:()=>n});const n="1.252.0",i="PROD",o="CDN"},385:(e,t,r)=>{"use strict";r.d(t,{Nk:()=>d,Tt:()=>s,_A:()=>o,cv:()=>l,iS:()=>a,il:()=>n,ux:()=>c,v6:()=>i,w1:()=>u});const n="undefined"!=typeof window&&!!window.document,i="undefined"!=typeof WorkerGlobalScope&&("undefined"!=typeof self&&self instanceof WorkerGlobalScope&&self.navigator instanceof WorkerNavigator||"undefined"!=typeof globalThis&&globalThis instanceof WorkerGlobalScope&&globalThis.navigator instanceof WorkerNavigator),o=n?window:"undefined"!=typeof WorkerGlobalScope&&("undefined"!=typeof self&&self instanceof WorkerGlobalScope&&self||"undefined"!=typeof globalThis&&globalThis instanceof WorkerGlobalScope&&globalThis),a=Boolean("hidden"===o?.document?.visibilityState),s=/iPad|iPhone|iPod/.test(o.navigator?.userAgent),c=s&&"undefined"==typeof SharedWorker,u=((()=>{const e=o.navigator?.userAgent?.match(/Firefox[/\s](\d+\.\d+)/);Array.isArray(e)&&e.length>=2&&e[1]})(),Boolean(n&&window.document.documentMode)),d=!!o.navigator?.sendBeacon,l=Math.floor(o?.performance?.timeOrigin||o?.performance?.timing?.navigationStart||Date.now())},1117:(e,t,r)=>{"use strict";r.d(t,{w:()=>o});var n=r(50);const i={agentIdentifier:"",ee:void 0};class o{constructor(e){try{if("object"!=typeof e)return(0,n.Z)("shared context requires an object as input");this.sharedContext={},Object.assign(this.sharedContext,i),Object.entries(e).forEach((e=>{let[t,r]=e;Object.keys(i).includes(t)&&(this.sharedContext[t]=r)}))}catch(e){(0,n.Z)("An error occured while setting SharedContext",e)}}}},8e3:(e,t,r)=>{"use strict";r.d(t,{L:()=>d,R:()=>c});var n=r(8325),i=r(1284),o=r(4322),a=r(3325);const s={};function c(e,t){const r={staged:!1,priority:a.p[t]||0};u(e),s[e].get(t)||s[e].set(t,r)}function u(e){e&&(s[e]||(s[e]=new Map))}function d(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"feature",r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if(u(e),!e||!s[e].get(t)||r)return c(t);s[e].get(t).staged=!0;const a=[...s[e]];function c(t){const r=e?n.ee.get(e):n.ee,a=o.X.handlers;if(r.backlog&&a){var s=r.backlog[t],c=a[t];if(c){for(var u=0;s&&u<s.length;++u)l(s[u],c);(0,i.D)(c,(function(e,t){(0,i.D)(t,(function(t,r){r[0].on(e,r[1])}))}))}delete a[t],r.backlog[t]=null,r.emit("drain-"+t,[])}}a.every((e=>{let[t,r]=e;return r.staged}))&&(a.sort(((e,t)=>e[1].priority-t[1].priority)),a.forEach((t=>{let[r]=t;s[e].delete(r),c(r)})))}function l(e,t){var r=e[1];(0,i.D)(t[r],(function(t,r){var n=e[0];if(r[0]===n){var i=r[1],o=e[3],a=e[2];i.apply(o,a)}}))}},8325:(e,t,r)=>{"use strict";r.d(t,{A:()=>c,ee:()=>u});var n=r(8632),i=r(2210),o=r(234);class a{constructor(e){this.contextId=e}}var s=r(3117);const c="nr@context:".concat(s.a),u=function e(t,r){var n={},s={},d={},f=!1;try{f=16===r.length&&(0,o.OP)(r).isolatedBacklog}catch(e){}var g={on:h,addEventListener:h,removeEventListener:function(e,t){var r=n[e];if(!r)return;for(var i=0;i<r.length;i++)r[i]===t&&r.splice(i,1)},emit:function(e,r,n,i,o){!1!==o&&(o=!0);if(u.aborted&&!i)return;t&&o&&t.emit(e,r,n);for(var a=p(n),c=v(e),d=c.length,l=0;l<d;l++)c[l].apply(a,r);var f=b()[s[e]];f&&f.push([g,e,r,a]);return a},get:m,listeners:v,context:p,buffer:function(e,t){const r=b();if(t=t||"feature",g.aborted)return;Object.entries(e||{}).forEach((e=>{let[n,i]=e;s[i]=t,t in r||(r[t]=[])}))},abort:l,aborted:!1,isBuffering:function(e){return!!b()[s[e]]},debugId:r,backlog:f?{}:t&&"object"==typeof t.backlog?t.backlog:{}};return g;function p(e){return e&&e instanceof a?e:e?(0,i.X)(e,c,(()=>new a(c))):new a(c)}function h(e,t){n[e]=v(e).concat(t)}function v(e){return n[e]||[]}function m(t){return d[t]=d[t]||e(g,t)}function b(){return g.backlog}}(void 0,"globalEE"),d=(0,n.fP)();function l(){u.aborted=!0,Object.keys(u.backlog).forEach((e=>{delete u.backlog[e]}))}d.ee||(d.ee=u)},5546:(e,t,r)=>{"use strict";r.d(t,{E:()=>n,p:()=>i});var n=r(8325).ee.get("handle");function i(e,t,r,i,o){o?(o.buffer([e],i),o.emit(e,t,r)):(n.buffer([e],i),n.emit(e,t,r))}},4322:(e,t,r)=>{"use strict";r.d(t,{X:()=>o});var n=r(5546);o.on=a;var i=o.handlers={};function o(e,t,r,o){a(o||n.E,i,e,t,r)}function a(e,t,r,i,o){o||(o="feature"),e||(e=n.E);var a=t[o]=t[o]||{};(a[r]=a[r]||[]).push([e,i])}},3239:(e,t,r)=>{"use strict";r.d(t,{bP:()=>s,iz:()=>c,m$:()=>a});var n=r(385);let i=!1,o=!1;try{const e={get passive(){return i=!0,!1},get signal(){return o=!0,!1}};n._A.addEventListener("test",null,e),n._A.removeEventListener("test",null,e)}catch(e){}function a(e,t){return i||o?{capture:!!e,passive:i,signal:t}:!!e}function s(e,t){let r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=arguments.length>3?arguments[3]:void 0;window.addEventListener(e,t,a(r,n))}function c(e,t){let r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=arguments.length>3?arguments[3]:void 0;document.addEventListener(e,t,a(r,n))}},3117:(e,t,r)=>{"use strict";r.d(t,{a:()=>n});const n=(0,r(4402).Rl)()},4402:(e,t,r)=>{"use strict";r.d(t,{Rl:()=>a,ky:()=>s});var n=r(385);const i="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx";function o(e,t){return e?15&e[t]:16*Math.random()|0}function a(){const e=n._A?.crypto||n._A?.msCrypto;let t,r=0;return e&&e.getRandomValues&&(t=e.getRandomValues(new Uint8Array(30))),i.split("").map((e=>"x"===e?o(t,r++).toString(16):"y"===e?(3&o()|8).toString(16):e)).join("")}function s(e){const t=n._A?.crypto||n._A?.msCrypto;let r,i=0;t&&t.getRandomValues&&(r=t.getRandomValues(new Uint8Array(e)));const a=[];for(var s=0;s<e;s++)a.push(o(r,i++).toString(16));return a.join("")}},7056:(e,t,r)=>{"use strict";r.d(t,{Bq:()=>n,Hb:()=>o,IK:()=>c,oD:()=>i,uT:()=>s,wO:()=>a});const n="NRBA",i=144e5,o=18e5,a={PAUSE:"session-pause",RESET:"session-reset",RESUME:"session-resume",UPDATE:"session-update"},s={SAME_TAB:"same-tab",CROSS_TAB:"cross-tab"},c={OFF:0,FULL:1,ERROR:2}},7894:(e,t,r)=>{"use strict";function n(){return Math.round(performance.now())}r.d(t,{z:()=>n})},50:(e,t,r)=>{"use strict";function n(e,t){"function"==typeof console.warn&&(console.warn("New Relic: ".concat(e)),t&&console.warn(t))}r.d(t,{Z:()=>n})},2825:(e,t,r)=>{"use strict";r.d(t,{N:()=>d,T:()=>l});var n=r(8325),i=r(5546),o=r(3325),a=r(385);const s="newrelic";const c={stn:[o.D.sessionTrace],err:[o.D.jserrors,o.D.metrics],ins:[o.D.pageAction],spa:[o.D.spa],sr:[o.D.sessionReplay,o.D.sessionTrace]},u=new Set;function d(e,t){const r=n.ee.get(t);e&&"object"==typeof e&&(u.has(t)||(Object.entries(e).forEach((e=>{let[t,n]=e;c[t]?c[t].forEach((e=>{n?(0,i.p)("feat-"+t,[],void 0,e,r):(0,i.p)("block-"+t,[],void 0,e,r),(0,i.p)("rumresp-"+t,[Boolean(n)],void 0,e,r)})):n&&(0,i.p)("feat-"+t,[],void 0,void 0,r),l[t]=Boolean(n)})),Object.keys(c).forEach((e=>{void 0===l[e]&&(c[e]?.forEach((t=>(0,i.p)("rumresp-"+e,[!1],void 0,t,r))),l[e]=!1)})),u.add(t),function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};try{a._A.dispatchEvent(new CustomEvent(s,{detail:e}))}catch(e){}}({loaded:!0})))}const l={}},2210:(e,t,r)=>{"use strict";r.d(t,{X:()=>i});var n=Object.prototype.hasOwnProperty;function i(e,t,r){if(n.call(e,t))return e[t];var i=r();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(e,t,{value:i,writable:!0,enumerable:!1}),i}catch(e){}return e[t]=i,i}},1284:(e,t,r)=>{"use strict";r.d(t,{D:()=>n});const n=(e,t)=>Object.entries(e||{}).map((e=>{let[r,n]=e;return t(r,n)}))},4351:(e,t,r)=>{"use strict";r.d(t,{P:()=>o});var n=r(8325);const i=()=>{const e=new WeakSet;return(t,r)=>{if("object"==typeof r&&null!==r){if(e.has(r))return;e.add(r)}return r}};function o(e){try{return JSON.stringify(e,i())}catch(e){try{n.ee.emit("internal-error",[e])}catch(e){}}}},3960:(e,t,r)=>{"use strict";r.d(t,{KB:()=>a,b2:()=>o});var n=r(3239);function i(){return"undefined"==typeof document||"complete"===document.readyState}function o(e,t){if(i())return e();(0,n.bP)("load",e,t)}function a(e){if(i())return e();(0,n.iz)("DOMContentLoaded",e)}},8632:(e,t,r)=>{"use strict";r.d(t,{EZ:()=>d,ce:()=>o,ek:()=>u,fP:()=>a,gG:()=>l,h5:()=>c,mF:()=>s});var n=r(7894),i=r(385);const o={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net"};function a(){return i._A.NREUM||(i._A.NREUM={}),void 0===i._A.newrelic&&(i._A.newrelic=i._A.NREUM),i._A.NREUM}function s(){let e=a();return e.o||(e.o={ST:i._A.setTimeout,SI:i._A.setImmediate,CT:i._A.clearTimeout,XHR:i._A.XMLHttpRequest,REQ:i._A.Request,EV:i._A.Event,PR:i._A.Promise,MO:i._A.MutationObserver,FETCH:i._A.fetch}),e}function c(e,t){let r=a();r.initializedAgents??={},t.initializedAt={ms:(0,n.z)(),date:new Date},r.initializedAgents[e]=t}function u(e){let t=a();return t.initializedAgents?.[e]}function d(e,t){a()[e]=t}function l(){return function(){let e=a();const t=e.info||{};e.info={beacon:o.beacon,errorBeacon:o.errorBeacon,...t}}(),function(){let e=a();const t=e.init||{};e.init={...t}}(),s(),function(){let e=a();const t=e.loader_config||{};e.loader_config={...t}}(),a()}},7956:(e,t,r)=>{"use strict";r.d(t,{N:()=>i});var n=r(3239);function i(e){let t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=arguments.length>2?arguments[2]:void 0,i=arguments.length>3?arguments[3]:void 0;(0,n.iz)("visibilitychange",(function(){if(t)return void("hidden"===document.visibilityState&&e());e(document.visibilityState)}),r,i)}},3081:(e,t,r)=>{"use strict";r.d(t,{gF:()=>o,mY:()=>i,t9:()=>n,vz:()=>s,xS:()=>a});const n=r(3325).D.metrics,i="sm",o="cm",a="storeSupportabilityMetrics",s="storeEventMetrics"},7633:(e,t,r)=>{"use strict";r.d(t,{t:()=>n});const n=r(3325).D.pageViewEvent},9251:(e,t,r)=>{"use strict";r.d(t,{t:()=>n});const n=r(3325).D.pageViewTiming},5938:(e,t,r)=>{"use strict";r.d(t,{W:()=>i});var n=r(8325);class i{constructor(e,t,r){this.agentIdentifier=e,this.aggregator=t,this.ee=n.ee.get(e),this.featureName=r,this.blocked=!1}}},7530:(e,t,r)=>{"use strict";r.d(t,{j:()=>b});var n=r(3325),i=r(234),o=r(5546),a=r(8325),s=r(7894),c=r(8e3),u=r(3960),d=r(385),l=r(50),f=r(3081),g=r(8632);function p(){const e=(0,g.gG)();["setErrorHandler","finished","addToTrace","addRelease","addPageAction","setCurrentRouteName","setPageViewName","setCustomAttribute","interaction","noticeError","setUserId","setApplicationVersion","start","recordReplay","pauseReplay"].forEach((t=>{e[t]=function(){for(var r=arguments.length,n=new Array(r),i=0;i<r;i++)n[i]=arguments[i];return function(t){for(var r=arguments.length,n=new Array(r>1?r-1:0),i=1;i<r;i++)n[i-1]=arguments[i];let o=[];return Object.values(e.initializedAgents).forEach((e=>{e.exposed&&e.api[t]&&o.push(e.api[t](...n))})),o.length>1?o:o[0]}(t,...n)}}))}var h=r(2825);const v=e=>{const t=e.startsWith("http");e+="/",r.p=t?e:"https://"+e};let m=!1;function b(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},b=arguments.length>2?arguments[2]:void 0,y=arguments.length>3?arguments[3]:void 0,{init:A,info:w,loader_config:_,runtime:x={loaderType:b},exposed:E=!0}=t;const D=(0,g.gG)();w||(A=D.init,w=D.info,_=D.loader_config),(0,i.Dg)(e.agentIdentifier,A||{}),(0,i.GE)(e.agentIdentifier,_||{}),w.jsAttributes??={},d.v6&&(w.jsAttributes.isWorker=!0),(0,i.CX)(e.agentIdentifier,w);const k=(0,i.P_)(e.agentIdentifier),j=[w.beacon,w.errorBeacon];m||(k.proxy.assets&&(v(k.proxy.assets),j.push(k.proxy.assets)),k.proxy.beacon&&j.push(k.proxy.beacon),p(),(0,g.EZ)("activatedFeatures",h.T)),x.denyList=[...k.ajax.deny_list||[],...k.ajax.block_internal?j:[]],(0,i.sU)(e.agentIdentifier,x),void 0===e.api&&(e.api=function(e,t){t||(0,c.R)(e,"api");const g={};var p=a.ee.get(e),h=p.get("tracer"),v="api-",m=v+"ixn-";function b(t,r,n,o){const a=(0,i.C5)(e);return null===r?delete a.jsAttributes[t]:(0,i.CX)(e,{...a,jsAttributes:{...a.jsAttributes,[t]:r}}),w(v,n,!0,o||null===r?"session":void 0)(t,r)}function y(){}["setErrorHandler","finished","addToTrace","addRelease"].forEach((e=>{g[e]=w(v,e,!0,"api")})),g.addPageAction=w(v,"addPageAction",!0,n.D.pageAction),g.setCurrentRouteName=w(v,"routeName",!0,n.D.spa),g.setPageViewName=function(t,r){if("string"==typeof t)return"/"!==t.charAt(0)&&(t="/"+t),(0,i.OP)(e).customTransaction=(r||"http://custom.transaction")+t,w(v,"setPageViewName",!0)()},g.setCustomAttribute=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if("string"==typeof e){if(["string","number","boolean"].includes(typeof t)||null===t)return b(e,t,"setCustomAttribute",r);(0,l.Z)("Failed to execute setCustomAttribute.\nNon-null value must be a string, number or boolean type, but a type of <".concat(typeof t,"> was provided."))}else(0,l.Z)("Failed to execute setCustomAttribute.\nName must be a string type, but a type of <".concat(typeof e,"> was provided."))},g.setUserId=function(e){if("string"==typeof e||null===e)return b("enduser.id",e,"setUserId",!0);(0,l.Z)("Failed to execute setUserId.\nNon-null value must be a string type, but a type of <".concat(typeof e,"> was provided."))},g.setApplicationVersion=function(e){if("string"==typeof e||null===e)return b("application.version",e,"setApplicationVersion",!1);(0,l.Z)("Failed to execute setApplicationVersion. Expected <String | null>, but got <".concat(typeof e,">."))},g.start=e=>{try{const t=e?"defined":"undefined";(0,o.p)(f.xS,["API/start/".concat(t,"/called")],void 0,n.D.metrics,p);const r=Object.values(n.D);if(void 0===e)e=r;else{if((e=Array.isArray(e)&&e.length?e:[e]).some((e=>!r.includes(e))))return(0,l.Z)("Invalid feature name supplied. Acceptable feature names are: ".concat(r));e.includes(n.D.pageViewEvent)||e.push(n.D.pageViewEvent)}e.forEach((e=>{p.emit("".concat(e,"-opt-in"))}))}catch(e){(0,l.Z)("An unexpected issue occurred",e)}},g.recordReplay=function(){(0,o.p)(f.xS,["API/recordReplay/called"],void 0,n.D.metrics,p),(0,o.p)("recordReplay",[],void 0,n.D.sessionReplay,p)},g.pauseReplay=function(){(0,o.p)(f.xS,["API/pauseReplay/called"],void 0,n.D.metrics,p),(0,o.p)("pauseReplay",[],void 0,n.D.sessionReplay,p)},g.interaction=function(){return(new y).get()};var A=y.prototype={createTracer:function(e,t){var r={},i=this,a="function"==typeof t;return(0,o.p)(f.xS,["API/createTracer/called"],void 0,n.D.metrics,p),(0,o.p)(m+"tracer",[(0,s.z)(),e,r],i,n.D.spa,p),function(){if(h.emit((a?"":"no-")+"fn-start",[(0,s.z)(),i,a],r),a)try{return t.apply(this,arguments)}catch(e){throw h.emit("fn-err",[arguments,this,e],r),e}finally{h.emit("fn-end",[(0,s.z)()],r)}}}};function w(e,t,r,i){return function(){return(0,o.p)(f.xS,["API/"+t+"/called"],void 0,n.D.metrics,p),i&&(0,o.p)(e+t,[(0,s.z)(),...arguments],r?null:this,i,p),r?void 0:this}}function _(){r.e(75).then(r.bind(r,7438)).then((t=>{let{setAPI:r}=t;r(e),(0,c.L)(e,"api")})).catch((()=>{(0,l.Z)("Downloading runtime APIs failed..."),(0,c.L)(e,"api",!0)}))}return["actionText","setName","setAttribute","save","ignore","onEnd","getContext","end","get"].forEach((e=>{A[e]=w(m,e,void 0,n.D.spa)})),g.noticeError=function(e,t){"string"==typeof e&&(e=new Error(e)),(0,o.p)(f.xS,["API/noticeError/called"],void 0,n.D.metrics,p),(0,o.p)("err",[e,(0,s.z)(),!1,t],void 0,n.D.jserrors,p)},d.il?(0,u.b2)((()=>_()),!0):_(),g}(e.agentIdentifier,y)),void 0===e.exposed&&(e.exposed=E),m=!0}},1926:(e,t,r)=>{r.nc=(()=>{try{return document?.currentScript?.nonce}catch(e){}return""})()},3325:(e,t,r)=>{"use strict";r.d(t,{D:()=>n,p:()=>i});const n={ajax:"ajax",jserrors:"jserrors",metrics:"metrics",pageAction:"page_action",pageViewEvent:"page_view_event",pageViewTiming:"page_view_timing",sessionReplay:"session_replay",sessionTrace:"session_trace",spa:"spa"},i={[n.pageViewEvent]:1,[n.pageViewTiming]:2,[n.metrics]:3,[n.jserrors]:4,[n.ajax]:5,[n.sessionTrace]:6,[n.pageAction]:7,[n.spa]:8,[n.sessionReplay]:9}}},n={};function i(e){var t=n[e];if(void 0!==t)return t.exports;var o=n[e]={exports:{}};return r[e](o,o.exports,i),o.exports}i.m=r,i.d=(e,t)=>{for(var r in t)i.o(t,r)&&!i.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},i.f={},i.e=e=>Promise.all(Object.keys(i.f).reduce(((t,r)=>(i.f[r](e,t),t)),[])),i.u=e=>"nr-rum-1.252.0.min.js",i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),e={},t="NRBA-1.252.0.PROD:",i.l=(r,n,o,a)=>{if(e[r])e[r].push(n);else{var s,c;if(void 0!==o)for(var u=document.getElementsByTagName("script"),d=0;d<u.length;d++){var l=u[d];if(l.getAttribute("src")==r||l.getAttribute("data-webpack")==t+o){s=l;break}}if(!s){c=!0;var f={75:"sha512-85KXSsv643MTRPulZfmcwj8IKIbJeT9JfNpsSBckCZNUr+o/ILbmpOISx04Ol69WzHRZplUy/y2FaJ3KUChaTw=="};(s=document.createElement("script")).charset="utf-8",s.timeout=120,i.nc&&s.setAttribute("nonce",i.nc),s.setAttribute("data-webpack",t+o),s.src=r,0!==s.src.indexOf(window.location.origin+"/")&&(s.crossOrigin="anonymous"),f[a]&&(s.integrity=f[a])}e[r]=[n];var g=(t,n)=>{s.onerror=s.onload=null,clearTimeout(p);var i=e[r];if(delete e[r],s.parentNode&&s.parentNode.removeChild(s),i&&i.forEach((e=>e(n))),t)return t(n)},p=setTimeout(g.bind(null,void 0,{type:"timeout",target:s}),12e4);s.onerror=g.bind(null,s.onerror),s.onload=g.bind(null,s.onload),c&&document.head.appendChild(s)}},i.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.p="https://js-agent.newrelic.com/",(()=>{var e={50:0,832:0};i.f.j=(t,r)=>{var n=i.o(e,t)?e[t]:void 0;if(0!==n)if(n)r.push(n[2]);else{var o=new Promise(((r,i)=>n=e[t]=[r,i]));r.push(n[2]=o);var a=i.p+i.u(t),s=new Error;i.l(a,(r=>{if(i.o(e,t)&&(0!==(n=e[t])&&(e[t]=void 0),n)){var o=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.src;s.message="Loading chunk "+t+" failed.\n("+o+": "+a+")",s.name="ChunkLoadError",s.type=o,s.request=a,n[1](s)}}),"chunk-"+t,t)}};var t=(t,r)=>{var n,o,[a,s,c]=r,u=0;if(a.some((t=>0!==e[t]))){for(n in s)i.o(s,n)&&(i.m[n]=s[n]);if(c)c(i)}for(t&&t(r);u<a.length;u++)o=a[u],i.o(e,o)&&e[o]&&e[o][0](),e[o]=0},r=self["webpackChunk:NRBA-1.252.0.PROD"]=self["webpackChunk:NRBA-1.252.0.PROD"]||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))})(),(()=>{"use strict";i(1926);var e=i(50);class t{#e(t){for(var r=arguments.length,n=new Array(r>1?r-1:0),i=1;i<r;i++)n[i-1]=arguments[i];if("function"==typeof this.api?.[t])return this.api[t](...n);(0,e.Z)("Call to agent api ".concat(t," failed. The API is not currently initialized."))}addPageAction(e,t){return this.#e("addPageAction",e,t)}setPageViewName(e,t){return this.#e("setPageViewName",e,t)}setCustomAttribute(e,t,r){return this.#e("setCustomAttribute",e,t,r)}noticeError(e,t){return this.#e("noticeError",e,t)}setUserId(e){return this.#e("setUserId",e)}setApplicationVersion(e){return this.#e("setApplicationVersion",e)}setErrorHandler(e){return this.#e("setErrorHandler",e)}finished(e){return this.#e("finished",e)}addRelease(e,t){return this.#e("addRelease",e,t)}start(e){return this.#e("start",e)}recordReplay(){return this.#e("recordReplay")}pauseReplay(){return this.#e("pauseReplay")}addToTrace(e){return this.#e("addToTrace",e)}setCurrentRouteName(e){return this.#e("setCurrentRouteName",e)}interaction(){return this.#e("interaction")}}var r=i(3325),n=i(234);const o=Object.values(r.D);function a(e){const t={};return o.forEach((r=>{t[r]=function(e,t){return!1!==(0,n.Mt)(t,"".concat(e,".enabled"))}(r,e)})),t}var s=i(7530);var c=i(8e3),u=i(5938),d=i(3960),l=i(385);class f extends u.W{constructor(e,t,r){let i=!(arguments.length>3&&void 0!==arguments[3])||arguments[3];super(e,t,r),this.auto=i,this.abortHandler=void 0,this.featAggregate=void 0,this.onAggregateImported=void 0,!1===(0,n.Mt)(this.agentIdentifier,"".concat(this.featureName,".autoStart"))&&(this.auto=!1),this.auto&&(0,c.R)(e,r)}importAggregator(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(this.featAggregate)return;if(!this.auto)return void this.ee.on("".concat(this.featureName,"-opt-in"),(()=>{(0,c.R)(this.agentIdentifier,this.featureName),this.auto=!0,this.importAggregator()}));const r=l.il&&!0===(0,n.Mt)(this.agentIdentifier,"privacy.cookies_enabled");let o;this.onAggregateImported=new Promise((e=>{o=e}));const a=async()=>{let n;try{if(r){const{setupAgentSession:e}=await i.e(75).then(i.bind(i,957));n=e(this.agentIdentifier)}}catch(t){(0,e.Z)("A problem occurred when starting up session manager. This page will not start or extend any session.",t)}try{if(!this.shouldImportAgg(this.featureName,n))return(0,c.L)(this.agentIdentifier,this.featureName),void o(!1);const{lazyFeatureLoader:e}=await i.e(75).then(i.bind(i,8582)),{Aggregate:r}=await e(this.featureName,"aggregate");this.featAggregate=new r(this.agentIdentifier,this.aggregator,t),o(!0)}catch(t){(0,e.Z)("Downloading and initializing ".concat(this.featureName," failed..."),t),this.abortHandler?.(),(0,c.L)(this.agentIdentifier,this.featureName,!0),o(!1)}};l.il?(0,d.b2)((()=>a()),!0):a()}shouldImportAgg(e,t){return e!==r.D.sessionReplay||!!n.Yu.MO&&(!1!==(0,n.Mt)(this.agentIdentifier,"session_trace.enabled")&&(!!t?.isNew||!!t?.state.sessionReplayMode))}}var g=i(7633);class p extends f{static featureName=g.t;constructor(e,t){let r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];super(e,t,g.t,r),this.importAggregator()}}var h=i(1117),v=i(1284);class m extends h.w{constructor(e){super(e),this.aggregatedData={}}store(e,t,r,n,i){var o=this.getBucket(e,t,r,i);return o.metrics=function(e,t){t||(t={count:0});return t.count+=1,(0,v.D)(e,(function(e,r){t[e]=b(r,t[e])})),t}(n,o.metrics),o}merge(e,t,r,n,i){var o=this.getBucket(e,t,n,i);if(o.metrics){var a=o.metrics;a.count+=r.count,(0,v.D)(r,(function(e,t){if("count"!==e){var n=a[e],i=r[e];i&&!i.c?a[e]=b(i.t,n):a[e]=function(e,t){if(!t)return e;t.c||(t=y(t.t));return t.min=Math.min(e.min,t.min),t.max=Math.max(e.max,t.max),t.t+=e.t,t.sos+=e.sos,t.c+=e.c,t}(i,a[e])}}))}else o.metrics=r}storeMetric(e,t,r,n){var i=this.getBucket(e,t,r);return i.stats=b(n,i.stats),i}getBucket(e,t,r,n){this.aggregatedData[e]||(this.aggregatedData[e]={});var i=this.aggregatedData[e][t];return i||(i=this.aggregatedData[e][t]={params:r||{}},n&&(i.custom=n)),i}get(e,t){return t?this.aggregatedData[e]&&this.aggregatedData[e][t]:this.aggregatedData[e]}take(e){for(var t={},r="",n=!1,i=0;i<e.length;i++)t[r=e[i]]=A(this.aggregatedData[r]),t[r].length&&(n=!0),delete this.aggregatedData[r];return n?t:null}}function b(e,t){return null==e?function(e){e?e.c++:e={c:1};return e}(t):t?(t.c||(t=y(t.t)),t.c+=1,t.t+=e,t.sos+=e*e,e>t.max&&(t.max=e),e<t.min&&(t.min=e),t):{t:e}}function y(e){return{t:e,min:e,max:e,sos:e*e,c:1}}function A(e){return"object"!=typeof e?[]:(0,v.D)(e,w)}function w(e,t){return t}var _=i(8632),x=i(4402),E=i(4351);var D=i(5546),k=i(7956),j=i(3239),S=i(7894),R=i(9251);class T extends f{static featureName=R.t;constructor(e,t){let r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];super(e,t,R.t,r),l.il&&((0,k.N)((()=>(0,D.p)("docHidden",[(0,S.z)()],void 0,R.t,this.ee)),!0),(0,j.bP)("pagehide",(()=>(0,D.p)("winPagehide",[(0,S.z)()],void 0,R.t,this.ee))),this.importAggregator())}}var I=i(3081);class P extends f{static featureName=I.t9;constructor(e,t){let r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];super(e,t,I.t9,r),this.importAggregator()}}new class extends t{constructor(t){let r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:(0,x.ky)(16);super(),l._A?(this.agentIdentifier=r,this.sharedAggregator=new m({agentIdentifier:this.agentIdentifier}),this.features={},(0,_.h5)(r,this),this.desiredFeatures=new Set(t.features||[]),this.desiredFeatures.add(p),(0,s.j)(this,t,t.loaderType||"agent"),this.run()):(0,e.Z)("Failed to initial the agent. Could not determine the runtime environment.")}get config(){return{info:(0,n.C5)(this.agentIdentifier),init:(0,n.P_)(this.agentIdentifier),loader_config:(0,n.DL)(this.agentIdentifier),runtime:(0,n.OP)(this.agentIdentifier)}}run(){try{const t=a(this.agentIdentifier),n=[...this.desiredFeatures];n.sort(((e,t)=>r.p[e.featureName]-r.p[t.featureName])),n.forEach((n=>{if(t[n.featureName]||n.featureName===r.D.pageViewEvent){const i=function(e){switch(e){case r.D.ajax:return[r.D.jserrors];case r.D.sessionTrace:return[r.D.ajax,r.D.pageViewEvent];case r.D.sessionReplay:return[r.D.sessionTrace];case r.D.pageViewTiming:return[r.D.pageViewEvent];default:return[]}}(n.featureName);i.every((e=>t[e]))||(0,e.Z)("".concat(n.featureName," is enabled but one or more dependent features has been disabled (").concat((0,E.P)(i),"). This may cause unintended consequences or missing data...")),this.features[n.featureName]=new n(this.agentIdentifier,this.sharedAggregator)}}))}catch(t){(0,e.Z)("Failed to initialize all enabled instrument classes (agent aborted) -",t);for(const e in this.features)this.features[e].abortHandler?.();const r=(0,_.fP)();return delete r.initializedAgents[this.agentIdentifier]?.api,delete r.initializedAgents[this.agentIdentifier]?.features,delete this.sharedAggregator,r.ee?.abort(),delete r.ee?.get(this.agentIdentifier),!1}}}({features:[p,T,P],loaderType:"lite"})})()})();</script>
<title>EJScreen Map Descriptions | US EPA</title>
<link rel="icon" type="image/x-icon" href="/themes/epa_theme/images/favicon.ico">
<meta name="msapplication-TileColor" content="#FFFFFF">
<meta name="msapplication-TileImage" content="/themes/epa_theme/images/favicon-144.png">
<meta name="application-name" content="">
<meta name="msapplication-config" content="/themes/epa_theme/images/ieconfig.xml">
<link rel="apple-touch-icon-precomposed" sizes="196x196" href="/themes/epa_theme/images/favicon-196.png">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="/themes/epa_theme/images/favicon-152.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/themes/epa_theme/images/favicon-144.png">
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="/themes/epa_theme/images/favicon-120.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/themes/epa_theme/images/favicon-114.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/themes/epa_theme/images/favicon-72.png">
<link rel="apple-touch-icon-precomposed" href="/themes/epa_theme/images/favicon-180.png">
<link rel="icon" href="/themes/epa_theme/images/favicon-32.png" sizes="32x32">
<link rel="preload" href="/themes/epa_theme/fonts/source-sans-pro/sourcesanspro-regular-webfont.woff2" as="font" crossorigin="anonymous">
<link rel="preload" href="/themes/epa_theme/fonts/source-sans-pro/sourcesanspro-bold-webfont.woff2" as="font" crossorigin="anonymous">
<link rel="preload" href="/themes/epa_theme/fonts/source-sans-pro/sourcesanspro-italic-webfont.woff2" as="font" crossorigin="anonymous">
<link rel="preload" href="/themes/epa_theme/fonts/merriweather/Latin-Merriweather-Bold.woff2" as="font" crossorigin="anonymous">
<link rel="stylesheet" media="all" href="/core/themes/stable/css/system/components/ajax-progress.module.css?s8eal4" />
<link rel="stylesheet" media="all" href="/core/themes/stable/css/system/components/autocomplete-loading.module.css?s8eal4" />
<link rel="stylesheet" media="all" href="/core/themes/stable/css/system/components/js.module.css?s8eal4" />
<link rel="stylesheet" media="all" href="/core/themes/stable/css/system/components/sticky-header.module.css?s8eal4" />
<link rel="stylesheet" media="all" href="/core/themes/stable/css/system/components/system-status-counter.css?s8eal4" />
<link rel="stylesheet" media="all" href="/core/themes/stable/css/system/components/system-status-report-counters.css?s8eal4" />
<link rel="stylesheet" media="all" href="/core/themes/stable/css/system/components/system-status-report-general-info.css?s8eal4" />
<link rel="stylesheet" media="all" href="/core/themes/stable/css/system/components/tabledrag.module.css?s8eal4" />
<link rel="stylesheet" media="all" href="/core/themes/stable/css/system/components/tablesort.module.css?s8eal4" />
<link rel="stylesheet" media="all" href="/core/themes/stable/css/system/components/tree-child.module.css?s8eal4" />
<link rel="stylesheet" media="all" href="/modules/contrib/paragraphs/css/paragraphs.unpublished.css?s8eal4" />
<link rel="stylesheet" media="all" href="/themes/epa_theme/fonts/noto-sans-arabic.css?s8eal4" />
<link rel="stylesheet" media="all" href="/themes/epa_theme/fonts/noto-sans-kr.css?s8eal4" />
<link rel="stylesheet" media="all" href="/themes/epa_theme/fonts/noto-sans-bn.css?s8eal4" />
<link rel="stylesheet" media="all" href="/themes/epa_theme/fonts/noto-sans-gu.css?s8eal4" />
<link rel="stylesheet" media="all" href="/themes/epa_theme/fonts/noto-sans-sc.css?s8eal4" />
<link rel="stylesheet" media="all" href="/themes/epa_theme/fonts/noto-sans-tc.css?s8eal4" />
<link rel="stylesheet" media="all" href="/themes/epa_theme/css/styles.css?s8eal4" />
<link rel="stylesheet" media="all" href="/themes/epa_theme/css-lib/colorbox.min.css?s8eal4" />
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-L8ZB');</script>
<!-- End Google Tag Manager -->
</head>
<body class="path-node not-front node-page node-page--node-type-page" id="top">
<div class="skiplinks" role="navigation" aria-labelledby="skip-to-main">
<a id="skip-to-main" href="#main" class="skiplinks__link visually-hidden focusable">Skip to main content</a>
</div>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-L8ZB" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="dialog-off-canvas-main-canvas" data-off-canvas-main-canvas>
<section class="usa-banner" aria-label="Official website of the United States government">
<div class="usa-accordion"> <header class="usa-banner__header">
<div class="usa-banner__inner">
<div class="grid-col-auto">
<img class="usa-banner__header-flag" aria-hidden="true" src="/themes/epa_theme/images/us_flag_small.png" alt="U.S. flag" height="11px" width="16px" />
</div>
<div class="grid-col-fill tablet:grid-col-auto" aria-hidden="true">
<p class="usa-banner__header-text">An official website of the United States government</p>
<p class="usa-banner__header-action">Here’s how you know</p></div>
<button type="button" class="usa-accordion__button usa-banner__button" aria-expanded="false" aria-controls="gov-banner">
<span class="usa-banner__button-text">Here’s how you know</span>
</button>
</div>
</header>
<div class="usa-banner__content usa-accordion__content" id="gov-banner">
<div class="grid-row grid-gap-lg">
<div class="usa-banner__guidance tablet:grid-col-6">
<img class="usa-banner__icon usa-media-block__img" src="/themes/epa_theme/images/icon-dot-gov.svg" alt="Dot gov">
<div class="usa-media-block__body">
<p>
<strong>Official websites use .gov</strong>
<br> A <strong>.gov</strong> website belongs to an official government organization in the United States.
</p>
</div>
</div>
<div class="usa-banner__guidance tablet:grid-col-6">
<img class="usa-banner__icon usa-media-block__img" src="/themes/epa_theme/images/icon-https.svg" alt="HTTPS">
<div class="usa-media-block__body">
<p>
<strong>Secure .gov websites use HTTPS</strong>
<br> A <strong>lock</strong> (<span class="icon-lock"><svg xmlns="http://www.w3.org/2000/svg" width="52" height="64" viewBox="0 0 52 64" class="usa-banner__lock-image" role="img" aria-labelledby="banner-lock-title banner-lock-description"><title id="banner-lock-title">Lock</title><desc id="banner-lock-description">A locked padlock</desc><path fill="#000000" fill-rule="evenodd" d="M26 0c10.493 0 19 8.507 19 19v9h3a4 4 0 0 1 4 4v28a4 4 0 0 1-4 4H4a4 4 0 0 1-4-4V32a4 4 0 0 1 4-4h3v-9C7 8.507 15.507 0 26 0zm0 8c-5.979 0-10.843 4.77-10.996 10.712L15 19v9h22v-9c0-6.075-4.925-11-11-11z"/></svg></span>) or <strong>https://</strong> means you’ve safely connected to the .gov website. Share sensitive information only on official, secure websites.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="js-view-dom-id-epa-alerts--public">
<noscript>
<div class="usa-site-alert usa-site-alert--info">
<div class="usa-alert">
<div class="usa-alert__body">
<div class="usa-alert__text">
<p>JavaScript appears to be disabled on this computer. Please <a href="/alerts">click here to see any active alerts</a>.</p>
</div>
</div>
</div>
</div>
</noscript>
</div>
<header class="l-header js-header-search">
<div class="usa-overlay"></div>
<div class="l-constrain">
<div class="l-header__navbar">
<div class="l-header__branding">
<button
type="button"
class="l-header__search-button"
aria-controls="header-search-drawer"
aria-expanded="false"
aria-label="Open search drawer"
>
<svg class="icon l-header__search-button-icon-open" aria-hidden="true"><use href="/themes/epa_theme/images/sprite.artifact.svg#magnifying-glass"></use></svg>
<svg class="icon l-header__search-button-icon-close" aria-hidden="true"><use href="/themes/epa_theme/images/sprite.artifact.svg#xmark"></use></svg> </button>
<a class="site-logo" href="/" aria-label="Home" title="Home" rel="home">
<span class="site-logo__image">
<svg class="site-logo__svg-main" aria-hidden="true" viewBox="0 0 454.1 154.7" xmlns="http://www.w3.org/2000/svg"><path d="m112.8 61.2c-4.8 18.6-22.9 33.3-42.9 33.3-20.1 0-38-14.7-42.9-33.4h.2s9.8 10.3-.2 0c3.1 3.1 6.2 4.4 10.7 4.4s7.7-1.3 10.7-4.4c3.1 3.1 6.3 4.5 10.9 4.4 4.5 0 7.6-1.3 10.7-4.4 3.1 3.1 6.2 4.4 10.7 4.4s7.7-1.3 10.7-4.4c3.1 3.1 6.3 4.5 10.9 4.4 4.3 0 7.4-1.2 10.5-4.3z"/><path d="m113.2 51.2c0-24-19.4-43.5-43.3-43.5-24 0-43.5 19.5-43.5 43.5h39.1c-4.8-1.8-8.1-6.3-8.1-11.6 0-7 5.7-12.5 12.5-12.5 7 0 12.7 5.5 12.7 12.5 0 5.2-3.1 9.6-7.6 11.6z"/><path d="m72.6 147c.7-36.9 29.7-68.8 66.9-70 0 37.2-30 68-66.9 70z"/><path d="m67.1 147c-.7-36.9-29.7-68.8-67.1-70 0 37.2 30.2 68 67.1 70z"/><path d="m240 10.8h-87.9v133.1h87.9v-20.4h-60.3v-36h60.3v-21h-60.3v-35h60.3z"/><path d="m272.8 66.5h27.1c9.1 0 15.2-8.6 15.1-17.7-.1-9-6.1-17.3-15.1-17.3h-25.3v112.4h-27.8v-133.1h62.3c20.2 0 35 17.8 35.2 38 .2 20.4-14.8 38.7-35.2 38.7h-36.3z"/><path d="m315.9 143.9h29.7l12.9-35h54.2l-8.1-21.9h-38.4l18.9-50.7 39.2 107.6h29.7l-53.1-133.1h-33.7z"/></svg>
<svg class="site-logo__svg-text" aria-hidden="true" viewBox="0 0 595.4 154.7" xmlns="http://www.w3.org/2000/svg"><path d="m9 8.5v22.4c0 1.9.2 3.3.5 4.3s.7 1.7 1 2.2c1.2 1.4 2.5 2.4 3.9 2.9 1.5.5 2.8.7 4.1.7 2.4 0 4.2-.4 5.5-1.3 1.3-.8 2.2-1.8 2.8-2.9s.9-2.3 1-3.4.1-2 .1-2.6v-22.3h4.7v22.3 1.7c0 .7-.1 1.5-.4 2.4-.3 1.8-1.2 3.6-2.5 5.4-1.8 2.1-3.8 3.5-6 4.2-2.2.6-4 .9-5.3.9-1.8 0-3.8-.3-6.2-1.1s-4.5-2.3-6.2-4.7c-.5-.8-1-1.8-1.4-3.2-.4-1.3-.6-3.3-.6-5.9v-22z"/><path d="m43.2 22.2v-2.9l4.6.1-.1 4.1c.2-.3.4-.7.8-1.2.3-.5.8-.9 1.4-1.4s1.4-.9 2.3-1.3c.9-.3 2.1-.5 3.4-.4.6 0 1.4.1 2.4.3.9.2 1.9.6 2.9 1.2s1.8 1.5 2.4 2.6c.6 1.2.9 2.8.9 4.7l-.4 17-4.6-.1.4-16c0-.9 0-1.7-.2-2.4-.1-.7-.5-1.3-1.1-1.9-1.2-1.2-2.6-1.8-4.3-1.8s-3.1.5-4.4 1.7-2 3.1-2.1 5.7l-.3 14.5-4.5-.1z"/><path d="m72.9 8.6h5.5v5.1h-5.5zm.5 10.9h4.6v25.1h-4.6z"/><path d="m83.5 19.4h4.3v-5.3l4.5-1.5v6.8h5.4v3.4h-5.4v15.1c0 .3 0 .6.1 1 0 .4.1.7.4 1.1.2.4.5.6 1 .8.4.3 1 .4 1.8.4 1 0 1.7-.1 2.2-.2v3.7c-.9.2-2.1.3-3.8.3-2.1 0-3.6-.4-4.6-1.2s-1.5-2.2-1.5-4.2v-16.8h-4.3v-3.4z"/><path d="m106.6 32.9c-.1 2.6.5 4.8 1.7 6.5 1.1 1.7 2.9 2.6 5.3 2.6 1.5 0 2.8-.4 3.9-1.3 1-.8 1.6-2.2 1.8-4h4.6c0 .6-.2 1.4-.4 2.3-.3 1-.8 2-1.7 3-.2.3-.6.6-1 1-.5.4-1 .7-1.7 1.1s-1.5.6-2.4.8c-.9.3-2 .4-3.3.4-7.6-.2-11.3-4.5-11.3-12.9 0-2.5.3-4.8 1-6.8s2-3.7 3.8-5.1c1.2-.8 2.4-1.3 3.7-1.6 1.3-.2 2.2-.3 3-.3 2.7 0 4.8.6 6.3 1.6s2.5 2.3 3.1 3.9c.6 1.5 1 3.1 1.1 4.6.1 1.6.1 2.9 0 4h-17.5m12.9-3c0-.3 0-.7 0-1.1s0-.8-.1-1.2c-.1-.9-.4-1.7-.8-2.5s-1-1.5-1.8-2c-.9-.5-2-.8-3.4-.8-.8 0-1.5.1-2.3.3s-1.5.7-2.2 1.3-1.2 1.3-1.6 2.3-.7 2.2-.8 3.6h13z"/><path d="m148.6 8.6h4.6v32.1c0 1 .1 2.3.2 4h-4.6l-.1-4c-.2.3-.4.7-.7 1.2s-.8 1-1.4 1.5c-1 .7-2 1.2-3.1 1.4-.5.1-1 .2-1.5.3s-.9.1-1.4.1c-.4 0-.8 0-1.3-.1s-1.1-.2-1.7-.3c-1.1-.3-2.3-.9-3.4-1.8s-2.1-2.2-2.9-3.8c-.8-1.7-1.2-3.9-1.2-6.6.1-4.8 1.2-8.3 3.4-10.5 2.1-2.1 4.7-3.2 7.6-3.2 1.3 0 2.4.2 3.4.5.9.3 1.6.7 2.2 1.2.6.4 1 .9 1.3 1.4s.6.8.7 1.1zm.1 23.1c0-1.9-.2-3.3-.5-4.4-.4-1.1-.8-2-1.4-2.6-.5-.7-1.2-1.3-2-1.8-.9-.5-2-.7-3.3-.7-1.7 0-2.9.5-3.8 1.3s-1.6 1.9-2 3.1-.7 2.3-.7 3.4c-.1 1.1-.2 1.9-.1 2.4 0 1.1.1 2.2.3 3.4.2 1.1.5 2.2 1 3.1.5 1 1.2 1.7 2 2.3.9.6 2 .9 3.3.9 1.8 0 3.2-.5 4.2-1.4 1-.8 1.7-1.8 2.1-3s.7-2.4.8-3.4c.1-1.4.1-2.1.1-2.6z"/><path d="m179.6 34.1c0 .6.1 1.3.3 2.1.1.8.5 1.6 1 2.3.5.8 1.4 1.4 2.5 1.9s2.7.8 4.7.8c1.8 0 3.3-.3 4.4-.8s1.9-1.1 2.5-1.8 1-1.5 1.1-2.2.2-1.2.2-1.7c0-1-.2-1.9-.5-2.6-.4-.6-.9-1.2-1.6-1.6-1.4-.8-3.4-1.4-5.9-2-4.9-1.1-8.1-2.2-9.5-3.2s-2.3-2.2-2.9-3.5c-.6-1.2-.8-2.4-.8-3.6.1-3.7 1.5-6.4 4.2-8.1 2.6-1.7 5.7-2.5 9.1-2.5 1.3 0 2.9.2 4.8.5 1.9.4 3.6 1.4 5 3 .5.5.9 1.1 1.2 1.7.3.5.5 1.1.6 1.6.2 1.1.3 2.1.3 2.9h-5c-.2-2.2-1-3.7-2.4-4.5-1.5-.7-3.1-1.1-4.9-1.1-5.1.1-7.7 2-7.8 5.8 0 1.5.5 2.7 1.6 3.5 1 .8 2.6 1.4 4.7 1.9 4 1 6.7 1.8 8.1 2.2.8.2 1.4.5 1.8.7.5.2 1 .5 1.4.9.8.5 1.4 1.1 1.9 1.8s.8 1.4 1.1 2.1c.3 1.4.5 2.5.5 3.4 0 3.3-1.2 6-3.5 8-2.3 2.1-5.8 3.2-10.3 3.3-1.4 0-3.2-.3-5.4-.8-1-.3-2-.7-3-1.2-.9-.5-1.8-1.2-2.5-2.1-.9-1.4-1.5-2.7-1.7-4.1-.3-1.3-.4-2.4-.3-3.2h5z"/><path d="m205.7 19.4h4.3v-5.3l4.5-1.5v6.8h5.4v3.4h-5.4v15.1c0 .3 0 .6.1 1 0 .4.1.7.4 1.1.2.4.5.6 1 .8.4.3 1 .4 1.8.4 1 0 1.7-.1 2.2-.2v3.7c-.9.2-2.1.3-3.8.3-2.1 0-3.6-.4-4.6-1.2s-1.5-2.2-1.5-4.2v-16.8h-4.4z"/><path d="m241 44.6c-.3-1.2-.5-2.5-.4-3.7-.5 1-1.1 1.8-1.7 2.4-.7.6-1.4 1.1-2 1.4-1.4.5-2.7.8-3.7.8-2.8 0-4.9-.8-6.4-2.2s-2.2-3.1-2.2-5.2c0-1 .2-2.3.8-3.7s1.7-2.6 3.5-3.7c1.4-.7 2.9-1.2 4.5-1.5 1.6-.1 2.9-.2 3.9-.2s2.1 0 3.3.1c.1-2.9-.2-4.8-.9-5.6-.5-.6-1.1-1.1-1.9-1.3s-1.6-.4-2.3-.4c-1.1 0-2 .2-2.6.5-.7.3-1.2.7-1.5 1.2s-.5.9-.6 1.4-.2.9-.2 1.2h-4.6c.1-.7.2-1.4.4-2.3.2-.8.6-1.6 1.3-2.5.5-.6 1-1 1.7-1.3.6-.3 1.3-.6 2-.8 1.5-.4 2.8-.6 4.2-.6 1.8 0 3.6.3 5.2.9s2.8 1.6 3.4 2.9c.4.7.6 1.4.7 2s.1 1.2.1 1.8l-.2 12c0 1 .1 3.1.4 6.3h-4.2m-.5-12.1c-.7-.1-1.6-.1-2.6-.1-.5 0-1.2 0-2.1 0-1 .1-2 .3-3 .6s-1.9.8-2.6 1.5c-.8.7-1.2 1.7-1.2 3 0 .4.1.8.2 1.3s.4 1 .8 1.5.9.8 1.6 1.1 1.5.5 2.5.5c2.3 0 4.1-.9 5.2-2.7.5-.8.8-1.7 1-2.7.1-.9.2-2.2.2-4z"/><path d="m250.2 19.4h4.3v-5.3l4.5-1.5v6.8h5.4v3.4h-5.4v15.1c0 .3 0 .6.1 1 0 .4.1.7.4 1.1.2.4.5.6 1 .8.4.3 1 .4 1.8.4 1 0 1.7-.1 2.2-.2v3.7c-.9.2-2.1.3-3.8.3-2.1 0-3.6-.4-4.6-1.2s-1.5-2.2-1.5-4.2v-16.8h-4.3v-3.4z"/><path d="m273.3 32.9c-.1 2.6.5 4.8 1.7 6.5 1.1 1.7 2.9 2.6 5.3 2.6 1.5 0 2.8-.4 3.9-1.3 1-.8 1.6-2.2 1.8-4h4.6c0 .6-.2 1.4-.4 2.3-.3 1-.8 2-1.7 3-.2.3-.6.6-1 1-.5.4-1 .7-1.7 1.1s-1.5.6-2.4.8c-.9.3-2 .4-3.3.4-7.6-.2-11.3-4.5-11.3-12.9 0-2.5.3-4.8 1-6.8s2-3.7 3.8-5.1c1.2-.8 2.4-1.3 3.7-1.6 1.3-.2 2.2-.3 3-.3 2.7 0 4.8.6 6.3 1.6s2.5 2.3 3.1 3.9c.6 1.5 1 3.1 1.1 4.6.1 1.6.1 2.9 0 4h-17.5m12.9-3c0-.3 0-.7 0-1.1s0-.8-.1-1.2c-.1-.9-.4-1.7-.8-2.5s-1-1.5-1.8-2c-.9-.5-2-.8-3.4-.8-.8 0-1.5.1-2.3.3s-1.5.7-2.2 1.3-1.2 1.3-1.6 2.3-.7 2.2-.8 3.6h13z"/><path d="m301 37.2c0 .5.1 1 .2 1.4.1.5.4 1 .8 1.5s.9.8 1.6 1.1 1.6.5 2.7.5c1 0 1.8-.1 2.5-.3s1.3-.6 1.7-1.2c.5-.7.8-1.5.8-2.4 0-1.2-.4-2-1.3-2.5s-2.2-.9-4.1-1.2c-1.3-.3-2.4-.6-3.6-1-1.1-.3-2.1-.8-3-1.3s-1.5-1.2-2-2.1c-.5-.8-.8-1.9-.8-3.2 0-2.4.9-4.2 2.6-5.6 1.7-1.3 4-2 6.8-2.1 1.6 0 3.3.3 5 .8 1.7.6 2.9 1.6 3.7 3.1.4 1.4.6 2.6.6 3.7h-4.6c0-1.8-.6-3-1.7-3.5-1.1-.4-2.1-.6-3.1-.6-.2 0-.5 0-1 0s-1.1.2-1.7.4-1.1.5-1.5 1.1c-.5.5-.7 1.2-.7 2.1 0 1.1.5 1.9 1.3 2.3.7.4 1.5.7 2.1.9 3.3.7 5.6 1.3 6.9 1.8 1.3.4 2.2 1 2.8 1.7.7.7 1.1 1.4 1.4 2.2s.4 1.6.4 2.5c0 1.4-.3 2.7-.9 3.8s-1.4 2-2.4 2.6c-1.1.6-2.2 1-3.4 1.3s-2.5.4-3.8.4c-2.5 0-4.7-.6-6.6-1.8-1.8-1.2-2.8-3.3-2.9-6.3z"/><path d="m3.4 58.5h21.9v4.2h-17.1v11.3h16.3v4.2h-16.3v12.1h17.5v4.3h-22.3z"/><path d="m34.7 72.4-.1-2.9h4.6v4.1c.2-.3.4-.8.7-1.2.3-.5.8-1 1.3-1.5.6-.5 1.4-1 2.3-1.3s2-.5 3.4-.5c.6 0 1.4.1 2.4.2.9.2 1.9.5 2.9 1.1s1.8 1.4 2.5 2.5c.6 1.2 1 2.7 1 4.7v17.1h-4.6v-16c0-.9-.1-1.7-.2-2.4-.2-.7-.5-1.3-1.1-1.9-1.2-1.1-2.6-1.7-4.3-1.7s-3.1.6-4.3 1.8c-1.3 1.2-2 3.1-2 5.7v14.5h-4.5z"/><path d="m60.3 69.5h5.1l7.7 19.9 7.6-19.9h5l-10.6 25.1h-4.6z"/><path d="m91.4 58.6h5.5v5.1h-5.5zm.5 10.9h4.6v25.1h-4.6z"/><path d="m106 74.7c0-1.8-.1-3.5-.3-5.1h4.6l.1 4.9c.5-1.8 1.4-3 2.5-3.7s2.2-1.2 3.3-1.3c1.4-.2 2.4-.2 3.1-.1v4.6c-.2-.1-.5-.2-.9-.2-.3 0-.8 0-1.3 0-1.3 0-2.4.2-3.3.5-.9.4-1.5.9-2 1.6-.9 1.4-1.4 3.2-1.3 5.4v13.3h-4.6v-19.9z"/><path d="m123.3 82.4c0-1.6.2-3.2.6-4.8s1.1-3 2-4.4c1-1.3 2.2-2.4 3.8-3.2s3.6-1.2 5.9-1.2c2.4 0 4.5.4 6.1 1.3 1.5.9 2.7 2 3.6 3.3s1.5 2.8 1.8 4.3c.2.8.3 1.5.4 2.2v2.2c0 3.7-1 6.9-3 9.5s-5.1 4-9.3 4c-4-.1-7-1.4-9-3.9-1.9-2.5-2.9-5.6-2.9-9.3m4.8-.3c0 2.7.6 5 1.8 6.9 1.2 2 3 3 5.6 3.1.9 0 1.8-.2 2.7-.5.8-.3 1.6-.9 2.3-1.7s1.3-1.9 1.8-3.2c.4-1.3.6-2.9.6-4.7-.1-6.4-2.5-9.6-7.1-9.6-.7 0-1.5.1-2.4.3-.8.3-1.7.8-2.5 1.6-.8.7-1.4 1.7-1.9 3-.6 1.1-.9 2.8-.9 4.8z"/><path d="m155.9 72.4-.1-2.9h4.6v4.1c.2-.3.4-.8.7-1.2.3-.5.8-1 1.3-1.5.6-.5 1.4-1 2.3-1.3s2-.5 3.4-.5c.6 0 1.4.1 2.4.2.9.2 1.9.5 2.9 1.1s1.8 1.4 2.5 2.5c.6 1.2 1 2.7 1 4.7v17.1h-4.6v-16c0-.9-.1-1.7-.2-2.4-.2-.7-.5-1.3-1.1-1.9-1.2-1.1-2.6-1.7-4.3-1.7s-3.1.6-4.3 1.8c-1.3 1.2-2 3.1-2 5.7v14.5h-4.6z"/><path d="m185.7 72.8-.1-3.3h4.6v3.6c1.2-1.9 2.6-3.2 4.1-3.7 1.5-.4 2.7-.6 3.8-.6 1.4 0 2.6.2 3.6.5.9.3 1.7.7 2.3 1.1 1.1 1 1.9 2 2.3 3.1.2-.4.5-.8 1-1.3.4-.5.9-1 1.5-1.6.6-.5 1.5-.9 2.5-1.3 1-.3 2.2-.5 3.5-.5.9 0 1.9.1 3 .3 1 .2 2 .7 3 1.3s1.7 1.5 2.3 2.7.9 2.7.9 4.6v16.9h-4.6v-16.2c0-1.1-.1-2-.2-2.5-.1-.6-.3-1-.6-1.3-.4-.6-1-1.2-1.8-1.6s-1.8-.6-3.1-.6c-1.5 0-2.7.4-3.6 1-.4.3-.8.5-1.1.9-.3.3-.6.6-.8.8-.5.8-.8 1.8-1 2.8-.1 1.1-.2 2-.1 2.6v14.1h-4.6v-16.7c0-1.6-.5-2.9-1.4-4-.9-1-2.3-1.5-4.2-1.5-1.6 0-2.9.4-3.8 1.1s-1.5 1.2-1.8 1.7c-.5.7-.8 1.5-.9 2.5-.1.9-.2 1.8-.2 2.6v14.3h-4.5z"/><path d="m236.2 82.9c-.1 2.6.5 4.8 1.7 6.5 1.1 1.7 2.9 2.6 5.3 2.6 1.5 0 2.8-.4 3.9-1.3 1-.8 1.6-2.2 1.8-4h4.6c0 .6-.2 1.4-.4 2.3-.3 1-.8 2-1.7 3-.2.3-.6.6-1 1-.5.4-1 .7-1.7 1.1s-1.5.6-2.4.8c-.9.3-2 .4-3.3.4-7.6-.2-11.3-4.5-11.3-12.9 0-2.5.3-4.8 1-6.8s2-3.7 3.8-5.1c1.2-.8 2.4-1.3 3.7-1.6 1.3-.2 2.2-.3 3-.3 2.7 0 4.8.6 6.3 1.6s2.5 2.3 3.1 3.9c.6 1.5 1 3.1 1.1 4.6.1 1.6.1 2.9 0 4h-17.5m12.8-3c0-.3 0-.7 0-1.1s0-.8-.1-1.2c-.1-.9-.4-1.7-.8-2.5s-1-1.5-1.8-2c-.9-.5-2-.8-3.4-.8-.8 0-1.5.1-2.3.3s-1.5.7-2.2 1.3-1.2 1.3-1.6 2.3-.7 2.2-.8 3.6z"/><path d="m261.4 72.4-.1-2.9h4.6v4.1c.2-.3.4-.8.7-1.2.3-.5.8-1 1.3-1.5.6-.5 1.4-1 2.3-1.3s2-.5 3.4-.5c.6 0 1.4.1 2.4.2.9.2 1.9.5 2.9 1.1s1.8 1.4 2.5 2.5c.6 1.2 1 2.7 1 4.7v17.1h-4.6v-16c0-.9-.1-1.7-.2-2.4-.2-.7-.5-1.3-1.1-1.9-1.2-1.1-2.6-1.7-4.3-1.7s-3.1.6-4.3 1.8c-1.3 1.2-2 3.1-2 5.7v14.5h-4.6z"/><path d="m288 69.4h4.3v-5.2l4.5-1.5v6.8h5.4v3.4h-5.4v15.1c0 .3 0 .6.1 1 0 .4.1.7.4 1.1.2.4.5.6 1 .8.4.3 1 .4 1.8.4 1 0 1.7-.1 2.2-.2v3.6c-.9.2-2.1.3-3.8.3-2.1 0-3.6-.4-4.6-1.2s-1.5-2.2-1.5-4.2v-16.8h-4.3v-3.4z"/><path d="m323.3 94.6c-.3-1.2-.5-2.5-.4-3.7-.5 1-1.1 1.8-1.7 2.4-.7.6-1.4 1.1-2 1.4-1.4.5-2.7.8-3.7.8-2.8 0-4.9-.8-6.4-2.2s-2.2-3.1-2.2-5.2c0-1 .2-2.3.8-3.7s1.7-2.6 3.5-3.7c1.4-.7 2.9-1.2 4.5-1.5 1.6-.1 2.9-.2 3.9-.2s2.1 0 3.3.1c.1-2.9-.2-4.8-.9-5.6-.5-.6-1.1-1.1-1.9-1.3s-1.6-.4-2.3-.4c-1.1 0-2 .2-2.6.5-.7.3-1.2.7-1.5 1.2s-.5.9-.6 1.4-.2.9-.2 1.2h-4.6c.1-.7.2-1.4.4-2.3.2-.8.6-1.6 1.3-2.5.5-.6 1-1 1.7-1.3.6-.3 1.3-.6 2-.8 1.5-.4 2.8-.6 4.2-.6 1.8 0 3.6.3 5.2.9s2.8 1.6 3.4 2.9c.4.7.6 1.4.7 2s.1 1.2.1 1.8l-.2 12c0 1 .1 3.1.4 6.3zm-.5-12.2c-.7-.1-1.6-.1-2.6-.1-.5 0-1.2 0-2.1 0-1 .1-2 .3-3 .6s-1.9.8-2.6 1.5c-.8.7-1.2 1.7-1.2 3 0 .4.1.8.2 1.3s.4 1 .8 1.5.9.8 1.6 1.1 1.5.5 2.5.5c2.3 0 4.1-.9 5.2-2.7.5-.8.8-1.7 1-2.7.1-.9.2-2.2.2-4z"/><path d="m336.4 58.6h4.6v36.1h-4.6z"/><path d="m364.1 58.5h11.7c2.1 0 3.9.1 5.5.4.8.2 1.5.4 2.2.9.7.4 1.3.9 1.8 1.6 1.7 1.9 2.6 4.2 2.6 7 0 2.7-.9 5.1-2.8 7.1-.8.9-2 1.7-3.6 2.2-1.6.6-3.9.9-6.9.9h-5.7v16.1h-4.8zm4.8 15.9h5.8c.8 0 1.7-.1 2.6-.2s1.8-.3 2.6-.7 1.5-1 2-1.9c.5-.8.8-2 .8-3.4s-.2-2.5-.7-3.3-1.1-1.3-1.9-1.7c-1.6-.5-3.1-.8-4.5-.7h-6.8v11.9z"/><path d="m393.8 74.7c0-1.8-.1-3.5-.3-5.1h4.6l.1 4.9c.5-1.8 1.4-3 2.5-3.7s2.2-1.2 3.3-1.3c1.4-.2 2.4-.2 3.1-.1v4.6c-.2-.1-.5-.2-.9-.2-.3 0-.8 0-1.3 0-1.3 0-2.4.2-3.3.5-.9.4-1.5.9-2 1.6-.9 1.4-1.4 3.2-1.3 5.4v13.3h-4.6v-19.9z"/><path d="m411.2 82.4c0-1.6.2-3.2.6-4.8s1.1-3 2-4.4c1-1.3 2.2-2.4 3.8-3.2s3.6-1.2 5.9-1.2c2.4 0 4.5.4 6.1 1.3 1.5.9 2.7 2 3.6 3.3s1.5 2.8 1.8 4.3c.2.8.3 1.5.4 2.2v2.2c0 3.7-1 6.9-3 9.5s-5.1 4-9.3 4c-4-.1-7-1.4-9-3.9-1.9-2.5-2.9-5.6-2.9-9.3m4.8-.3c0 2.7.6 5 1.8 6.9 1.2 2 3 3 5.6 3.1.9 0 1.8-.2 2.7-.5.8-.3 1.6-.9 2.3-1.7s1.3-1.9 1.8-3.2c.4-1.3.6-2.9.6-4.7-.1-6.4-2.5-9.6-7.1-9.6-.7 0-1.5.1-2.4.3-.8.3-1.7.8-2.5 1.6-.8.7-1.4 1.7-1.9 3-.7 1.1-.9 2.8-.9 4.8z"/><path d="m439.8 69.4h4.3v-5.2l4.5-1.5v6.8h5.4v3.4h-5.4v15.1c0 .3 0 .6.1 1 0 .4.1.7.4 1.1.2.4.5.6 1 .8.4.3 1 .4 1.8.4 1 0 1.7-.1 2.2-.2v3.6c-.9.2-2.1.3-3.8.3-2.1 0-3.6-.4-4.6-1.2s-1.5-2.2-1.5-4.2v-16.8h-4.3v-3.4z"/><path d="m462.9 82.9c-.1 2.6.5 4.8 1.7 6.5 1.1 1.7 2.9 2.6 5.3 2.6 1.5 0 2.8-.4 3.9-1.3 1-.8 1.6-2.2 1.8-4h4.6c0 .6-.2 1.4-.4 2.3-.3 1-.8 2-1.7 3-.2.3-.6.6-1 1-.5.4-1 .7-1.7 1.1s-1.5.6-2.4.8c-.9.3-2 .4-3.3.4-7.6-.2-11.3-4.5-11.3-12.9 0-2.5.3-4.8 1-6.8s2-3.7 3.8-5.1c1.2-.8 2.4-1.3 3.7-1.6 1.3-.2 2.2-.3 3-.3 2.7 0 4.8.6 6.3 1.6s2.5 2.3 3.1 3.9c.6 1.5 1 3.1 1.1 4.6.1 1.6.1 2.9 0 4h-17.5m12.9-3c0-.3 0-.7 0-1.1s0-.8-.1-1.2c-.1-.9-.4-1.7-.8-2.5s-1-1.5-1.8-2c-.9-.5-2-.8-3.4-.8-.8 0-1.5.1-2.3.3s-1.5.7-2.2 1.3-1.2 1.3-1.6 2.3-.7 2.2-.8 3.6z"/><path d="m501.8 77.5c0-.3 0-.8-.1-1.4s-.3-1.1-.6-1.8c-.2-.6-.7-1.2-1.4-1.6s-1.6-.6-2.7-.6c-1.5 0-2.7.4-3.5 1.2-.9.8-1.5 1.7-1.9 2.8s-.6 2.2-.7 3.2c-.1 1.1-.2 1.8-.1 2.4 0 1.3.1 2.5.3 3.7s.5 2.3.9 3.3c.8 2 2.4 3 4.8 3.1 1.9 0 3.3-.7 4.1-1.9.8-1.1 1.2-2.3 1.2-3.6h4.6c-.2 2.5-1.1 4.6-2.7 6.3-1.7 1.8-4.1 2.7-7.1 2.7-.9 0-2.1-.2-3.6-.6-.7-.2-1.4-.6-2.2-1s-1.5-1-2.2-1.7c-.7-.9-1.4-2.1-2-3.6s-.9-3.5-.9-6.1.4-4.8 1.1-6.6c.7-1.7 1.6-3.1 2.7-4.2 1.1-1 2.3-1.8 3.6-2.2s2.5-.6 3.7-.6h1.6c.6.1 1.3.2 1.9.4.7.2 1.4.5 2.1 1 .7.4 1.3 1 1.8 1.7.9 1.1 1.4 2.1 1.7 3.1.2 1 .3 1.8.3 2.6z"/><path d="m509.3 69.4h4.3v-5.2l4.5-1.5v6.8h5.4v3.4h-5.4v15.1c0 .3 0 .6.1 1 0 .4.1.7.4 1.1.2.4.5.6 1 .8.4.3 1 .4 1.8.4 1 0 1.7-.1 2.2-.2v3.6c-.9.2-2.1.3-3.8.3-2.1 0-3.6-.4-4.6-1.2s-1.5-2.2-1.5-4.2v-16.8h-4.3v-3.4z"/><path d="m529.2 58.6h5.5v5.1h-5.5zm.5 10.9h4.6v25.1h-4.6z"/><path d="m541.8 82.4c0-1.6.2-3.2.6-4.8s1.1-3 2-4.4c1-1.3 2.2-2.4 3.8-3.2s3.6-1.2 5.9-1.2c2.4 0 4.5.4 6.1 1.3 1.5.9 2.7 2 3.6 3.3s1.5 2.8 1.8 4.3c.2.8.3 1.5.4 2.2v2.2c0 3.7-1 6.9-3 9.5s-5.1 4-9.3 4c-4-.1-7-1.4-9-3.9-1.9-2.5-2.9-5.6-2.9-9.3m4.7-.3c0 2.7.6 5 1.8 6.9 1.2 2 3 3 5.6 3.1.9 0 1.8-.2 2.7-.5.8-.3 1.6-.9 2.3-1.7s1.3-1.9 1.8-3.2c.4-1.3.6-2.9.6-4.7-.1-6.4-2.5-9.6-7.1-9.6-.7 0-1.5.1-2.4.3-.8.3-1.7.8-2.5 1.6-.8.7-1.4 1.7-1.9 3-.6 1.1-.9 2.8-.9 4.8z"/><path d="m574.3 72.4-.1-2.9h4.6v4.1c.2-.3.4-.8.7-1.2.3-.5.8-1 1.3-1.5.6-.5 1.4-1 2.3-1.3s2-.5 3.4-.5c.6 0 1.4.1 2.4.2.9.2 1.9.5 2.9 1.1s1.8 1.4 2.5 2.5c.6 1.2 1 2.7 1 4.7v17.1h-4.6v-16c0-.9-.1-1.7-.2-2.4-.2-.7-.5-1.3-1.1-1.9-1.2-1.1-2.6-1.7-4.3-1.7s-3.1.6-4.3 1.8c-1.3 1.2-2 3.1-2 5.7v14.5h-4.6z"/><path d="m14.8 108.5h5.2l14.1 36.1h-5.3l-3.8-9.4h-16.2l-3.8 9.4h-5zm-4.4 22.7h13.3l-6.5-17.8z"/><path d="m44.4 146.5c.1.7.2 1.4.4 1.9.2.6.5 1.1.9 1.6.8.9 2.3 1.4 4.4 1.5 1.6 0 2.8-.3 3.7-.9s1.5-1.4 1.9-2.4c.4-1.1.6-2.3.7-3.7s.1-2.9.1-4.6c-.5.9-1.1 1.7-1.8 2.3s-1.5 1-2.3 1.3c-1.7.4-3 .6-3.9.6-1.2 0-2.4-.2-3.8-.6s-2.6-1.2-3.7-2.5c-1-1.3-1.7-2.8-2.1-4.4s-.6-3.2-.6-4.8c0-4.3 1.1-7.4 3.2-9.5 2-2.1 4.6-3.1 7.6-3.1 1.3 0 2.3.1 3.2.4s1.6.6 2.1 1c.6.4 1.1.8 1.5 1.2.3.4.6.8.9 1.2v-3.4h4.4l-.1 4.5v15.7c0 2.9-.1 5.2-.2 6.7-.2 1.6-.5 2.8-1 3.7-1.1 1.9-2.6 3.2-4.6 3.7-1.9.6-3.8.8-5.6.8-2.4 0-4.3-.3-5.6-.8-1.4-.5-2.4-1.2-3-2s-1-1.7-1.2-2.7c-.2-.9-.3-1.8-.4-2.7zm5.3-5.8c1.4 0 2.5-.2 3.3-.7s1.5-1.1 2-1.8c.5-.6.9-1.4 1.2-2.5.3-1 .4-2.6.4-4.8 0-1.6-.2-2.9-.4-3.9-.3-1-.8-1.8-1.4-2.4-1.3-1.4-3-2.2-5.2-2.2-1.4 0-2.5.3-3.4 1s-1.6 1.5-2 2.4c-.4 1-.7 2-.9 3s-.2 2-.2 2.8c0 1 .1 1.9.3 2.9.2 1.1.5 2.1 1 3s1.2 1.6 2 2.2c.8.7 1.9 1 3.3 1z"/><path d="m73.3 132.9c-.1 2.6.5 4.8 1.7 6.5 1.1 1.7 2.9 2.6 5.3 2.6 1.5 0 2.8-.4 3.9-1.3 1-.8 1.6-2.2 1.8-4h4.6c0 .6-.2 1.4-.4 2.3-.3 1-.8 2-1.7 3-.2.3-.6.6-1 1-.5.4-1 .7-1.7 1.1s-1.5.6-2.4.8c-.9.3-2 .4-3.3.4-7.6-.2-11.3-4.5-11.3-12.9 0-2.5.3-4.8 1-6.8s2-3.7 3.8-5.1c1.2-.8 2.4-1.3 3.7-1.6 1.3-.2 2.2-.3 3-.3 2.7 0 4.8.6 6.3 1.6s2.5 2.3 3.1 3.9c.6 1.5 1 3.1 1.1 4.6.1 1.6.1 2.9 0 4h-17.5m12.9-3c0-.3 0-.7 0-1.1s0-.8-.1-1.2c-.1-.9-.4-1.7-.8-2.5s-1-1.5-1.8-2.1c-.9-.5-2-.8-3.4-.8-.8 0-1.5.1-2.3.3s-1.5.7-2.2 1.3-1.2 1.3-1.6 2.3-.7 2.2-.8 3.7z"/><path d="m98.6 122.4-.1-2.9h4.6v4.1c.2-.3.4-.8.7-1.2.3-.5.8-1 1.3-1.5.6-.5 1.4-1 2.3-1.3s2-.5 3.4-.5c.6 0 1.4.1 2.4.2.9.2 1.9.5 2.9 1.1s1.8 1.4 2.5 2.5c.6 1.2 1 2.7 1 4.7v17.1h-4.6v-16c0-.9-.1-1.7-.2-2.4-.2-.7-.5-1.3-1.1-1.9-1.2-1.1-2.6-1.7-4.3-1.7s-3.1.6-4.3 1.8c-1.3 1.2-2 3.1-2 5.7v14.5h-4.6z"/><path d="m142.7 127.5c0-.3 0-.8-.1-1.4s-.3-1.1-.6-1.8c-.2-.6-.7-1.2-1.4-1.6s-1.6-.6-2.7-.6c-1.5 0-2.7.4-3.5 1.2-.9.8-1.5 1.7-1.9 2.8s-.6 2.2-.7 3.2c-.1 1.1-.2 1.8-.1 2.4 0 1.3.1 2.5.3 3.7s.5 2.3.9 3.3c.8 2 2.4 3 4.8 3.1 1.9 0 3.3-.7 4.1-1.9.8-1.1 1.2-2.3 1.2-3.6h4.6c-.2 2.5-1.1 4.6-2.7 6.3-1.7 1.8-4.1 2.7-7.1 2.7-.9 0-2.1-.2-3.6-.6-.7-.2-1.4-.6-2.2-1s-1.5-1-2.2-1.7c-.7-.9-1.4-2.1-2-3.6s-.9-3.5-.9-6.1.4-4.8 1.1-6.6c.7-1.7 1.6-3.1 2.7-4.2 1.1-1 2.3-1.8 3.6-2.2s2.5-.6 3.7-.6h1.6c.6.1 1.3.2 1.9.4.7.2 1.4.5 2.1 1 .7.4 1.3 1 1.8 1.7.9 1.1 1.4 2.1 1.7 3.1.2 1 .3 1.8.3 2.6z"/><path d="m164.8 144.8-3.4 9.3h-4.7l3.8-9.6-10.3-25h5.2l7.6 19.8 7.7-19.8h5z"/></svg>
</span>
</a>
<button type="button" class="usa-menu-btn usa-button--outline usa-button--inverse l-header__menu-button">Menu</button>
</div>
<div class="l-header__search" id="header-search-drawer">
<form class="usa-search usa-search--small usa-search--epa" method="get" action="https://search.epa.gov/epasearch">
<div role="search">
<label class="usa-sr-only" for="search-box">Search</label>
<input class="usa-input" id="search-box" type="search" name="querytext" placeholder="Search EPA.gov">
<button class="button" type="submit" aria-label="Search">
<svg class="icon usa-search__submit-icon" aria-hidden="true"><use href="/themes/epa_theme/images/sprite.artifact.svg#magnifying-glass"></use></svg> <span class="usa-search__submit-text">Search</span>
</button>
<input type="hidden" name="areaname" value="">
<input type="hidden" name="areacontacts" value="">
<input type="hidden" name="areasearchurl" value="">
<input type="hidden" name="typeofsearch" value="epa">
<input type="hidden" name="result_template" value="">
</div>
</form>
</div>
</div>
</div>
<div class="l-header__nav">
<nav class="usa-nav usa-nav--epa" role="navigation" aria-label="Primary navigation">
<div class="usa-nav__inner">
<button type="button" class="usa-nav__close" aria-label="Close">
<svg class="icon icon--nav-close" aria-hidden="true" role="img"><title>Primary navigation</title><use href="/themes/epa_theme/images/sprite.artifact.svg#xmark"></use></svg> </button>
<div class="usa-nav__menu">
<ul class="menu menu--main usa-accordion">
<li class="menu__item has-subnav is-expanded"><button class="menu__link has-subnav is-expanded usa-nav__link usa-accordion__button" aria-expanded="false" type="button">
Environmental Topics
<svg class="icon menu__link-icon" aria-hidden="true"><use href="/themes/epa_theme/images/sprite.artifact.svg#angle"></use></svg></button><ul class="menu menu__subnav is-wide"><li class="menu__item"><a href="/environmental-topics" class="menu__link" data-drupal-link-system-path="node/164839">Environmental Topics</a></li><li class="menu__item"><a href="/environmental-topics/air-topics" class="menu__link" data-drupal-link-system-path="node/165225">Air</a></li><li class="menu__item"><a href="/bedbugs" class="menu__link" data-drupal-link-system-path="node/17591">Bed Bugs</a></li><li class="menu__item"><a href="/environmental-topics/epa-efforts-reduce-exposure-carcinogens-and-prevent-cancer" class="menu__link" data-drupal-link-system-path="node/280190">Cancer</a></li><li class="menu__item"><a href="/environmental-topics/chemicals-pesticides-and-toxics-topics" class="menu__link" data-drupal-link-system-path="node/165371">Chemicals, Toxics, and Pesticide </a></li><li class="menu__item"><a href="/climate-change" class="menu__link" data-drupal-link-system-path="node/37925">Climate Change</a></li><li class="menu__item"><a href="/emergency-response" class="menu__link" data-drupal-link-system-path="node/18839">Emergency Response</a></li><li class="menu__item"><a href="/environmental-topics/environmental-information-by-location" class="menu__link" data-drupal-link-system-path="node/165443">Environmental Information by Location </a></li><li class="menu__item"><a href="/environmentaljustice" class="menu__link" data-drupal-link-system-path="node/66337">Environmental Justice</a></li><li class="menu__item"><a href="/environmental-topics/greener-living" class="menu__link" data-drupal-link-system-path="node/165399">Greener Living</a></li><li class="menu__item"><a href="/environmental-topics/health-topics" class="menu__link" data-drupal-link-system-path="node/165317">Health</a></li><li class="menu__item"><a href="/environmental-topics/land-waste-and-cleanup-topics" class="menu__link" data-drupal-link-system-path="node/165171">Land, Waste, and Cleanup</a></li><li class="menu__item"><a href="/lead" class="menu__link" data-drupal-link-system-path="node/3085">Lead</a></li><li class="menu__item"><a href="/mold" class="menu__link" data-drupal-link-system-path="node/37083">Mold</a></li><li class="menu__item"><a href="/radon" class="menu__link" data-drupal-link-system-path="node/38609">Radon</a></li><li class="menu__item"><a href="/research" class="menu__link" data-drupal-link-system-path="node/35507">Research</a></li><li class="menu__item"><a href="/environmental-topics/science-topics" class="menu__link" data-drupal-link-system-path="node/172685">Science Topics</a></li><li class="menu__item"><a href="/environmental-topics/water-topics" class="menu__link" data-drupal-link-system-path="node/164827">Water Topics</a></li><li class="menu__item"><a href="/topics-epa-web" class="menu__link" data-drupal-link-system-path="topics-epa-web">A-Z Topic Index</a></li></ul></li>
<li class="menu__item has-subnav is-expanded"><button class="menu__link has-subnav is-expanded usa-nav__link usa-accordion__button" aria-expanded="false" type="button">
Laws & Regulations
<svg class="icon menu__link-icon" aria-hidden="true"><use href="/themes/epa_theme/images/sprite.artifact.svg#angle"></use></svg></button><ul class="menu menu__subnav"><li class="menu__item"><a href="/laws-regulations" title="View links to regulatory information by topic and sector, and to top pages about environmental laws, regulations, policies, compliance, and enforcement" class="menu__link" data-drupal-link-system-path="node/3157">Laws & Regulations</a></li><li class="menu__item"><a href="/regulatory-information-sector" class="menu__link" data-drupal-link-system-path="node/3173">By Business Sector</a></li><li class="menu__item"><a href="/regulatory-information-topic" class="menu__link" data-drupal-link-system-path="node/66677">By Topic</a></li><li class="menu__item"><a href="/compliance" class="menu__link" data-drupal-link-system-path="node/19411">Compliance</a></li><li class="menu__item"><a href="/enforcement" class="menu__link" data-drupal-link-system-path="node/10885">Enforcement</a></li><li class="menu__item"><a href="/laws-regulations/laws-and-executive-orders" class="menu__link" data-drupal-link-system-path="node/66719">Laws and Executive Orders</a></li><li class="menu__item"><a href="/laws-regulations/regulations" class="menu__link" data-drupal-link-system-path="node/11249">Regulations</a></li></ul></li>
<li class="menu__item has-subnav is-expanded"><button class="menu__link has-subnav is-expanded usa-nav__link usa-accordion__button" aria-expanded="false" type="button">
Report a Violation
<svg class="icon menu__link-icon" aria-hidden="true"><use href="/themes/epa_theme/images/sprite.artifact.svg#angle"></use></svg></button><ul class="menu menu__subnav"><li class="menu__item"><a href="/report-violation" class="menu__link" data-drupal-link-system-path="node/271510">Report a Violation</a></li><li class="menu__item"><a href="https://echo.epa.gov/report-environmental-violations" class="menu__link">Environmental Violations</a></li><li class="menu__item"><a href="https://www.epaoig.gov/epa-oig-hotline-complaint-form" class="menu__link">Fraud, Waste or Abuse</a></li></ul></li>
<li class="menu__item has-subnav is-expanded"><button class="menu__link has-subnav is-expanded usa-nav__link usa-accordion__button" aria-expanded="false" type="button">
About EPA
<svg class="icon menu__link-icon" aria-hidden="true"><use href="/themes/epa_theme/images/sprite.artifact.svg#angle"></use></svg></button><ul class="menu menu__subnav"><li class="menu__item"><a href="/aboutepa" class="menu__link" data-drupal-link-system-path="node/851">About EPA</a></li><li class="menu__item"><a href="/aboutepa/our-mission-and-what-we-do" class="menu__link" data-drupal-link-system-path="node/2099">Our Mission and What We Do</a></li><li class="menu__item"><a href="/aboutepa/epa-administrator" class="menu__link" data-drupal-link-system-path="node/264813">EPA Administrator</a></li><li class="menu__item"><a href="/aboutepa#hq" class="menu__link" data-drupal-link-system-path="node/851">Headquarters Offices</a></li><li class="menu__item"><a href="/aboutepa/regional-and-geographic-offices" class="menu__link" data-drupal-link-system-path="node/254965">Regional Offices</a></li><li class="menu__item"><a href="/aboutepa/research-centers-programs-and-science-advisory-organizations" class="menu__link" data-drupal-link-system-path="node/254969">Labs and Research Centers</a></li><li class="menu__item"><a href="/planandbudget" class="menu__link" data-drupal-link-system-path="node/863">Planning, Budget, and Results</a></li><li class="menu__item"><a href="/aboutepa/epa-organization-chart" class="menu__link" data-drupal-link-system-path="node/2481">Organization Chart</a></li><li class="menu__item"><a href="/history" class="menu__link" data-drupal-link-system-path="node/162637">EPA History</a></li><li class="menu__item"><a href="https://cfpub.epa.gov/locator/index.cfm" class="menu__link">Staff Directory</a></li></ul></li> </ul>
</div>
</div>
</nav>
</div>
</header>
<main id="main" class="main" role="main" tabindex="-1">
<div class="l-page has-footer">
<div class="l-constrain">
<div class="l-page__header">
<div class="l-page__header-first">
<div class="web-area-title">EJScreen: Environmental Justice Screening and Mapping Tool</div>
</div>
<div class="l-page__header-last">
<a href="/ejscreen/forms/contact-us-about-ejscreen" class="header-link">Contact Us</a>
</div>
</div>
<div class="l-sidebar l-sidebar--reversed">
<div class="l-sidebar__main">
<article role="article" class="article" lang="en">
<h1 class="page-title">
EJScreen Map Descriptions
</h1>
<div class="js-toggle-admin-content">
<div data-drupal-messages-fallback class="hidden"></div>
</div>
<div>
<div>
<p>The below provides basic descriptions for the data included in the mapping layers available through EJScreen. EJScreen data are updated periodically. To see which years of data are in the current version, see <a href="/ejscreen/overview-environmental-indicators-ejscreen">Overview of Environmental Indicators in EJScreen</a> or check the metadata.</p>
<ul type="disc">
<h4>Environmental Justice Indexes</h4>
<ul type="disc">
<li><a href='#ejin-pm25'> Particulate Matter 2.5</a></li>
<li><a href='#ejin-ozone'> Ozone</a></li>
<li><a href='#ejin-dslpm'> Diesel Particulate MatteR</a></li>
<li><a href='#ejin-cancer'> Air Toxics Cancer Risk</a></li>
<li><a href='#ejin-resp'> Air Toxics Respiratory Hazard Index</a></li>
<li><a href='#ejin-rseiair'> Toxic Releases to Air</a></li>
<li><a href='#ejin-ptraf'> Traffic Proximity and Volume</a></li>
<li><a href='#ejin-ldpnt'> Lead Paint</a></li>
<li><a href='#ejin-pnpl'> Superfund Proximity</a></li>
<li><a href='#ejin-prmp'> Risk Management Plan (RMP) Facility Proximity</a></li>
<li><a href='#ejin-ptsdf'> Hazardous Waste Proximity</a></li>
<li><a href='#ejin-ust'> Underground Storage Tanks (UST) and Leaking UST (LUST)</a></li>
<li><a href='#ejin-pwdis'> Wastewater Dischargers Indicator (Stream Proximity and Toxic Concentration)</a></li>
</ul>
<h4>Supplemental Indexes</h4>
<ul type="disc">
<li><a href='#supp-pm25'> Particulate Matter 2.5</a></li>
<li><a href='#supp-ozone'> Ozone</a></li>
<li><a href='#supp-dslpm'> Diesel Particulate MatteR</a></li>
<li><a href='#supp-cancer'> Air Toxics Cancer Risk</a></li>
<li><a href='#supp-resp'> Air Toxics Respiratory Hazard Index</a></li>
<li><a href='#supp-rseiair'> Toxic Releases to Air</a></li>
<li><a href='#supp-ptraf'> Traffic Proximity and Volume</a></li>
<li><a href='#supp-ldpnt'> Lead Paint</a></li>
<li><a href='#supp-pnpl'> Superfund Proximity</a></li>
<li><a href='#supp-prmp'> Risk Management Plan (RMP) Facility Proximity</a></li>
<li><a href='#supp-ptsdf'> Hazardous Waste Proximity</a></li>
<li><a href='#supp-ust'> Underground Storage Tanks (UST) and Leaking UST (LUST)</a></li>
<li><a href='#supp-pwdis'> Wastewater Dischargers Indicator (Stream Proximity and Toxic Concentration)</a></li>
</ul>
<h4>Pollution and Sources</h4>
<ul type="disc">
<li><a href='#poll-pm25'> Particulate Matter 2.5</a></li>
<li><a href='#poll-ozone'> Ozone</a></li>
<li><a href='#poll-dslpm'> Diesel Particulate MatteR</a></li>
<li><a href='#poll-cancer'> Air Toxics Cancer Risk</a></li>
<li><a href='#poll-resp'> Air Toxics Respiratory Hazard Index</a></li>
<li><a href='#poll-rseiair'> Toxic Releases to Air</a></li>
<li><a href='#poll-ptraf'> Traffic Proximity and Volume</a></li>
<li><a href='#poll-ldpnt'> Lead Paint</a></li>
<li><a href='#poll-pnpl'> Superfund Proximity</a></li>
<li><a href='#poll-prmp'> Risk Management Plan (RMP) Facility Proximity</a></li>
<li><a href='#poll-ptsdf'> Hazardous Waste Proximity</a></li>
<li><a href='#poll-ust'> Underground Storage Tanks (UST) and Leaking UST (LUST)</a></li>
<li><a href='#poll-pwdis'> Wastewater Dischargers Indicator (Stream Proximity and Toxic Concentration)</a></li>
</ul>
<h4>Socioeconomic Indicators</h4>
<ul type="disc">
<li><a href='#soci-demogidx_2'> Demographic Index</a></li>
<li><a href='#soci-demogidx_5'> Supplemental Demographic Index</a></li>
<li><a href='#soci-peopcolorpct'> Percent people of color</a></li>
<li><a href='#soci-lowincpct'> Percent low-income</a></li>
<li><a href='#soci-unemppct'> Unemployment</a></li>
<li><a href='#soci-lingisopct'> Percent in limited English speaking</a></li>
<li><a href='#soci-lesshspct'> Percent less than high school education</a></li>
<li><a href='#soci-under5pct'> Percent under age 5</a></li>
<li><a href='#soci-over64pct'> Percent over age 64</a></li>
</ul>
<h2 id='ejin-pm25'>EJ Index-Particulate Matter 2.5</h2>
<p><b>EJ Index-Particulate Matter 2.5(level in air)</b></p>
<ul>
<li>The Particulate Matter (PM) 2.5 EJ Index combines the PM 2.5 environmental burden indicator with the demographic index (an average of the low-income population and people of color populations) for each block group. </li>
<li>The PM 2.5 environmental burden indicator is a measure of potential exposure to inhalable particles that are 2.5 micrometers or smaller. This is measured in terms of annual average concentration in air measured in micrograms per cubic meter. It does not indicate whether a selected area is or is not meeting the national ambient air quality standard for PM 2.5. </li>
<li>For more details on the PM 2.5 indicator, including why it is important and what you can do moving forward, please visit the <a href="#">PM 2.5 Indicator Overview. </a></li>
</ul>
<hr/>
<h2 id='ejin-ozone'>EJ Index-Ozone</h2>
<ul>
<li><strong>Ozone</strong><br />Place holder for EJ Index-Ozone</li>
</ul>
<hr/>
<h2 id='ejin-dslpm'>EJ Index-Diesel Particulate Matter</h2>
<ul>
<li><strong>Diesel Particulate MatteR</strong><br />Place holder for EJ Index- Diesel Particulate MatteR</li>
</ul>
<hr/>
<h2 id='ejin-cancer'>EJ Index-Air Toxics Cancer Risk</h2>
<ul>
<li><strong>Air Toxics Cancer Risk</strong><br />Place holder for EJ Index- Air Toxics Cancer Risk</li>
</ul>
<hr/>
<h2 id='ejin-resp'>EJ Index-Air Toxics Respiratory Hazard Index</h2>
<ul>
<li><strong>Air Toxics Respiratory Hazard Index</strong><br />Place holder for EJ Index- Air Toxics Respiratory Hazard Index</li>
</ul>
<hr/>
<h2 id='ejin-rseiair'>EJ Index-Toxic Releases to Air</h2>
<ul>
<li><strong>Toxic Releases to Air</strong><br />Place holder for EJ Index-Toxic Releases to Air</li>
</ul>
<hr/>
<h2 id='ejin-ptraf'>EJ Index-Traffic Proximity and Volume</h2>
<ul>
<li><strong>Traffic Proximity and Volume</strong><br />Place holder for EJ Index-Traffic Proximity and Volume</li>
</ul>
<hr/>
<h2 id='ejin-ldpnt'>EJ Index-Lead Paint</h2>
<ul>
<li><strong>Lead Paint</strong><br />Place holder for EJ Index-Lead Paint</li>
</ul>
<hr/>
<h2 id='ejin-pnpl'>EJ Index-Superfund Proximity</h2>
<ul>
<li><strong>Superfund Proximity</strong><br />Place holder for EJ Index- Superfund Proximity</li>
</ul>
<hr/>
<h2 id='ejin-prmp'>EJ Index-Risk Management Plan (RMP) Facility Proximity</h2>
<ul>
<li><strong>Risk Management Plan (RMP) Facility Proximity</strong><br />Place holder for EJ Index-Risk Management Plan (RMP) Facility Proximity</li>
</ul>
<hr/>
<h2 id='ejin-ptsdf'>EJ Index-Hazardous Waste Proximity</h2>
<ul>
<li><strong>Hazardous Waste Proximity</strong><br />Place holder for EJ Index-Hazardous Waste Proximity</li>
</ul>
<hr/>
<h2 id='ejin-ust'>EJ Index-Underground Storage Tanks (UST) and Leaking UST (LUST)</h2>
<ul>
<li><strong>Underground Storage Tanks (UST) and Leaking UST (LUST)</strong><br />Place holder for EJ Index-Underground Storage Tanks (UST) and Leaking UST (LUST)</li>
</ul>
<hr/>
<h2 id='ejin-pwdis'>EJ Index-Wastewater Dischargers Indicator (Stream Proximity and Toxic Concentration)</h2>
<ul>
<li><strong>Wastewater Dischargers Indicator (Stream Proximity and Toxic Concentration)</strong><br />Place holder for EJ Index-Wastewater Dischargers Indicator (Stream Proximity and Toxic Concentration)</li>
</ul>
<hr/>
<h2 id='supp-pm25'>Supplemental Index-Particulate Matter 2.5</h2>
<ul>
<li><strong>Particulate Matter 2.5</strong><br />Supplemental Index-Place holder for Particulate Matter 2.5</li>
</ul>
<hr/>
<h2 id='supp-ozone'>Supplemental Index-Ozone</h2>
<ul>
<li><strong>Ozone</strong><br />Place holder for Supplemental Index-Ozone</li>
</ul>
<hr/>
<h2 id='supp-dslpm'>Supplemental Index-Diesel Particulate MatteR</h2>
<ul>
<li><strong>Diesel Particulate MatteR</strong><br />Place holder for Supplemental Index-Diesel Particulate MatteR</li>
</ul>
<hr/>
<h2 id='supp-cancer'>Supplemental Index-Air Toxics Cancer Risk</h2>
<ul>
<li><strong>Air Toxics Cancer Risk</strong><br />Place holder for Supplemental Index-Air Toxics Cancer Risk</li>
</ul>
<hr/>
<h2 id='supp-resp'>Supplemental Index-Air Toxics Respiratory Hazard Index</h2>
<ul>
<li><strong>Air Toxics Respiratory Hazard Index</strong><br />Place holder for Supplemental Index-Air Toxics Respiratory Hazard Index</li>
</ul>
<hr/>
<h2 id='supp-rseiair'>Supplemental Index-Toxic Releases to Air</h2>
<ul>
<li><strong>Toxic Releases to Air</strong><br />Place holder for Supplemental Index-Toxic Releases to Air</li>
</ul>
<hr/>
<h2 id='supp-ptraf'>Supplemental Index-Traffic Proximity and Volume</h2>
<ul>
<li><strong>Traffic Proximity and Volume</strong><br />Place holder for Supplemental Index-Traffic Proximity and Volume</li>
</ul>
<hr/>
<h2 id='supp-ldpnt'>Supplemental Index-Lead Paint</h2>
<ul>
<li><strong>Lead Paint</strong><br />Place holder for Supplemental Index-Lead Paint</li>
</ul>
<hr/>
<h2 id='supp-pnpl'>Supplemental Index-Superfund Proximity</h2>
<ul>
<li><strong>Superfund Proximity</strong><br />Place holder for Supplemental Index-Superfund Proximity</li>
</ul>
<hr/>
<h2 id='supp-prmp'>Supplemental Index-Risk Management Plan (RMP) Supplemental Index-Facility Proximity</h2>
<ul>
<li><strong>Risk Management Plan (RMP) Facility Proximity</strong><br />Place holder for Risk Management Plan (RMP) Facility Proximity</li>
</ul>
<hr/>
<h2 id='supp-ptsdf'>Supplemental Index-Hazardous Waste Proximity</h2>
<ul>
<li><strong>Hazardous Waste Proximity</strong><br />Place holder for Supplemental Index-Hazardous Waste Proximity</li>
</ul>
<hr/>
<h2 id='supp-ust'>Supplemental Index-Underground Storage Tanks (UST) and Leaking UST (LUST)</h2>
<ul>
<li><strong>Underground Storage Tanks (UST) and Leaking UST (LUST)</strong><br />Place holder for Supplemental Index-Underground Storage Tanks (UST) and Leaking UST (LUST)</li>
</ul>
<hr/>
<h2 id='supp-pwdis'>Supplemental Index-Wastewater Dischargers Indicator (Stream Proximity and Toxic Concentration)</h2>
<ul>
<li><strong>Wastewater Dischargers Indicator (Stream Proximity and Toxic Concentration)</strong><br />Place holder for Supplemental Index-Wastewater Dischargers Indicator (Stream Proximity and Toxic Concentration)</li>
</ul>
<hr/>
<h2 id='poll-pm25'>Pollution and Sources-Particulate Matter 2.5</h2>
<ul>
<li><strong>Particulate Matter 2.5</strong><br />Place holder for Particulate Matter 2.5</li>
</ul>
<hr/>
<h2 id='poll-ozone'>Pollution and Sources-Ozone</h2>
<ul>
<li><strong>Ozone</strong><br />Place holder for Ozone</li>
</ul>
<hr/>
<h2 id='poll-dslpm'>Pollution and Sources-Diesel Particulate MatteR</h2>
<ul>
<li><strong>Diesel Particulate MatteR</strong><br />Place holder for Diesel Particulate MatteR</li>
</ul>
<hr/>
<h2 id='poll-cancer'>Pollution and Sources-Air Toxics Cancer Risk</h2>
<ul>
<li><strong>Air Toxics Cancer Risk</strong><br />Place holder for Air Toxics Cancer Risk</li>
</ul>
<hr/>
<h2 id='poll-resp'>Pollution and Sources-Air Toxics Respiratory Hazard Index</h2>
<ul>
<li><strong>Air Toxics Respiratory Hazard Index</strong><br />Place holder for Air Toxics Respiratory Hazard Index</li>
</ul>
<hr/>
<h2 id='poll-rseiair'>Pollution and Sources-Toxic Releases to Air</h2>
<ul>
<li><strong>Toxic Releases to Air</strong><br />Place holder for Toxic Releases to Air</li>
</ul>
<hr/>
<h2 id='poll-ptraf'>Pollution and Sources-Traffic Proximity and Volume</h2>
<ul>
<li><strong>Traffic Proximity and Volume</strong><br />Place holder for Traffic Proximity and Volume</li>
</ul>
<hr/>
<h2 id='poll-ldpnt'>Pollution and Sources-Lead Paint</h2>
<ul>
<li><strong>Lead Paint</strong><br />Place holder for Lead Paint</li>
</ul>
<hr/>
<h2 id='poll-pnpl'>Pollution and Sources-Superfund Proximity</h2>
<ul>
<li><strong>Superfund Proximity</strong><br />Place holder for Superfund Proximity</li>
</ul>
<hr/>
<h2 id='poll-prmp'>Pollution and Sources-Risk Management Plan (RMP) Facility Proximity</h2>
<ul>
<li><strong>Risk Management Plan (RMP) Facility Proximity</strong><br />Place holder for Risk Management Plan (RMP) Facility Proximity</li>
</ul>
<hr/>
<h2 id='poll-ptsdf'>Pollution and Sources-Hazardous Waste Proximity</h2>
<ul>
<li><strong>Hazardous Waste Proximity</strong><br />Place holder for Hazardous Waste Proximity</li>
</ul>
<hr/>
<h2 id='poll-ust'>Pollution and Sources-Underground Storage Tanks (UST) and Leaking UST (LUST)</h2>
<ul>
<li><strong>Underground Storage Tanks (UST) and Leaking UST (LUST)</strong><br />Place holder for Underground Storage Tanks (UST) and Leaking UST (LUST)</li>
</ul>
<hr/>
<h2 id='poll-pwdis'>Pollution and Sources-Wastewater Dischargers Indicator (Stream Proximity and Toxic Concentration)</h2>
<ul>
<li><strong>Wastewater Dischargers Indicator (Stream Proximity and Toxic Concentration)</strong><br />Place holder for Wastewater Dischargers Indicator (Stream Proximity and Toxic Concentration)</li>
</ul>
<hr/>
<h2 id='soci-demogidx_2'>Socioeconomic Indicators-Demographic Index</h2>
<ul>
<li><strong>Demographic Index</strong><br />Place holder for Demographic Index</li>
</ul>
<hr/>
<h2 id='soci-demogidx_5'>Socioeconomic Indicators-Supplemental Demographic Index</h2>
<ul>
<li><strong>Supplemental Demographic Index</strong><br />Place holder for Supplemental Demographic Index</li>
</ul>
<hr/>
<h2 id='soci-peopcolorpct'>Socioeconomic Indicators-Percent people of color</h2>
<ul>
<li><strong>Percent people of color</strong><br />Place holder for Percent people of color</li>
</ul>
<hr/>
<h2 id='soci-lowincpct'>Socioeconomic Indicators-Percent low-income</h2>
<ul>
<li><strong>Percent low-income</strong><br />Place holder for Percent low-income</li>
</ul>
<hr/>
<h2 id='soci-unemppct'>Socioeconomic Indicators-Unemployment</h2>
<ul>
<li><strong>Unemployment</strong><br />Place holder for Unemployment</li>
</ul>
<hr/>
<h2 id='soci-lingisopct'>Socioeconomic Indicators-Percent in limited English speaking</h2>
<ul>
<li><strong>Percent in limited English speaking</strong><br />Place holder for Percent in limited English speaking</li>
</ul>
<hr/>
<h2 id='soci-lesshspct'>Socioeconomic Indicators-Percent less than high school education</h2>
<ul>
<li><strong>Percent less than high school education</strong><br />Place holder for Percent less than high school education</li>
</ul>
<hr/>
<h2 id='soci-under5pct'>Socioeconomic Indicators-Percent under age 5</h2>
<ul>
<li><strong>Percent under age 5</strong><br />Place holder for Percent under age 5</li>
</ul>
<hr/>
<h2 id='soci-over64pct'>Socioeconomic Indicators-Percent over age 64</h2>
<ul>
<li><strong>Percent over age 64</strong><br />Place holder for Percent over age 64</li>
</ul>
<hr/>
<hr /><h2 id="ejin">EJ Indexes - Particulate Matter 2.5</h2>
<ul><li><strong>Particulate Matter 2.5</strong><br />
Place holder for EJ Index for Particulate Matter 2.3</li>
</ul><hr /><h2 id="supp">Supplemental Indexes</h2>
<ul><li><strong>Supplemental Index</strong><br />
There are thirteen supplemental indexes in EJScreen reflecting the 13 environmental indicators, combined with socioeconomic information. The supplemental index highlights block groups with the highest intersection of five socioeconomic factors and a given environmental indicator. To calculate a single supplemental index for one block group, EJScreen multiplies the environmental indicator by socioeconomic information. This socioeconomic information includes percent low-income, percent linguistically isolated, percent less than high school education, percent unemployed, and low life expectancy (as the supplemental demographic index). This is the formula for the index:<br />
Supplemental Index = (Environmental Indicator Percentile for Block Group) X (Supplemental Demographic Index for Block Group)</li>
</ul><hr /><h2 id="poll">Pollution and Sources</h2>
<ul><li><strong>Particulate Matter 2.5 (level in air)</strong><br />
Particulate matter (PM2.5) levels in air, micrograms per cubic meter (µg/m3) annual average.<br /><em>Source:</em> EPA Office of Air and Radiation</li>
<li><strong>Ozone (level in air)</strong><br />
Annual average of top ten daily maximum 8-hour air concentrations in parts per billion.<br /><em>Source: </em>EPA Office of Air and Radiation</li>
<li><strong>Diesel Particulate Matter (level in air)</strong><br />
Diesel particulate matter level in air in micrograms per cubic meter (µg/m3).<br /><em>Source:</em> <a data-entity-substitution="canonical" data-entity-type="node" data-entity-uuid="1189634e-3c43-4916-bb38-a855cd4ffe23" href="/AirToxScreen">EPA Air Toxics Screening Assessment</a></li>
<li><strong>Air Toxics Cancer Risk</strong><br />
Lifetime cancer risk from inhalation of air toxics, as risk per lifetime per million people.<br /><em>Source:</em> <a href="/AirToxScreen">EPA Air Toxics Screening Assessment</a></li>
<li><strong>Air Toxics Respiratory Hazard Index</strong><br />
Air toxics respiratory hazard index (the sum of hazard indices for those air toxics with reference concentrations based on respiratory endpoints, where each hazard index is the ratio of exposure concentration in the air to the health-based reference concentration set by EPA).<br /><em>Source:</em> <a href="/AirToxScreen">EPA Air Toxics Screening Assessment</a></li>
<li><strong>Toxic Releases to Air</strong><br />
RSEI modeled toxicity-weighted concentrations in air of TRI listed chemicals.<br /><em>Source: </em><a href="/rsei/rsei-geographic-microdata-rsei-gm">RSEI Geographic Microdata</a></li>
<li><strong>Traffic Proximity and Volume</strong><br />
Count of vehicles per day (average annual daily traffic) at major roads within 500 meters (or nearest one beyond 500 m), divided by distance in meters. Calculated from U.S. Department of Transportation National Transportation Atlas Database, Highway Performance Monitoring System.</li>
<li><strong>Lead Paint (% pre-1960 housing)</strong><br />
Percent of housing units built before 1960, as indicator of potential exposure to lead paint. Calculated from the Census Bureau's American Community Survey 5-year summary estimates.</li>
<li><strong>Superfund Proximity</strong><br />
Count of proposed and listed NPL sites within 5 km (or nearest one beyond 5 km), each divided by distance in km. Count excludes deleted sites.<br />
Source: Calculated from EPA CERCLIS database.</li>
<li><strong>Risk Management Plan (RMP) Facility Proximity</strong><br />
Count of RMP (potential chemical accident management plan) facilities within 5 km (or nearest one beyond 5 km), each divided by distance in km. Calculated from EPA RMP database.</li>
<li><strong>Hazardous Waste Proximity</strong><br />
Count of hazardous waste management facilities (TSDFs and LQGs) within 5 km (or nearest one beyond 5 km), each divided by distance in km. Calculated from EPA RCRAInfo database.</li>
<li><strong>Underground Storage Tanks (UST) and Leaking UST (LUST)</strong><br />
Count of LUSTs (multiplied by a factor of 7.7) and the number of USTs within a 1,500-foot buffered block group. Calculated from EPA UST Finder.</li>
<li><strong>Wastewater Dischargers Indicator (Stream Proximity and Toxic Concentration)</strong><br />
RSEI modeled Toxic Concentrations at stream segments within 500 meters, divided by distance in kilometers (km). Calculated from RSEI modeled toxic concentrations to stream reach segments.</li>
</ul><hr /><h2 id="soci">Socioeconomic Indicators</h2>
<p>The source of all the socioeconomic indicators is the Census Bureau's American Community Survey 5-year summary estimates.</p>
<ul><li><strong>Percent people of color </strong><br />
The percent of individuals in a block group who list their racial status as a race other than white alone and/or list their ethnicity as Hispanic or Latino. That is, all people other than non-Hispanic white-alone individuals. The word "alone" in this case indicates that the person is of a single race, not multiracial.</li>
<li><strong>Percent low-income</strong><br />
Percent of individuals whose ratio of household income to poverty level in the past 12 months was less than 2 (as a fraction of individuals for whom ratio was determined).</li>
<li><strong>Unemployment</strong><br />
All those who did not have a job at all during the reporting period, made at least one specific active effort to find a job during the prior 4 weeks, and were available for work (unless temporarily ill).</li>
<li><strong>Percent in limited English speaking</strong><br />
Percent of households in which no one age 14 and over speaks English "very well" or speaks English only (as a fraction of households).</li>
<li><strong>Percent less than high school education</strong><br />
Percent of individuals age 25 and over with less than high school degree.</li>
<li><strong>Percent under age 5</strong><br />
Percent of individuals under age 5 as a fraction of population.</li>
<li><strong>Percent over age 64</strong><br />
Percent of individuals over age 64 as a fraction of the population.</li>
<li><strong>Demographic Index</strong><br />
The demographic index in EJScreen is a combination of percent low-income and percent minority, the two socioeconomic factors that were explicitly named in Executive Order 12898 on Environmental Justice. For each Census block group, these two numbers are simply averaged together. The formula is as follows: demographic index = (% people of color + % low-income) / 2.</li>
<li><strong>Supplemental Demographic Index</strong><br />
The supplemental demographic index in EJScreen is a combination of five socioeconomic factors averaged together for each Census block group. The supplemental demographic index can provide an additional perspective on potential community vulnerability and may be more relevant for use in certain situations. The formula is as follows: supplemental demographic index = (% low-income + % unemployed + % less than high school education + % limited English speaking + low life expectancy) / 5. For block groups where low life expectancy data is missing, the formula will average the other four factors. </li>
</ul><hr /><h2 id="heal">Health Disparities</h2>
<h4><strong>Low Life Expectancy</strong></h4>
<p>Average life expectancy data developed as a collaboration between NCHS, the National Association for Public Health Statistics and Information Systems, and the Robert Wood Johnson Foundation. This data is available at the tract level; the same tract value is then assigned to all sub block groups.<br /><em>Source:</em> <a href="https://www.cdc.gov/nchs/nvss/usaleep/usaleep.html">U.S. Small-area Life Expectancy Estimates Project (USALEEP)</a></p>
<h4><strong>Heart Disease</strong></h4>
<p>Heart disease prevalence among adults aged 18 years or older. The term "heart disease" refers to several types of heart conditions. This data is available at the tract level; the same tract value is then assigned to all sub block groups.<br /><em>Source:</em> <a href="https://www.cdc.gov/places/index.html">CDC Places Data</a></p>
<h4><strong>Asthma</strong></h4>
<p>Asthma prevalence among adults aged 18 or older. This data is available at the tract level; the same tract value is then assigned to all sub block groups.<br /><em>Source:</em> <a href="https://www.cdc.gov/places/index.html">CDC Places Data</a></p>
<h4><strong>Cancer</strong></h4>
<p>Cancer (excluding skin cancer) prevalence among adults aged 18 or older. This data is available at the Census tract level; the same tract value is then assigned to all sub block groups.<br /><em>Source: </em><a href="https://www.cdc.gov/places/index.html">CDC Places Data</a></p>
<h4><strong>Persons with Disabilities</strong></h4>
<p>Percent of all persons with disabilities. <span><span><span><span>Considers six disability types: hearing difficulty, vision difficulty, cognitive difficulty, ambulatory difficulty, self-care difficulty, and independent living difficulty. Respondents who report any one of the six disability types are considered to have a disability. For more information on each disability type visit: <a href="https://gcc02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.census.gov%2Ftopics%2Fhealth%2Fdisability%2Fguidance%2Fdata-collection-acs.html&data=05%7C01%7CLung.Tai%40epa.gov%7Cf8c7257d4cc94a4ac21608db8c401393%7C88b378b367484867acf976aacbeca6a7%7C0%7C0%7C638257979055745666%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=%2BSXz6g%2Fo0CbSdGmdGVU71V2ebCWTMDN2g0eOXk6OJAg%3D&reserved=0">https://www.census.gov/topics/health/disability/guidance/data-collection-acs.html</a></span></span></span></span></p>
<p>This data is derived from Census ACS data at the tract level. Block group values are calculated by multiplying the tract value by the block population weight. The weights are derived from the same Census source used by the EJScreen buffer reports and analysis.<br /><em>Source:</em> <a href="https://www.census.gov/programs-surveys/acs/data/data-via-ftp.html">Download ACS Data</a></p>
<hr /><h2 id="clim">Climate Change</h2>
<h4><strong>Estimated 100-year floodplains</strong></h4>
<p>This map depicts the estimated 100-year floodplains for the Conterminous US for 2016. These data can be used to look for socially and economically vulnerable communities located within the estimated 100-year floodplains. <br /><em>Source</em>: <a href="https://enviroatlas.epa.gov/enviroatlas/DataFactSheets/pdf/Supplemental/EstimatedFloodplains.pdf">Enviroatlas</a><br /><em>Spatial Metadata</em>: <a href="https://enviroatlas.epa.gov/arcgis/rest/services/Supplemental/Estimated_floodplain_CONUS_WM/ImageServer">Enviroatlas</a></p>
<h4><strong>Sea Level Rise (NOAA)</strong></h4>
<p>This dataset depicts land at risk of permanent flooding when sea level rises. There are six map layers showing the area inundated at one, two, three, four, five and six feet of sea level rise. Over the next 30 years, scientists estimate a one to three-foot rise along most of the U.S. coastline. These data can be used to look for areas of potential permanent inundation based on chosen sea level rise estimates (i.e., 1 to 6 feet) in relation to locations of social and economic vulnerability.<br /><em>Source</em>: <a href="https://www.arcgis.com/home/webmap/viewer.html?featurecollection=https%3A%2F%2Fwww.coast.noaa.gov%3A443%2Farcgis%2Frest%2Fservices%2Fdc_slr%2Fslr_1ft%2FMapServer%3Ff%3Djson%26option%3Dfootprints&supportsProjection=true&supportsJSONP=true">National Oceanic and Atmospheric Administration</a><br /><em>Spatial Metadata</em>: <a href="https://www.coast.noaa.gov/arcgis/rest/services/dc_slr/slr_1ft/MapServer">NOAA Office for Coastal Management</a></p>
<h4><strong>Wildfire Risk</strong></h4>
<p>The First Street Foundation-Wildfire Model (FSF-WFM) is a 30 meter resolution model representing the wildfire exposure for any specific location in the contiguous US, today and with the future climate change. The risk of wildfire is derived from a series of inputs associated with fire fuels, weather, human influence, and fire movement. Bringing all of these inputs together, at a national scale, in a high-resolution, climate-adjusted model represents a first-of-its-kind property-level wildfire risk model. In the development of the model, U.S. Federal Government open data are used for the foundational topography, fuels, weather, climate, and historical disturbances information, and additional data were added from a variety of state and local wildfire and land management sources to facilitate a both high resolution and future-facing (estimates both for today and for 30 years ahead) product. <br /><em>Source</em>: <a href="https://firststreet.org/">First Street Foundation</a></p>
<h4><strong>Flood Risk</strong></h4>
<p>The First Street Foundation Flood Model is a nationwide probabilistic flood model that shows the risk of flooding at any location in all 50 states and Puerto Rico due to rainfall (pluvial), riverine flooding (fluvial), and coastal surge flooding. While other hydraulic and hydrologic models show refined risks of flooding in certain areas, this model provides complete coverage across the United States at 3-meter resolution. The First Street Foundation Flood Model provides a consistent and unified methodology across the entire country with continuous outputs. This extends into areas that have no previous flood modeling and even areas that do not have recorded hydrologic data. As a result, there is increased visibility into new regions of the entire country. <br /><em>Source</em>: <a href="https://firststreet.org/">First Street Foundation</a></p>
<hr /><h2 id="crit">Critical Service Gaps</h2>
<h4><strong>Broadband Gaps</strong></h4>
<p>Areas with the lowest rate of households with a broadband internet subscription.<br /><em>Source:</em> The Census Bureau's American Community Survey 5-year summary estimates.</p>
<h4><strong>Lack of Health Insurance</strong></h4>
<p>Percent of all persons without Health Insurance Coverage.<br /><em>Source: </em><a href="https://www.census.gov/programs-surveys/acs/data/data-via-ftp.html">Download ACS Data</a></p>
<h4><strong>Housing Burden</strong></h4>
<p>This dataset contains census tract level percentiles for housing cost, which is the share of households that are both earning less than 80% of Housing and Urban Development’s Area Median Family Income and are spending more than 30% of their income on housing costs. The housing cost percentiles were adopted as Housing Burden for EJScreen.<br /><em>Source: </em><a href="https://www.huduser.gov/portal/datasets/cp.html">U.S. Department of Housing and Urban Development</a></p>
<h4><strong>Transportation Access</strong></h4>
<p>The Average of Transportation Indicator uses an average of four transportation-related indicator percentiles, including Transportation Cost Burden, National Walkability Index, Percentage of Households with No Vehicle Available, and Mean Commute Time to Work. It was renamed to Transportation Access for EJScreen. <br /><em>Source: </em><a href="https://www.transportation.gov/priorities/equity/justice40/transportation-insecurity-analysis-tool">The Department of Transportation's Transportation Disadvantaged Census Tracts</a></p>
<h4><strong>Food Desert</strong></h4>
<p>Low income and low access tract measured at 1 mile for urban areas and 10 miles for rural areas. This data is available at the tract level.<br /><em>Source: </em><a href="https://www.ers.usda.gov/data-products/food-access-research-atlas/download-the-data/">USDA</a></p>
<hr /><h2 id="addi">Additional Demographics </h2>
<p>Demographic information is available to add to the EJScreen map under the "Additional Demographics" button. You may click on the associated button to see metadata for that data layer. Please see the Census Bureau website for more explanations regarding the annual American Community Survey (ACS) estimates.</p>
<hr /><h2 id="thre">Threshold Maps</h2>
<p>The threshold maps are a compilation of the various EJ indexes or the various supplemental indexes on a single map. The threshold map widget allows EJScreen users to look across all twelve indexes at once, providing a cumulative outlook on vulnerable populations facing higher pollution burdens. Users select a percentile range, for example the 80th to 100th percentile, and the tool then maps places where one or more of the indexes is within that range. The tool also allows users to select the number of indexes within the user-defined range or to select specific indicators of interest. Threshold maps are available for both the EJ indexes and the new supplemental indexes and are available for comparison at the national and state level. </p>
<hr /><h2 id="plac">Places Layers</h2>
<h3 id="sites-reporting-to-epa">EPA Regulated Facilities </h3>
<p>The below includes information EPA collects through various databases about facilities or sites subject to environmental regulation.</p>
<h4><strong>Superfund</strong></h4>
<p>The Superfund Enterprise Management System (SEMS) provides information regarding sites under the <a href="/laws-regulations/summary-comprehensive-environmental-response-compensation-and-liability-act">Comprehensive Environmental Response, Compensation, and Liability Act</a> -- otherwise known as CERCLA or Superfund. CERCLA provides a Federal "Superfund" to locate, investigate, and clean up uncontrolled or abandoned hazardous-waste sites as well as accidents, spills, and other emergency releases of pollutants and contaminants into the environment. The National Priorities List (NPL) is the list of national priorities among the known releases or threatened releases of hazardous substances, pollutants, or contaminants throughout the United States and its territories.<br /><em>Source</em>: <a href="/enviro/pcs-icis-overview">EPA's Envirofacts</a></p>
<h4><strong>Water Dischargers (NPDES)</strong></h4>
<p>As authorized by the Clean Water Act, the <a href="/npdes">National Pollutant Discharge Elimination System (NPDES) </a>permit program controls water pollution by regulating sources, such as municipal and industrial wastewater treatment facilities, that discharge pollutants into waters of the United States. EPA tracks water discharge permits through the Permit Compliance System (PCS) and Integrated Compliance Information System (ICIS) databases, which includes information on when a permit was issued and when it expires, how much the company is permitted to discharge, and the actual monitoring data showing what the company has discharged.<br /><em>Source</em>: <a href="/enviro/pcs-icis-overview">EPA's Envirofacts</a></p>
<h4><strong>Air Pollution (ICIS-AIR)</strong></h4>
<p>The air pollution data (<a href="/enviro/icis-air-overview">ICIS-AIR</a>) contains compliance and permit data for stationary sources of air pollution (such as electric power plants, steel mills, factories, and universities) regulated by EPA, state and local air pollution agencies. The information in ICIS-AIR is used by the states to prepare State Implementation Plans (SIPs) and to track the compliance status of point sources with various regulatory programs under Clean Air Act.<br /><em>Source</em>: <a href="/enviro/icis-air-overview">EPA's Envirofacts</a></p>
<h4><strong>Hazardous Waste (TSDF and LQGs)</strong></h4>
<p>Hazardous waste information contained in the Resource Conservation and Recovery Act Information (RCRAInfo) includes an inventory on all generators, transporters, treaters, storers, and disposers of hazardous waste that are required to provide information about their activities.<br />
Source: <a href="/enviro/rcrainfo-overview">EPA's Envirofacts</a></p>
<h4><strong>Brownfields (ACRES)</strong></h4>
<p>The <a href="/brownfields/grant-recipient-reporting">Assessment, Cleanup and Redevelopment Exchange System (ACRES)</a> captures grantee reported data on environmental activities and accomplishments (assessment, cleanup and redevelopment), funding, job training, and details on cooperative partners and leveraging efforts for the <a href="/brownfields">Brownfields Program</a>. The information in ACRES is provided at the property and grant level.<br /><em>Source</em>: <a href="/brownfields">EPA's Envirofacts</a></p>
<h4><strong>Toxics Release Inventory</strong></h4>
<p>As authorized under the <a href="/toxics-release-inventory-tri-program/tri-laws-and-regulatory-activities">Emergency Planning and Community Right-to-Know Act</a> (EPCRA) and the <a href="/laws-regulations/summary-pollution-prevention-act">Pollution Prevention Act</a> (PPA), the <a data-entity-substitution="canonical" data-entity-type="node" data-entity-uuid="d1079c37-c758-4fa8-ae00-9c19c4f449d8" href="/toxics-release-inventory-tri-program">Toxics Release Inventory</a> (TRI) tracks the management of certain toxic chemicals that may pose a threat to human health and the environment. U.S. facilities in different industry sectors must report annually how much of each chemical is released to the environment and/or managed through recycling, energy recovery and treatment. <br />
The map shows point locations for facilities that submitted TRI reports to EPA during the most recent reporting year. Points are relatively sized based on total quantities reported as released. <br /><em>Source:</em> <a href="/enviro/tri-overview">EPA's Envirofacts</a> and <a href="/frs">Facility Registry Service (FRS)</a><br />
Spatial metadata: <a href="https://epa.maps.arcgis.com/home/webmap/viewer.html?layers=76e9a521bc4245388c0d734be62bfb51&useExisting=1">TRI</a></p>
<h4><strong>Chemical Data Reporting (CDR)</strong></h4>
<p>The <a data-entity-substitution="canonical" data-entity-type="node" data-entity-uuid="6cfcf85f-3c41-469a-950f-8b9685b2ddc8" href="/laws-regulations/summary-toxic-substances-control-act">Toxic Substances Control Act</a> (TSCA) grants EPA broad authority to issue regulations designed to gather health/safety and exposure information on, require testing of, and control exposure to chemical substances and mixtures. Under Section 8(a) of TSCA, the <a data-entity-substitution="canonical" data-entity-type="node" data-entity-uuid="705dae49-ab0f-45b2-9834-2fbf897f9a42" href="/chemical-data-reporting">Chemical Data Reporting</a> (CDR) rule requires manufacturers (including importers) to report information every four years on the production and use of chemicals in commerce. This map shows point locations for sites that submitted CDR reports to EPA during the most recent reporting cycle (2020). <br /><em>Source</em>: <a href="/chemical-data-reporting/access-cdr-data">Access CDR</a><br />
Spatial Metadata: <a href="https://epa.maps.arcgis.com/home/webmap/viewer.html?layers=4d1f03813be8438abe0b5222437fcdcc&useExisting=1">CDR</a></p>
<h3 id="echo">Facilities Compliance Status</h3>
<p>The map layer uses the Enforcement and Compliance History Online (ECHO) standard facility symbology to illustrate the programs each facility is regulated under, whether they are in noncompliance, and how long it has been since the last inspection. Users can choose to view all facilities or tailor the view to facilities regulated under the Clean Air Act, Clean Water Act, or Resource Conservation and Recovery Act. <em>Source:</em> This includes data about EPA-regulated facilities from the <a href="https://echo.epa.gov/facilities/facility-search?mediaSelected=all">All Media Programs facility search</a> and the <a href="https://echo.epa.gov/tools/data-downloads#exporter">ECHO Exporter</a>.</p>
<h3 id="schools">Schools</h3>
<p>The National Center for Education Statistics’ (NCES) Education Demographic and Geographic Estimate (EDGE) program develops annually updated point locations (latitude and longitude) for public elementary and secondary schools included in the NCES Common Core of Data. The NCES EDGE program collaborates with the U.S. Census Bureau’s Education Demographic, Geographic, and Economic Statistics (EDGE) Branch to develop point locations for schools and school district administrative offices based on these addresses. The point locations in this data layer were developed from the 2021-2022 CCD collection.<br />
For more information about NCES school point data, see: <a href="https://nces.ed.gov/programs/edge/Geographic/SchoolLocations">National Center for Education Statistics (NCES)</a></p>
<h3 id="places-of-worship"><strong>Places of Worship</strong></h3>
<p>Point locations for buildings used for religious worship (e.g., chapel, mosque, synagogue, tabernacle, or temple).<br /><em>Source:</em> <a href="https://www.usgs.gov/core-science-systems/ngp/board-on-geographic-names">U.S. Geological Survey Geographic Names Information System (GNIS)</a><br /><em>Spatial Metadata:</em> <a href="https://nepassisttool.epa.gov/nepassist/metadata_soe.aspx?lyrIndex=2&service=NEPAssist/Places">Worship Places</a></p>
<h3 id="hospitals"><strong>Hospitals</strong></h3>
<p>Point locations for buildings where the sick or injured may receive medical or surgical attention (e.g., infirmary, clinic).<br /><em>Source: </em><a href="https://www.usgs.gov/core-science-systems/ngp/board-on-geographic-names">U.S. Geological Survey Geographic Names Information System (GNIS)</a><br /><em>Spatial Metadata:</em> <a href="https://nepassisttool.epa.gov/nepassist/metadata_soe.aspx?lyrIndex=3&service=NEPAssist/Places">Hospitals</a></p>
<h3 id="parks">Parks</h3>
<p>An ArcGIS WebService representing fine level manager or administrative agency name standardized for the Nation (USFS, BLM, State Fish and Wildlife, State Parks and Rec, City, NGO, etc). This map is based on the PAD-US 3.0 Combined Proclamation, Marine, Fee, Designation, Easement feature class. DOD and Tribal areas shown with 50% transparency. Use for categorization by manager name, with detailed federal managers and generic state/local/other managers.<br />
For more information about PAD-US: <a href="https://doi.org/10.5066/P9Q9LQ4B">Protected Areas Database of the United States (PAD-US) 3.0</a><br /><em>Source: </em><a href="https://www.usgs.gov/programs/gap-analysis-project/science/pad-us-data-download">PAD-US Data Download</a></p>
<h3 id="other-environmental-data">Other Environmental Data</h3>
<h4><strong>RSEI Score</strong></h4>
<p>A RSEI Score is a unitless value that accounts for the size of the chemical release, the fate and transport of the chemical through the environment, the size and location of the exposed population, and the chemical's toxicity. A RSEI Score is calculated as toxicity weight multiplied by the exposed population multiplied by the estimated dose. <em>RSEI Scores are only meaningful in comparison to other RSEI Scores.</em><br /><em>Source:</em> EPA's RSEI</p>
<h3 id="nonattainment-areas">NonAttainment Areas</h3>
<p>If the air quality in a geographic area meets or is cleaner than the National Ambient Air Quality Standard (NAAQS), it is called an attainment area; areas that don't meet the national standard are called nonattainment areas. In some cases, EPA is not able to determine an area's status after evaluating the available information and those areas are designated "unclassifiable." These are areas that do not meet (or that contributes to ambient air quality in a nearby area that does not meet) the national primary or secondary ambient air quality standard for a NAAQS.</p>
<p><strong>PM10 (1987 standard)</strong><br /><em>Description:</em> PM10 (1987 standard)<br /><em>Source and Spatial Metadata:</em> <a href="https://gispub.epa.gov/arcgis/rest/services/OAR_OAQPS/NonattainmentAreas/MapServer/8">PM10 (1987 standard)</a><br /><strong>PM2.5 Annual (2012 standard)</strong><br /><em>Description:</em> PM2.5 Annual (2012 standard)<br /><em>Source and Spatial Metadata:</em> <a href="https://gispub.epa.gov/arcgis/rest/services/OAR_OAQPS/NonattainmentAreas/MapServer/7">PM2.5 Annual (2012 standard)</a><br /><strong>PM2.5 Annual (1997 standard)</strong><br /><em>Description:</em> PM2.5 Annual (1997 standard)<br /><em>Source and Spatial Metadata:</em> <a href="https://gispub.epa.gov/arcgis/rest/services/OAR_OAQPS/NonattainmentAreas/MapServer/6">PM2.5 Annual (1997 standard)</a><br /><strong>PM2.5 24hr (2006 standard)</strong><br /><em>Description:</em> PM2.5 24hr (2006 standard)<br /><em>Source and Spatial Metadata:</em> <a href="https://gispub.epa.gov/arcgis/rest/services/OAR_OAQPS/NonattainmentAreas/MapServer/5">PM2.5 24hr (2006 standard)</a><br /><strong>SO2 1-hr (2010 standard)</strong><br /><em>Description:</em> SO2 1-hr (2010 standard)<br /><em>Source and Spatial Metadata:</em> <a href="https://gispub.epa.gov/arcgis/rest/services/OAR_OAQPS/NonattainmentAreas/MapServer/4">SO2 1-hr (2010 standard)</a><br /><strong>Lead (2008 standard)</strong><br /><em>Description:</em> Lead (2008 standard)<br /><em>Source and Spatial Metadata:</em> <a href="https://gispub.epa.gov/arcgis/rest/services/OAR_OAQPS/NonattainmentAreas/MapServer/3">Lead (2008 standard)</a><br /><strong>Ozone 8-hr (2008 standard)</strong><br /><em>Description:</em> Ozone 8-hr (2008 standard)<br /><em>Source and Spatial Metadata:</em> <a href="https://gispub.epa.gov/arcgis/rest/services/OAR_OAQPS/NonattainmentAreas/MapServer/1">Ozone 8-hr (2008 standard)</a><br /><strong>Ozone 8-hr (1997 standard)</strong><br /><em>Description:</em> Ozone 8-hr (1997 standard)<br /><em>Source and Spatial Metadata:</em> <a href="https://gispub.epa.gov/arcgis/rest/services/OAR_OAQPS/NonattainmentAreas/MapServer/0">Ozone 8-hr (1997 standard)</a></p>
<h3 id="water-features">Water Features</h3>
<h4><strong>Impaired Water Points</strong></h4>
<p>The Impaired Water Points layer includes points that are too polluted or otherwise degraded to meet the water quality standards set by states, territories, or authorized tribes. These water points are on the CWA 303(d) list and are required to develop a total maximum daily load (TMDL). This set of water points are provided by the Assessment, Total Maximum Daily Load Tracking and Implementation System (ATTAINS).<br /><em>Source:</em> <a href="/waterdata/get-data-access-public-attains-data#AttainsGeo">EPA Office of Water ATTAINS Geospatial Data</a><br /><em>Spatial Metadata:</em> <a href="https://gispub.epa.gov/arcgis/rest/services/OW/ATTAINS_Assessment/MapServer/0">ATTAINS Assessment Areas</a></p>
<h4><strong>Impaired Streams</strong></h4>
<p>The Impaired Streams layer includes streams that are too polluted or otherwise degraded to meet the water quality standards set by states, territories, or authorized tribes. These streams are on the CWA 303(d) list and are required to develop a total maximum daily load (TMDL). These stream segments are provided by the Assessment, Total Maximum Daily Load Tracking and Implementation System (ATTAINS).<br /><em>Source:</em> <a href="/waterdata/get-data-access-public-attains-data#AttainsGeo">EPA Office of Water ATTAINS Geospatial Data</a><br /><em>Spatial Metadata:</em> <a href="https://gispub.epa.gov/arcgis/rest/services/OW/ATTAINS_Assessment/MapServer/1">ATTAINS Assessment Lines</a></p>
<h4><strong>Impaired Water Bodies</strong></h4>
<p>The Impaired Water Bodies layer includes bodies of water that are too polluted or otherwise degraded to meet the water quality standards set by states, territories, or authorized tribes. These water bodies are on the CWA 303(d) list and are required to develop a total maximum daily load (TMDL). This set of water areas are provided by the Assessment, Total Maximum Daily Load Tracking and Implementation System (ATTAINS).<br /><em>Source:</em> <a href="/waterdata/get-data-access-public-attains-data#AttainsGeo">EPA Office of Water ATTAINS Geospatial Data</a><br /><em>Spatial Metadata:</em> <a href="https://gispub.epa.gov/arcgis/rest/services/OW/ATTAINS_Assessment/MapServer/2">ATTAINS Assessment Areas</a></p>
<h4><strong>Impaired Catchment</strong></h4>
<p>The Impaired Catchment layer includes catchment assessment units that are too polluted or otherwise degraded to meet the water quality standards set by states, territories, or authorized tribes. These water bodies are on the CWA 303(d) list and are required to develop a total maximum daily load (TMDL). This set of water areas are provided by the Assessment, Total Maximum Daily Load Tracking and Implementation System (ATTAINS).<br /><em>Source:</em> <a href="/waterdata/get-data-access-public-attains-data#AttainsGeo">EPA Office of Water ATTAINS Geospatial Data</a><br /><em>Spatial Metadata:</em> <a href="https://gispub.epa.gov/arcgis/rest/services/OW/ATTAINS_Assessment/MapServer/3">ATTAINS Assessment Areas</a></p>
<h4><strong>Streams</strong></h4>
<p>The Streams layer includes linear surface water features throughout the United States. The streams layer is based on the National Hydrography Dataset (NHD).<br /><em>Source:</em> <a href="/waterdata/nhdplus-national-hydrography-dataset-plus">EPA Office of Water</a><br /><em>Spatial Metadata:</em> <a href="https://data.usgs.gov/datacatalog/metadata/USGS.ecd2ad5e-faa2-4291-bcdb-441b7113ea41.xml">Streams</a></p>
<h4><strong>Water Bodies</strong></h4>
<p>The Water Bodies layer includes area surface features such as ponds, lakes and wide rivers. The water bodies layer is from U.S. Census Bureau TIGER/Line data.<br /><em>Source:</em> <a href="https://www.census.gov/geographies/mapping-files/time-series/geo/tiger-geodatabase-file.2019.html">U.S. Census Bureau Areal Hydrography</a><br /><em>Spatial Metadata:</em> <a href="https://nepassisttool.epa.gov/nepassist/metadata_soe.aspx?lyrIndex=3&service=NEPAssist/Water">Water Bodies</a></p>
<h4><strong>Sole Source Aquifers</strong></h4>
<p>The <a href="/dwssa">Sole Source Aquifer</a> layer includes information on the sole source aquifers (SSA) designated by EPA under section 1424(e) of the Safe Drinking Water Act of 1974. SSA's supply at least 50 percent of the drinking water consumed in the area overlying the aquifer. These areas may have no alternative drinking water source(s) that could physically, legally and economically supply all those who depend on the aquifer for drinking water.<br /><em>Source: </em><a href="https://epa.maps.arcgis.com/apps/webappviewer/index.html?id=9ebb047ba3ec41ada1877155fe31356b">SSA Locations</a><br /><em>Spatial Metadata:</em> <a href="https://nepassisttool.epa.gov/nepassist/metadata_soe.aspx?lyrIndex=3&service=NEPAssist/Water">Sole Source Aquifers</a></p>
<h3 id="tribal-lands-and-indigenous-areas">Tribal Lands and Indigenous Areas</h3>
<p>EPA makes no claims regarding the accuracy or precision of data concerning Indian country locations or boundaries. EPA has simply attempted to collect certain readily available information relating to Indian country locations.</p>
<p>Please note that the EPA makes no claims regarding either the spatial accuracy or precision of these data as associated boundaries and coordinate locations were delineated by the U.S. federal agencies annotated in this metadata record. Data users are encouraged to carefully reference the metadata provided by these federal agencies before using this service. These data are not better than the sources from which they were derived, and both scale and accuracy may vary across the dataset. These data are neither legal documents nor land surveys and must not be used as such. This information cannot be relied upon to create any rights, substantive or procedural, enforceable by any party in litigation with the United States or third parties. EPA reserves the right to change this dataset at any time without public notice.</p>
<h4>Tribal Lands</h4>
<p>This layer represents locations of American Indian Tribal lands in the lower 48 states and Alaska. The areas include all lands associated with Federally recognized tribal entities--Federally recognized Reservations, Off-Reservation Trust Lands, and Census Oklahoma Tribal Statistical Areas. EPA makes no claims regarding the accuracy or precision of data concerning Indian country locations or boundaries. EPA has simply attempted to collect certain readily available information relating to Indian country locations.<br /><em>Source:</em> <a href="https://geopub.epa.gov/arcgis/rest/services/EMEF/tribal/MapServer">EPA ArcGIS for EMEF/tribal</a></p>
<h4>Alaska Native Allotments</h4>
<p>Bureau of Land Management-defined locations based on land survey records associated with the Public Land Survey System (PLSS) and <a href="/geospatial/guidance-using-tribal-boundaries-areas-and-names-resources">associated legislation in Alaska</a>. <br /><em>Source</em>: <a href="https://services.arcgis.com/cJ9YHowT8TU7DUyn/arcgis/rest/services/BND___Alaska_Native_Allotments/FeatureServer">EPA ArcGIS for Alaska Native Allotments</a></p>
<h4>Alaska Native Villages</h4>
<p><a href="/geospatial/guidance-using-tribal-boundaries-areas-and-names-resources">Boundary-centroid locations</a> based on records provided by the Bureau of Land Management and administered under the <a href="https://uscode.house.gov/view.xhtml?path=/prelim@title43/chapter33&edition=prelim">Alaska Native Claims Settlement Act</a> (ANSCA).<br /><em>Source</em>: <a href="https://services.arcgis.com/cJ9YHowT8TU7DUyn/arcgis/rest/services/BND___Alaska_Native_Villages/FeatureServer">EPA ArcGIS for Alaska Native Villages</a></p>
<h4>American Indian Reservations</h4>
<p><a href="https://tigerweb.geo.census.gov/tigerwebmain/TIGERweb_geography_details.html">Census Bureau-defined areas set aside by the federal government for use by tribes</a> in accordance with tribal treaties, agreements, executive orders, federal statutes, secretarial orders, and judicial determinations relevant to a given entity.<br /><em>Source</em>: <a href="https://services.arcgis.com/cJ9YHowT8TU7DUyn/arcgis/rest/services/BND___American_Indian_Reservations/FeatureServer">EPA ArcGIS for American Indian Reservations</a></p>
<h4>American Indian Off-reservation Trust Lands</h4>
<p><a href="https://tigerweb.geo.census.gov/tigerwebmain/TIGERweb_geography_details.html">Census Bureau-defined areas for which the United States holds title in trust for the benefit of a tribe or for an individual American Indian</a>. Trust lands may be located on or off an American Indian Reservation, though the Census Bureau only tabulates data for Off-reservation trust lands with a specific federally recognized reservation and/or tribal government.<br /><em>Source</em>: <a href="https://services.arcgis.com/cJ9YHowT8TU7DUyn/arcgis/rest/services/BND___American_Indian_Off_Reservation_Trust_Lands/FeatureServer">EPA ArcGIS for American Indian Off-reservation Trust Lands</a></p>
<h4>Oklahoma Tribal Statistical Areas (OTSA) Joint-Use Areas</h4>
<p>As applied to <a href="https://tigerweb.geo.census.gov/tigerwebmain/TIGERweb_geography_details.html">OTSAs by the Census Bureau</a>, include areas administered jointly and/or claimed by two or more American Indian tribes that have a delineated OTSA.<br /><em>Source</em>: <a href="https://services.arcgis.com/cJ9YHowT8TU7DUyn/arcgis/rest/services/BND___Oklahoma_Statistical_Areas/FeatureServer">EPA ArcGIS for Oklahoma Statistical Areas</a></p>
<h4>Virginia Federally Recognized Tribes</h4>
<p>Contains point data for federally recognized tribes geographically located in the state of Virginia, corresponding with the administrative boundaries of EPA Region 3. These tribes are federally recognized, but do not currently have land that qualifies as Indian country. Locations are based on mailing addresses for each tribe provided by the EPA Region 3 Tribal Program Coordinator to the US EPA Office of Mission Support on May 5, 2021.<br /><em>Source</em>: <a href="https://services.arcgis.com/cJ9YHowT8TU7DUyn/arcgis/rest/services/BND___Other_Federally_Recognized_Tribes/FeatureServer">EPA ArcGIS for Other Federally Recognized Tribes</a></p>
<h4>Tribal Cession Boundaries</h4>
<p><a href="https://memory.loc.gov/ammem/amlaw/lwss-ilc.html">U.S. Forest Service-defined boundaries</a> depicting lands ceded to the federal government for which they may still retain rights and may not be present-day tribal boundaries.<br /><em>Source</em>: <a href="https://apps.fs.usda.gov/arcx/rest/services/EDW/EDW_TribalCessionLands_01/MapServer/0">USDA ArcGIS for Indian Land Cessions in the United States</a></p>
<h4>Alaska Native Regional Corporations</h4>
<p><a href="https://www.census.gov/programs-surveys/geography/about/glossary/aian-definitions.html">Census Bureau-defined, corporate entities</a> organized to conduct both for-profit and non-profit affairs of Alaska Natives pursuant to the Alaska Native Claims Settlement Act. They have legally defined boundaries that subdivide all of Alaska into twelve regions (except for the area within the Annette Island Reserve).<br /><em>Source</em>: <a href="https://tigerweb.geo.census.gov/arcgis/rest/services/TIGERweb/AIANNHA/MapServer/0">Census ArcGIS for Alaska Native Regional Corporations</a></p>
<h4>State-recognized American Indian Reservations</h4>
<p>Census Bureau-curated boundaries that depict reservations established by certain state governments for tribes recognized by the state.<br /><em>Source</em>: <a href="https://tigerweb.geo.census.gov/arcgis/rest/services/TIGERweb/AIANNHA/MapServer/4">Census ArcGIS for State American Indian Reservations</a></p>
<h4>Hawaiian Native Home Lands</h4>
<p>Census Bureau-defined areas depicting the 75 Hawaiian homelands in the U.S. state of Hawaii in pursuant with the Hawaiian Homes Commission Act of 1920 (HHCA), as amended. <br /><em>Source</em>: <a href="https://tigerweb.geo.census.gov/arcgis/rest/services/TIGERweb/AIANNHA/MapServer/5">Census ArcGIS for Hawaiian Home Lands</a></p>
<h4>State-designated Tribal Statistical Areas</h4>
<p>Statistical geographic areas identified and delineated for state recognized tribes by the Census Bureau that are not federally recognized and do not have an American Indian reservation or off-reservation trust land.<br /><em>Source</em>: <a href="https://tigerweb.geo.census.gov/arcgis/rest/services/TIGERweb/AIANNHA/MapServer/8">Census ArcGIS for State Designated Tribal Statistical Areas</a></p>