* Fix a11y issue on Ling Iso card

* Add layout of new FAQs page

* Reorder SubNav links on About page

* Add NEW tag to new Burdens

* Add first 6 questions to FAQs

* Add the rest of the FAQs onto the page

* Adjust sub-nav order in About header

- update snapshots
- ensure that FAQ in SubNav is active
This commit is contained in:
Vim 2022-10-13 22:46:32 -07:00 committed by GitHub
parent da254e4157
commit 8dc81639c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 2604 additions and 310 deletions

View file

@ -1,5 +1,6 @@
/* eslint-disable valid-jsdoc */
import React from 'react';
import {Tag} from '@trussworks/react-uswds';
import {useIntl} from 'gatsby-plugin-intl';
import * as styles from './datasetCard.module.scss';
@ -22,7 +23,16 @@ const DatasetCard = ({datasetCardProps}: IDatasetCardProps) => {
return (
<div className={styles.datasetCard} id={datasetCardProps.domID}>
{/* Dataset header */}
<h3 className={styles.datasetCardIndicator}>{datasetCardProps.indicator}</h3>
<div className={datasetCardProps.isNew ? styles.datasetCardHeader : ''}>
{datasetCardProps.isNew &&
<div className={styles.tagContainer}>
<Tag className={styles.newTag}>{intl.formatMessage(METHODOLOGY_COPY.DATASET_CARD_LABELS.NEW)}</Tag>
</div>
}
<h3 className={styles.datasetCardIndicator}>
{datasetCardProps.indicator}
</h3>
</div>
{/* Dataset description */}
<div className={styles.datasetCardDescription}>
@ -70,15 +80,15 @@ const DatasetCard = ({datasetCardProps}: IDatasetCardProps) => {
</span>
{intl.formatMessage(dataSource.availableFor)}
</li>
{/* Dataset note */}
{(datasetCardProps.note && isNoteAtEnd) && <div className={styles.datasetCardDescription}>
<p>{datasetCardProps.note}</p>
</div>}
</React.Fragment>
))}
</ul>
{/* Dataset note */}
{(datasetCardProps.note && isNoteAtEnd) && <div className={styles.datasetCardDescription}>
<p>{datasetCardProps.note}</p>
</div>}
</div>
);
};

View file

@ -57,3 +57,17 @@
font-size: large;
font-weight: bolder;
}
.datasetCardHeader{
display: flex;
}
.tagContainer {
@include u-margin-right(1);
@include u-margin-top("05");
}
.newTag {
@include u-bg('yellow-20v');
@include u-text('blue-70v');
}

View file

@ -1,6 +1,7 @@
declare namespace DatasetCardScssNamespace {
export interface IDatasetCardScss {
datasetCard: string;
datasetCardHeader: string;
datasetCardAdditional:string;
datasetCardIndicator:string;
datasetCardWhatIsIt: string;
@ -9,6 +10,8 @@ declare namespace DatasetCardScssNamespace {
datasetCardList: string;
datasetCardListItemSource: string;
datasetCardListItem: string;
newTag: string;
tagContainer: string;
}
}

View file

@ -5,9 +5,13 @@ exports[`rendering of indicator dataset card checks if component renders 1`] = `
<div
id="low-income"
>
<h3>
Low income
</h3>
<div
class=""
>
<h3>
Low income
</h3>
</div>
<div>
Percent of a census tract's population in households where household income is at or below

View file

@ -76,9 +76,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="low-income"
>
<h3>
Low income
</h3>
<div
class=""
>
<h3>
Low income
</h3>
</div>
<div>
Percent of a census tract's population in households where household income is at or below
@ -124,9 +128,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="exp-agr-loss-rate"
>
<h3>
Expected agriculture loss rate
</h3>
<div
class=""
>
<h3>
Expected agriculture loss rate
</h3>
</div>
<div>
Expected agricultural value at risk from losses due to fourteen types of natural hazards. These hazards have some link to climate change. They are: avalanche, coastal flooding, cold wave, drought, hail, heat wave, hurricane, ice storm, landslide, riverine flooding, strong wind, tornado, wildfire, and winter weather. The rate is calculated by dividing the agricultural value at risk by the total agricultural value.
@ -171,9 +179,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="exp-bld-loss-rate"
>
<h3>
Expected building loss rate
</h3>
<div
class=""
>
<h3>
Expected building loss rate
</h3>
</div>
<div>
Expected building value at risk from losses due to fourteen types of natural hazards. These hazards have some link to climate change. They are: avalanche, coastal flooding, cold wave, drought, hail, heat wave, hurricane, ice storm, landslide, riverine flooding, strong wind, tornado, wildfire, and winter weather. The rate is calculated by dividing the building value at risk by the total building value.
@ -218,9 +230,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="exp-pop-loss-rate"
>
<h3>
Expected population loss rate
</h3>
<div
class=""
>
<h3>
Expected population loss rate
</h3>
</div>
<div>
Expected fatalities and injuries due to fourteen types of natural hazards each year. These hazards have some link to climate change. They are: avalanche, coastal flooding, cold wave, drought, hail, heat wave, hurricane, ice storm, landslide, riverine flooding, strong wind, tornado, wildfire, and winter weather. Population loss is defined by the Spatial Hazard Events and Losses and National Centers for Environmental Informations (NCEI). It reports the number of fatalities and injuries caused by the hazard. An injury is counted as one-tenth (1/10) of a fatality. The NCEI Storm Events Database classifies both direct and indirect injuries. Both types are counted as population loss. The total number is divided by the population in the census tract to get the rate of population loss.
@ -266,9 +282,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="flood-risk"
>
<h3>
NEW Projected flood risk
</h3>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<h3>
Projected flood risk
</h3>
</div>
<div>
A high precision, climate-adjusted model that projects future flood risk for properties in the future. The dataset calculates how many properties are at risk of floods occurring in the next thirty years from tides, rain, riverine and storm surges, or a 26% risk total over the 30-year time horizon. The risk is defined as an annualized 1% chance. The tool calculates tract-level risk as the share of properties meeting the risk threshold. The risk does not include property value.
@ -313,9 +339,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="wildfire-risk"
>
<h3>
NEW Projected wildfire risk
</h3>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<h3>
Projected wildfire risk
</h3>
</div>
<div>
A 30-meter resolution model projecting the wildfire exposure for any specific location in the contiguous US, today and with future climate change. The risk of wildfire is calculated from inputs associated with fire fuels, weather, human influence, and fire movement. The risk does not include property value.
@ -360,9 +396,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="energy-burden"
>
<h3>
Energy cost
</h3>
<div
class=""
>
<h3>
Energy cost
</h3>
</div>
<div>
Average household annual energy cost in dollars divided by the average household income.
@ -407,9 +447,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="pm-25"
>
<h3>
PM2.5 in the air
</h3>
<div
class=""
>
<h3>
PM2.5 in the air
</h3>
</div>
<div>
Fine inhalable particles with 2.5 or smaller micrometer diameters. The percentile is the weight of the particles per cubic meter.
@ -455,9 +499,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="asthma"
>
<h3>
Asthma
</h3>
<div
class=""
>
<h3>
Asthma
</h3>
</div>
<div>
Share of people who answer “yes” to both of these questions: “Have you ever been told by a health professional that you have asthma?” and “Do you still have asthma?”.
@ -502,9 +550,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="diabetes"
>
<h3>
Diabetes
</h3>
<div
class=""
>
<h3>
Diabetes
</h3>
</div>
<div>
Share of people ages 18 years and older who have been told by a health professional that they have diabetes other than diabetes during pregnancy.
@ -549,9 +601,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="heart-disease"
>
<h3>
Heart disease
</h3>
<div
class=""
>
<h3>
Heart disease
</h3>
</div>
<div>
Share of people ages 18 years and older who have been told by a health professional that they had angina or coronary heart disease.
@ -596,9 +652,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="life-exp"
>
<h3>
Low life expectancy
</h3>
<div
class=""
>
<h3>
Low life expectancy
</h3>
</div>
<div>
Average number of years people have left in their lives.
@ -654,9 +714,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="hist-underinv"
>
<h3>
New Historic underinvestment
</h3>
<div
class=""
>
<h3>
New Historic underinvestment
</h3>
</div>
<div>
Census tracts that experienced historic underinvestment as determined by the National Community Reinvestment Coalitions (NCRC) historic redlining score. It is determined using the
@ -730,9 +794,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="house-burden"
>
<h3>
Housing cost
</h3>
<div
class=""
>
<h3>
Housing cost
</h3>
</div>
<div>
Share of households that are both earning less than 80% of Housing and Urban Developments Area Median Family Income and are spending more than 30% of their income on housing costs.
@ -777,9 +845,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="green-space"
>
<h3>
NEW Lack of green space
</h3>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<h3>
Lack of green space
</h3>
</div>
<div>
Share of land with developed surfaces covered with artificial materials like concrete or pavement and crop land used for agricultural purposes.
@ -824,9 +902,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="indoor-plumb"
>
<h3>
NEW Lack of indoor plumbing
</h3>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<h3>
Lack of indoor plumbing
</h3>
</div>
<div>
Housing without complete kitchen facilities or complete plumbing facilities.
@ -871,9 +959,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="lead-paint"
>
<h3>
Lead paint
</h3>
<div
class=""
>
<h3>
Lead paint
</h3>
</div>
<div>
Share of homes built before 1960, which indicates potential lead paint exposure. Tracts with extremely high home values (i.e. median home values above the 90th percentile) are not likely to have lead paint exposure and are not included.
@ -918,9 +1010,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="mine-land"
>
<h3>
NEW Abandoned mine lands
</h3>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<h3>
Abandoned mine lands
</h3>
</div>
<div>
Presence of an abandoned mine left by legacy coal mining operations.
@ -965,9 +1067,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="fuds"
>
<h3>
NEW Formerly Used Defense Sites
</h3>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<h3>
Formerly Used Defense Sites
</h3>
</div>
<div>
Properties that were owned, leased, or possessed by the United States, under the jurisdiction of the Secretary of Defense prior to October 1986.
@ -1012,9 +1124,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="prox-haz"
>
<h3>
Proximity to hazardous waste sites
</h3>
<div
class=""
>
<h3>
Proximity to hazardous waste sites
</h3>
</div>
<div>
Number of hazardous waste facilities (Treatment, Storage, and Disposal Facilities and Large Quantity Generators) within 5 kilometers (or nearest beyond 5 kilometers), each divided by distance in kilometers.
@ -1063,9 +1179,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="prox-npl"
>
<h3>
Proximity to Superfund sites
</h3>
<div
class=""
>
<h3>
Proximity to Superfund sites
</h3>
</div>
<div>
Number of proposed or listed Superfund or National Priorities list (NPL) sites within 5 kilometers (or nearest one beyond 5 kilometers), each divided by distance in kilometers.
@ -1110,9 +1230,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="prox-rmp"
>
<h3>
Proximity to Risk Management Plan (RMP) facilities
</h3>
<div
class=""
>
<h3>
Proximity to Risk Management Plan (RMP) facilities
</h3>
</div>
<div>
Count of RMP, or potential chemical accident management plan, facilities within 5 kilometers (or nearest one beyond 5 kilometers), each divided by distance in kilometers.
@ -1157,9 +1281,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="diesel-pm"
>
<h3>
Diesel particulate matter exposure
</h3>
<div
class=""
>
<h3>
Diesel particulate matter exposure
</h3>
</div>
<div>
Mixture of particles in diesel exhaust in the air, measured as micrograms per cubic meter.
@ -1204,9 +1332,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="trans-barrier"
>
<h3>
NEW Transportation barriers
</h3>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<h3>
Transportation barriers
</h3>
</div>
<div>
Average relative cost and time spent on transportation relative to all other tracts.
@ -1251,9 +1389,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="traffic-vol"
>
<h3>
Traffic proximity and volume
</h3>
<div
class=""
>
<h3>
Traffic proximity and volume
</h3>
</div>
<div>
Number of vehicles (average annual daily traffic) at major roads within 500 meters, divided by distance in meters.
@ -1298,9 +1440,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="leaky-uwt"
>
<h3>
NEW Leaking underground storage tanks
</h3>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<h3>
Leaking underground storage tanks
</h3>
</div>
<div>
Weighted formula of number of leaking underground storage tanks and the number of underground storage tanks within 1,500 feet.
@ -1347,9 +1499,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="waste-water"
>
<h3>
Wastewater discharge
</h3>
<div
class=""
>
<h3>
Wastewater discharge
</h3>
</div>
<div>
Risk-Screening Environmental Indicators (RSEI) modeled toxic concentrations at
@ -1395,9 +1551,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="ling-iso"
>
<h3>
Linguistic isolation
</h3>
<div
class=""
>
<h3>
Linguistic isolation
</h3>
</div>
<div>
Share of households where no one over the age 14 speaks English well.
@ -1437,25 +1597,29 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</span>
All U.S. states and the District of Columbia
</li>
<div>
<p>
<strong>
Note:
</strong>
Linguistic isolation was removed from Puerto Rico based on feedback during the beta period.
</p>
</div>
</ul>
<div>
<p>
<strong>
Note:
</strong>
Linguistic isolation was removed from Puerto Rico based on feedback during the beta period.
</p>
</div>
</div>
<div
id="low-med-inc"
>
<h3>
Low median income
</h3>
<div
class=""
>
<h3>
Low median income
</h3>
</div>
<div>
Low median income calculated as a share of the areas median income.
@ -1533,9 +1697,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="poverty"
>
<h3>
Poverty
</h3>
<div
class=""
>
<h3>
Poverty
</h3>
</div>
<div>
Share of people living at or below 100% of the Federal poverty level.
@ -1580,9 +1748,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="unemploy"
>
<h3>
Unemployment
</h3>
<div
class=""
>
<h3>
Unemployment
</h3>
</div>
<div>
Number of unemployed people as a share of the labor force.
@ -1649,9 +1821,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="high-school"
>
<h3>
High school education
</h3>
<div
class=""
>
<h3>
High school education
</h3>
</div>
<div>
Share of people aged 25 years or older who didnt graduate from high school.
@ -1718,9 +1894,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="tribal-lands"
>
<h3>
NEW Tribal lands
</h3>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<h3>
Tribal lands
</h3>
</div>
<div>
The Land Area Representation (LAR) dataset depicts the exterior extent of a Federal Indian land area.

View file

@ -141,13 +141,6 @@ const J40Header = ({location}:IJ40Header) => {
data-cy={'nav-link-about'}>
{intl.formatMessage(COMMON_COPY.HEADER.ABOUT)}
</Link>,
<Link
to={PAGES_ENDPOINTS.FAQS}
key={'faqs'}
activeClassName="usa-current"
data-cy={'nav-link-faqs'}>
{intl.formatMessage(COMMON_COPY.HEADER.FAQS)}
</Link>,
<Link
to={PAGES_ENDPOINTS.PUBLIC_ENG}
key={'publicEng'}
@ -155,6 +148,13 @@ const J40Header = ({location}:IJ40Header) => {
data-cy={'nav-link-public-engagement'}>
{intl.formatMessage(COMMON_COPY.HEADER.PUBLIC_ENG)}
</Link>,
<Link
to={PAGES_ENDPOINTS.FAQS}
key={'faqs'}
activeClassName="usa-current"
data-cy={'nav-link-faqs'}>
{intl.formatMessage(COMMON_COPY.HEADER.FAQS)}
</Link>,
];
// Methodology & Data Nav component

View file

@ -306,20 +306,20 @@ exports[`rendering of the J40Header checks if component renders 1`] = `
class="usa-nav__submenu-item"
>
<a
data-cy="nav-link-faqs"
href="/en/frequently-asked-questions"
data-cy="nav-link-public-engagement"
href="/en/public-engagement"
>
Frequently asked questions
Engagement calendar
</a>
</li>
<li
class="usa-nav__submenu-item"
>
<a
data-cy="nav-link-public-engagement"
href="/en/public-engagement"
data-cy="nav-link-faqs"
href="/en/frequently-asked-questions"
>
Engagement calendar
Frequently asked questions
</a>
</li>
</ul>

View file

@ -9,6 +9,8 @@ import {PAGES_ENDPOINTS} from '../constants';
export const EXEC_ORDER_LINK = 'https://www.federalregister.gov/documents/2021/02/01/2021-02177/tackling-the-climate-crisis-at-home-and-abroad#:~:text=Sec.%20223.%20Justice40,40-percent%20goal.';
export const FAQS_LINK = 'https://www.whitehouse.gov/wp-content/uploads/2022/02/CEQ-CEJST-QandA.pdf';
export const FED_RECOGNIZED_INDIAN_ENTITIES = `https://www.federalregister.gov/documents/2022/01/28/2022-01789/indian-entities-recognized-by-and-eligible-to-receive-services-from-the-united-states-bureau-of`;
export const EJSCREEN = 'https://www.epa.gov/ejscreen/how-does-epa-use-ejscreen';
export const PAGE = defineMessages({
TITLE: {

View file

@ -1,6 +1,12 @@
/* eslint-disable max-len */
import {defineMessages} from 'react-intl';
import React from 'react';
import {defineMessages, FormattedMessage} from 'gatsby-plugin-intl';
import LinkTypeWrapper from '../../components/LinkTypeWrapper';
import {EJSCREEN, EXEC_ORDER_LINK, FED_RECOGNIZED_INDIAN_ENTITIES} from './about';
import {boldFn, linkFn, FEEDBACK_EMAIL} from './common';
import {PAGES_ENDPOINTS} from '../constants';
export const PAGE_INTRO = defineMessages({
PAGE_TILE: {
@ -14,3 +20,581 @@ export const PAGE_INTRO = defineMessages({
description: 'Navigate to the FAQs page, this will be the page coming soon text',
},
});
// If for some reason they key prop doesn't work in the array below, this is here:
// export const QUESTIONS = {
// Q1: <FormattedMessage
// id={ 'faqs.page.Q1'}
// defaultMessage={ 'Q: What is the Climate and Economic Justice Screening Tool (CEJST)?'}
// description={ 'Navigate to the FAQs page, this will be Q1'}
// />,
// Q2: <FormattedMessage
// id={ 'faqs.page.Q2'}
// defaultMessage={ 'Q: How does the tool identify and define communities?'}
// description={ 'Navigate to the FAQs page, this will be Q2'}
// />,
// Q3: <FormattedMessage
// id={ 'faqs.page.Q3'}
// defaultMessage={ 'Q: Is race included in the tools methodology?'}
// description={ 'Navigate to the FAQs page, this will be Q3'}
// />,
// Q4: <FormattedMessage
// id={ 'faqs.page.Q4'}
// defaultMessage={ 'Q: Does the Climate and Economic Justice Screening Tool (CEJST) include the U.S. territories? '}
// description={ 'Navigate to the FAQs page, this will be Q4'}
// />,
// Q5: <FormattedMessage
// id={ 'faqs.page.Q5'}
// defaultMessage={ 'Q: Does the tool include Tribal Nations?'}
// description={ 'Navigate to the FAQs page, this will be Q5'}
// />,
// Q6: <FormattedMessage
// id={ 'faqs.page.Q6'}
// defaultMessage={ 'Q: Why do some areas of the map have different shades?'}
// description={ 'Navigate to the FAQs page, this will be Q6'}
// />,
// Q7: <FormattedMessage
// id={ 'faqs.page.Q7'}
// defaultMessage={ 'Q: Why does the tool have “partially disadvantaged” census tracts?'}
// description={ 'Navigate to the FAQs page, this will be Q7'}
// />,
// Q8: <FormattedMessage
// id={ 'faqs.page.Q8'}
// defaultMessage={ 'Q: How does this tool relate to the Justice40 Initiative?'}
// description={ 'Navigate to the FAQs page, this will be Q8'}
// />,
// Q9: <FormattedMessage
// id={ 'faqs.page.Q9'}
// defaultMessage={ 'Q: How will Federal agencies use the Climate and Economic Justice Screening Tool (CEJST) for the Justice40 Initiative? '}
// description={ 'Navigate to the FAQs page, this will be Q9'}
// />,
// Q10: <FormattedMessage
// id={ 'faqs.page.Q10'}
// defaultMessage={ 'Q: How will this tool be used to inform decisions relating to new investments made through the Bipartisan Infrastructure Law and the Inflation Reduction Act?'}
// description={ 'Navigate to the FAQs page, this will be Q10'}
// />,
// Q11: <FormattedMessage
// id={ 'faqs.page.Q11'}
// defaultMessage={ 'Q: Will agencies use the Climate and Economic Justice Screening Tool (CEJST) if they have already created their own tools or criteria to identify disadvantaged communities?'}
// description={ 'Navigate to the FAQs page, this will be Q11'}
// />,
// Q12: <FormattedMessage
// id={ 'faqs.page.Q12'}
// defaultMessage={ 'Q: How is the Climate and Economic Justice Screening Tool (CEJST) different from the Environmental Protection Agencys (EPA) EJScreen?'}
// description={ 'Navigate to the FAQs page, this will be Q12'}
// />,
// Q13: <FormattedMessage
// id={ 'faqs.page.Q13'}
// defaultMessage={ 'Q: How is this tool different from state screening tools?'}
// description={ 'Navigate to the FAQs page, this will be Q13'}
// />,
// Q14: <FormattedMessage
// id={ 'faqs.page.Q14'}
// defaultMessage={ 'Q: How were the White House Environmental Justice Advisory Council (WHEJAC) recommendations used for this tool?'}
// description={ 'Navigate to the FAQs page, this will be Q14'}
// />,
// Q15: <FormattedMessage
// id={ 'faqs.page.Q15'}
// defaultMessage={ 'Q: Can the public provide feedback on this tool?'}
// description={ 'Navigate to the FAQs page, this will be Q15'}
// />,
// Q16: <FormattedMessage
// id={ 'faqs.page.Q16'}
// defaultMessage={ 'Q: Will CEQ issue another Request for Information about the tool?'}
// description={ 'Navigate to the FAQs page, this will be Q16'}
// />,
// Q17: <FormattedMessage
// id={ 'faqs.page.Q17'}
// defaultMessage={ 'Q: When did the official version of the tool come out?'}
// description={ 'Navigate to the FAQs page, this will be Q17'}
// />,
// Q18: <FormattedMessage
// id={ 'faqs.page.Q18'}
// defaultMessage={ 'Q. How does the Council on Environmental Quality (CEQ) keep people informed about the tool?'}
// description={ 'Navigate to the FAQs page, this will be Q18'}
// />,
// Q19: <FormattedMessage
// id={ 'faqs.page.Q19'}
// defaultMessage={ 'Q: What files and documentation are available from the tool?'}
// description={ 'Navigate to the FAQs page, this will be Q19'}
// />,
// Q20: <FormattedMessage
// id={ 'faqs.page.Q20'}
// defaultMessage={ 'Q: How does the tools shapefile work?'}
// description={ 'Navigate to the FAQs page, this will be Q20'}
// />,
// };
export const QUESTIONS = [
<FormattedMessage
id={ 'faqs.page.Q1'}
key={ 'faqs.page.Q1'}
defaultMessage={ 'Q: What is the Climate and Economic Justice Screening Tool (CEJST)?'}
description={ 'Navigate to the FAQs page, this will be Q1'}
/>,
<FormattedMessage
id={ 'faqs.page.Q2'}
key={ 'faqs.page.Q2'}
defaultMessage={ 'Q: How does the tool identify and define communities?'}
description={ 'Navigate to the FAQs page, this will be Q2'}
/>,
<FormattedMessage
id={ 'faqs.page.Q3'}
key={ 'faqs.page.Q3'}
defaultMessage={ 'Q: Is race included in the tools methodology?'}
description={ 'Navigate to the FAQs page, this will be Q3'}
/>,
<FormattedMessage
id={ 'faqs.page.Q4'}
key={ 'faqs.page.Q4'}
defaultMessage={ 'Q: Does the Climate and Economic Justice Screening Tool (CEJST) include the U.S. territories? '}
description={ 'Navigate to the FAQs page, this will be Q4'}
/>,
<FormattedMessage
id={ 'faqs.page.Q5'}
key={ 'faqs.page.Q5'}
defaultMessage={ 'Q: Does the tool include Tribal Nations?'}
description={ 'Navigate to the FAQs page, this will be Q5'}
/>,
<FormattedMessage
id={ 'faqs.page.Q6'}
key={ 'faqs.page.Q6'}
defaultMessage={ 'Q: Why do some areas of the map have different shades?'}
description={ 'Navigate to the FAQs page, this will be Q6'}
/>,
<FormattedMessage
id={ 'faqs.page.Q7'}
key={ 'faqs.page.Q7'}
defaultMessage={ 'Q: Why does the tool have “partially disadvantaged” census tracts?'}
description={ 'Navigate to the FAQs page, this will be Q7'}
/>,
<FormattedMessage
id={ 'faqs.page.Q8'}
key={ 'faqs.page.Q8'}
defaultMessage={ 'Q: How does this tool relate to the Justice40 Initiative?'}
description={ 'Navigate to the FAQs page, this will be Q8'}
/>,
<FormattedMessage
id={ 'faqs.page.Q9'}
key={ 'faqs.page.Q9'}
defaultMessage={ 'Q: How will Federal agencies use the Climate and Economic Justice Screening Tool (CEJST) for the Justice40 Initiative? '}
description={ 'Navigate to the FAQs page, this will be Q9'}
/>,
<FormattedMessage
id={ 'faqs.page.Q10'}
key={ 'faqs.page.Q10'}
defaultMessage={ 'Q: How will this tool be used to inform decisions relating to new investments made through the Bipartisan Infrastructure Law and the Inflation Reduction Act?'}
description={ 'Navigate to the FAQs page, this will be Q10'}
/>,
<FormattedMessage
id={ 'faqs.page.Q11'}
key={ 'faqs.page.Q11'}
defaultMessage={ 'Q: Will agencies use the Climate and Economic Justice Screening Tool (CEJST) if they have already created their own tools or criteria to identify disadvantaged communities?'}
description={ 'Navigate to the FAQs page, this will be Q11'}
/>,
<FormattedMessage
id={ 'faqs.page.Q12'}
key={ 'faqs.page.Q12'}
defaultMessage={ 'Q: How is the Climate and Economic Justice Screening Tool (CEJST) different from the Environmental Protection Agencys (EPA) EJScreen?'}
description={ 'Navigate to the FAQs page, this will be Q12'}
/>,
<FormattedMessage
id={ 'faqs.page.Q13'}
key={ 'faqs.page.Q13'}
defaultMessage={ 'Q: How is this tool different from state screening tools?'}
description={ 'Navigate to the FAQs page, this will be Q13'}
/>,
<FormattedMessage
id={ 'faqs.page.Q14'}
key={ 'faqs.page.Q14'}
defaultMessage={ 'Q: How were the White House Environmental Justice Advisory Council (WHEJAC) recommendations used for this tool?'}
description={ 'Navigate to the FAQs page, this will be Q14'}
/>,
<FormattedMessage
id={ 'faqs.page.Q15'}
key={ 'faqs.page.Q15'}
defaultMessage={ 'Q: Can the public provide feedback on this tool?'}
description={ 'Navigate to the FAQs page, this will be Q15'}
/>,
<FormattedMessage
id={ 'faqs.page.Q16'}
key={ 'faqs.page.Q16'}
defaultMessage={ 'Q: Will CEQ issue another Request for Information about the tool?'}
description={ 'Navigate to the FAQs page, this will be Q16'}
/>,
<FormattedMessage
id={ 'faqs.page.Q17'}
key={ 'faqs.page.Q17'}
defaultMessage={ 'Q: When did the official version of the tool come out?'}
description={ 'Navigate to the FAQs page, this will be Q17'}
/>,
<FormattedMessage
id={ 'faqs.page.Q18'}
key={ 'faqs.page.Q18'}
defaultMessage={ 'Q. How does the Council on Environmental Quality (CEQ) keep people informed about the tool?'}
description={ 'Navigate to the FAQs page, this will be Q18'}
/>,
<FormattedMessage
id={ 'faqs.page.Q19'}
key={ 'faqs.page.Q19'}
defaultMessage={ 'Q: What files and documentation are available from the tool?'}
description={ 'Navigate to the FAQs page, this will be Q19'}
/>,
<FormattedMessage
id={ 'faqs.page.Q20'}
key={ 'faqs.page.Q20'}
defaultMessage={ 'Q: How does the tools shapefile work?'}
description={ 'Navigate to the FAQs page, this will be Q20'}
/>,
];
export const FAQ_ANSWERS = {
Q1_P1: <FormattedMessage
id={ 'faqs.page.answers.Q1_P1'}
defaultMessage={ 'The CEJST is a critical component of the Biden-Harris Administrations historic commitment to advancing environmental justice. In <link1>Executive Order 14008</link1> on Tackling the Climate Crisis at Home and Abroad, President Biden directed the White House Council on Environmental Quality (CEQ) to develop a geospatial mapping tool to identify disadvantaged communities that face burdens. The tool has an interactive map and uses datasets that are indicators of burdens.'}
description={ 'Navigate to the FAQs page, this will be an answer, Q1_P1'}
values={{
link1: linkFn(EXEC_ORDER_LINK, false, true),
}}
/>,
Q1_P2: <FormattedMessage
id={ 'faqs.page.answers.Q1_P2'}
defaultMessage={ 'Federal agencies will use the tool for the Justice40 Initiative. It will help them identify disadvantaged communities that should receive 40% of the overall benefits of programs included in the Justice40 Initiative. The Justice40 Initiative seeks to deliver 40% of the overall benefits in climate, clean energy, and other related areas to disadvantaged communities.'}
description={ 'Navigate to the FAQs page, this will be an answer, Q1_P2'}
/>,
Q1_P3: <FormattedMessage
id={ 'faqs.page.answers.Q1_P3'}
defaultMessage={ 'Other useful links for Federal agencies:'}
description={ 'Navigate to the FAQs page, this will be an answer, Q1_P3'}
/>,
Q1_P3_1: <FormattedMessage
id={ 'faqs.page.answers.Q1_P3_1'}
defaultMessage={ 'Addendum to the Justice40 Interim Guidance'}
description={ 'Navigate to the FAQs page, this will be an answer, Q1_P3_1'}
/>,
Q1_P3_2: <FormattedMessage
id={ 'faqs.page.answers.Q1_P3_2'}
defaultMessage={ 'Instructions to Federal Agencies on Using the CEJST'}
description={ 'Navigate to the FAQs page, this will be an answer, Q1_P3_2'}
/>,
Q1_P4: <FormattedMessage
id={ 'faqs.page.answers.Q1_P4'}
defaultMessage={ 'The public can find communities of interest and provide feedback. This feedback will be used to improve the tool.'}
description={ 'Navigate to the FAQs page, this will be an answer, Q1_P4'}
/>,
Q2_P1: <FormattedMessage
id={ 'faqs.page.answers.Q2_P1'}
defaultMessage={ '<link1>Executive Order 14008</link1> recognizes that some communities are disadvantaged because they face burdens. The CEJST uses datasets that are indicators of burden. These burdens are related to climate change and the environment. They are also related to health and lack of economic opportunity.'}
description={ 'Navigate to the FAQs page, this will be an answer, Q2_P1'}
values={{
link1: linkFn(EXEC_ORDER_LINK, false, true),
}}
/>,
Q2_P2: <FormattedMessage
id={ 'faqs.page.answers.Q2_P2'}
defaultMessage={ 'The tool highlights disadvantaged communities across all 50 states, the District of Columbia, and the U.S. territories. A community is considered disadvantaged:'}
description={ 'Navigate to the FAQs page, this will be an answer, Q2_P2'}
/>,
Q2_P2_1: <FormattedMessage
id={ 'faqs.page.answers.Q2_P2_1'}
defaultMessage={ 'If they are in a census tract that meets the thresholds for at least one of the tools categories of burden, or'}
description={ 'Navigate to the FAQs page, this will be an answer, Q2_P2_1'}
/>,
Q2_P2_2: <FormattedMessage
id={ 'faqs.page.answers.Q2_P2_2'}
defaultMessage={ 'If they are on Federally Recognized Tribal land'}
description={ 'Navigate to the FAQs page, this will be an answer, Q2_P2_2'}
/>,
Q2_P3: <FormattedMessage
id={ 'faqs.page.answers.Q2_P3'}
defaultMessage={ 'Not all disadvantaged communities can be shown on the map. Some communities, such as migrant workers, do not live in just one place. The Interim Implementation Guidance on the Justice40 Initiative also directs Federal agencies to consider geographically dispersed communities when implementing programs included in the Justice40 Initiative.'}
description={ 'Navigate to the FAQs page, this will be an answer, Q2_P3'}
/>,
Q3_P1: <FormattedMessage
id={ 'faqs.page.answers.Q3_P1'}
defaultMessage={ 'No. The Climate and Economic Justice Screening Tool (CEJST) does not use racial demographics in its methodology. The current version of the tool offers data about race and age only as information when a specific census tract is selected. It is well-documented that communities of color suffer disproportionately from environmental and health burdens. Due to decades of underinvestment, they also face greater risks from climate change.'}
description={ 'Navigate to the FAQs page, this will be an answer, Q3_P1'}
/>,
Q3_P2: <FormattedMessage
id={ 'faqs.page.answers.Q3_P2'}
defaultMessage={ 'Although the CEJST does not use race in the methodology, it seeks to create a map that reflects the on-the-ground burdens and realities that disadvantaged communities face. The tool shows communities that have environmental burdens and face injustice.'}
description={ 'Navigate to the FAQs page, this will be an answer, Q3_P2'}
/>,
Q4_P1: <FormattedMessage
id={ 'faqs.page.answers.Q4_P1'}
defaultMessage={ 'Yes, the version 1.0 of the CEJST has some data for all the territories but not all the CEJST data are available or used for all U.S. territories. '}
description={ 'Navigate to the FAQs page, this will be an answer, Q4_P1'}
/>,
Q4_P2: <FormattedMessage
id={ 'faqs.page.answers.Q4_P2'}
defaultMessage={ `<boldtag>Puerto Rico:</boldtag> The data used for Puerto Rico are from all relevant and available fields in the energy, housing, legacy pollution, transportation, and workforce development categories. The following data are used: projected flood risk, energy cost, lack of plumbing, lead paint, housing cost, proximity to hazardous waste facilities, proximity to Superfund or National Priorities List (NPL) sites, proximity to Risk Management Plan (RMP) facilities, diesel particulate matter exposure, traffic proximity and volume, leaking underground storage tanks, wastewater discharge, poverty, unemployment, and high school education. Linguistic isolation was removed for Puerto Rico based on feedback received during the beta period. `}
description={ 'Navigate to the FAQs page, this will be an answer, Q4_P2'}
values={{
boldtag: boldFn,
}}
/>,
Q4_P3: <FormattedMessage
id={ 'faqs.page.answers.Q4_P3'}
defaultMessage={ '<boldtag>American Samoa, Guam, the Northern Mariana Islands, and the U.S. Virgin Islands:</boldtag> The data used for Puerto Rico are from all relevant and available fields in the energy, housing, legacy pollution, transportation, and workforce development categories. The following data are used: projected flood risk, energy cost, lack of plumbing, lead paint, housing cost, proximity to hazardous waste facilities, proximity to Superfund or National Priorities List (NPL) sites, proximity to Risk Management Plan (RMP) facilities, diesel particulate matter exposure, traffic proximity and volume, leaking underground storage tanks, wastewater discharge, poverty, unemployment, and high school education. Linguistic isolation was removed for Puerto Rico based on feedback received during the beta period. '}
description={ 'Navigate to the FAQs page, this will be an answer, Q4_P3'}
values={{
boldtag: boldFn,
}}
/>,
Q5_P1: <FormattedMessage
id={ 'faqs.page.answers.Q5_P1'}
defaultMessage={ 'To respect Tribal sovereignty and self-government and to fulfill Federal trust and treaty responsibilities to Tribal Nations, Federally Recognized Tribal lands are highlighted as disadvantaged on the map. Alaska Native Villages are included as point locations that are smaller than census tracts. The tools census tracts and Tribal lands have different boundaries.'}
description={ 'Navigate to the FAQs page, this will be an answer, Q5_P1'}
/>,
Q5_P2: <FormattedMessage
id={ 'faqs.page.answers.Q5_P2'}
defaultMessage={ `Federally Recognized Tribes are those that are recognized by the U.S. Bureau of Indian Affairs in the <link1>annual notice</link1> it publishes in the Federal Register:`}
description={ 'Navigate to the FAQs page, this will be an answer, Q5_P2'}
values={{
link1: linkFn(FED_RECOGNIZED_INDIAN_ENTITIES, false, true),
}}
/>,
Q5_P2_1: <FormattedMessage
id={ 'faqs.page.answers.Q5_P2_1'}
defaultMessage={ `The decision to highlight Federally-recognized Tribal lands on the CEJST map and to designate them as disadvantaged communities was made after meaningful and robust consultation with Tribal Nations. This approach is consistent with CEQs Action Plan for Consultation and Coordination with Tribal Nations, President Bidens Memorandum on Tribal Consultation and Strengthening Nation-to-Nation Consultation, and Executive Order 13175 on Consultation and Coordination With Indian Tribal Governments.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q5_P2_1'}
/>,
Q6_P1: <FormattedMessage
id={ 'faqs.page.answers.Q6_P1'}
defaultMessage={ `Some census tracts that contain lands of Federally-recognized Tribes that are also considered disadvantaged because they meet the burden thresholds for at least one of the categories on the tool. When this happens, the areas appear darker on the tools map.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q6_P1'}
/>,
Q6_P2: <FormattedMessage
id={ 'faqs.page.answers.Q6_P2'}
defaultMessage={ ` : Disadvantaged census tracts`}
description={ 'Navigate to the FAQs page, this will be an answer, Q6_P2'}
/>,
Q6_P3: <FormattedMessage
id={ 'faqs.page.answers.Q6_P3'}
defaultMessage={ ` : Disadvantaged census tracts and Federally-Recognized Tribal lands`}
description={ 'Navigate to the FAQs page, this will be an answer, Q6_P3'}
/>,
Q6_P4: <FormattedMessage
id={ 'faqs.page.answers.Q6_P4'}
defaultMessage={ `Any area that is highlighted is considered disadvantaged, regardless of whether it is a light shade or dark shade. The tool will show if a whole census tract is considered disadvantaged or just the parts that are Federally Recognized Tribal lands.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q6_P4'}
/>,
Q7: <FormattedMessage
id={ 'faqs.page.answers.Q7'}
defaultMessage={ `A census tract that does not meet any of the burden thresholds in the tool is usually not considered to be a disadvantaged community. However, if such a census tract contains Federally Recognized Tribal lands, then the parts of the tract that are Tribal lands are considered disadvantaged. The tool will display this type of census tract as “partially disadvantaged.”`}
description={ 'Navigate to the FAQs page, this will be an answer, Q7'}
/>,
Q8_P1: <FormattedMessage
id={ 'faqs.page.answers.Q8_P1'}
defaultMessage={ `The Biden administration is advancing environmental justice across the whole-of-government. The Justice40 Initiative is a critical part of this effort. The Justice40 Initiative seeks to deliver 40% of the overall benefits of climate, clean energy, and related investments to disadvantaged communities.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q8_P1'}
/>,
Q8_P2: <FormattedMessage
id={ 'faqs.page.answers.Q8_P2'}
defaultMessage={ `The CEJST will play an important role in the Justice40 Initiative. It will help to provide a single, consistent definition of disadvantaged communities for programs included in the Justice40 Initiative.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q8_P2'}
/>,
Q9_P1: <FormattedMessage
id={ 'faqs.page.answers.Q9_P1'}
defaultMessage={ `Federal agencies will use the tool to help identify disadvantaged communities that will benefit from programs included in the Justice40 Initiative. The Justice40 Initiative seeks to deliver 40% of the overall benefits of certain investments to disadvantaged communities.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q9_P1'}
/>,
Q9_P2: <FormattedMessage
id={ 'faqs.page.answers.Q9_P2'}
defaultMessage={ `The CEJST will play an important role in the Justice40 Initiative. It will help to provide a single definition of disadvantaged communities for programs included in the Justice40 Initiative. This definition applies to the whole government. Federal agencies will use this definition to direct Justice40 investment benefits in the following areas:`}
description={ 'Navigate to the FAQs page, this will be an answer, Q9_P2'}
/>,
Q9_P2_1: <FormattedMessage
id={ 'faqs.page.answers.Q9_P2_1'}
defaultMessage={ `Climate`}
description={ 'Navigate to the FAQs page, this will be an answer, Q9_P2_1'}
/>,
Q9_P2_2: <FormattedMessage
id={ 'faqs.page.answers.Q9_P2_2'}
defaultMessage={ `Clean energy and energy efficiency`}
description={ 'Navigate to the FAQs page, this will be an answer, Q9_P2_2'}
/>,
Q9_P2_3: <FormattedMessage
id={ 'faqs.page.answers.Q9_P2_3'}
defaultMessage={ `Clean transit`}
description={ 'Navigate to the FAQs page, this will be an answer, Q9_P2_3'}
/>,
Q9_P2_4: <FormattedMessage
id={ 'faqs.page.answers.Q9_P2_4'}
defaultMessage={ `Affordable and sustainable housing`}
description={ 'Navigate to the FAQs page, this will be an answer, Q9_P2_4'}
/>,
Q9_P2_5: <FormattedMessage
id={ 'faqs.page.answers.Q9_P2_5'}
defaultMessage={ `Training and workforce development`}
description={ 'Navigate to the FAQs page, this will be an answer, Q9_P2_5'}
/>,
Q9_P2_6: <FormattedMessage
id={ 'faqs.page.answers.Q9_P2_6'}
defaultMessage={ `Remediation and reduction of legacy pollution`}
description={ 'Navigate to the FAQs page, this will be an answer, Q9_P2_6'}
/>,
Q9_P2_7: <FormattedMessage
id={ 'faqs.page.answers.Q9_P2_7'}
defaultMessage={ `Development of clean water and wastewater infrastructure`}
description={ 'Navigate to the FAQs page, this will be an answer, Q9_P2_7'}
/>,
Q10: <FormattedMessage
id={ 'faqs.page.answers.Q10'}
defaultMessage={ `Recent historic legislation—such as the Bipartisan Infrastructure Law and the Inflation Reduction Act—have created new programs or directed funds to existing programs. These investments are included in the Justice40 Initiative if they meet the eligibility criteria. Agencies will use the CEJST to help identify disadvantaged communities that will receive 40% of the overall benefits of those Justice40 programs.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q10'}
/>,
Q11: <FormattedMessage
id={ 'faqs.page.answers.Q11'}
defaultMessage={ `The Council on Environmental Quality (CEQ), the Office of Management and Budget (OMB), and the Climate Policy Office (CPO) released the Justice40 Interim Implementation Guidance on July 20, 2021. It directed agencies to develop interim definitions of disadvantaged communities. Agencies used their interim definitions during the tools beta phase. Agencies will now transition to using version 1.0 of the tool to geographically identify disadvantaged communities.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q11'}
/>,
Q12_P1: <FormattedMessage
id={ 'faqs.page.answers.Q12_P1'}
defaultMessage={ `The CEJST uses lessons learned from the EPA's EJScreen. EJScreen is an environmental justice mapping and screening tool. EJScreen shows environmental and demographic information. The EPA, Federal agencies, and state and local governments will continue to use EJScreen to understand and analyze environmental problems. For example, EPA uses <link1>EJScreen</link1> to:`}
description={ 'Navigate to the FAQs page, this will be an answer, Q12_P1'}
values={{
link1: linkFn(EJSCREEN, false, true),
}}
/>,
Q12_P1_1: <FormattedMessage
id={ 'faqs.page.answers.Q12_P1_1'}
defaultMessage={ `Inform outreach and engagement practices`}
description={ 'Navigate to the FAQs page, this will be an answer, Q12_P1_1'}
/>,
Q12_P1_2: <FormattedMessage
id={ 'faqs.page.answers.Q12_P1_2'}
defaultMessage={ `Implement aspects of the following programs:`}
description={ 'Navigate to the FAQs page, this will be an answer, Q12_P1_2'}
/>,
Q12_P1_2_1: <FormattedMessage
id={ 'faqs.page.answers.Q12_P1_2_1'}
defaultMessage={ `Permitting programs`}
description={ 'Navigate to the FAQs page, this will be an answer, Q12_P1_2_1'}
/>,
Q12_P1_2_2: <FormattedMessage
id={ 'faqs.page.answers.Q12_P1_2_2'}
defaultMessage={ `Enforcement programs`}
description={ 'Navigate to the FAQs page, this will be an answer, Q12_P1_2_2'}
/>,
Q12_P1_2_3: <FormattedMessage
id={ 'faqs.page.answers.Q12_P1_2_3'}
defaultMessage={ `Compliance programs`}
description={ 'Navigate to the FAQs page, this will be an answer, Q12_P1_2_3'}
/>,
Q12_P1_2_4: <FormattedMessage
id={ 'faqs.page.answers.Q12_P1_2_4'}
defaultMessage={ `Voluntary programs`}
description={ 'Navigate to the FAQs page, this will be an answer, Q12_P1_2_4'}
/>,
Q12_P1_3: <FormattedMessage
id={ 'faqs.page.answers.Q12_P1_3'}
defaultMessage={ `Develop retrospective reports of EPA work`}
description={ 'Navigate to the FAQs page, this will be an answer, Q12_P1_3'}
/>,
Q12_P1_4: <FormattedMessage
id={ 'faqs.page.answers.Q12_P1_4'}
defaultMessage={ `Enhance geographically based initiatives`}
description={ 'Navigate to the FAQs page, this will be an answer, Q12_P1_4'}
/>,
Q12_P2: <FormattedMessage
id={ 'faqs.page.answers.Q12_P2'}
defaultMessage={ `However, EPA does not use EJScreen to identify or label an area as an "EJ community" or as the sole basis for agency-decision-making.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q12_P2'}
/>,
Q12_P3: <FormattedMessage
id={ 'faqs.page.answers.Q12_P3'}
defaultMessage={ `In contrast, the CEJST will help Federal agencies to identify disadvantaged communities that will benefit from programs included in the Justice40 Initiative.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q12_P3'}
/>,
Q13_P1: <FormattedMessage
id={ 'faqs.page.answers.Q13_P1'}
defaultMessage={ `Several states that have environmental justice screening tools. CalEnviroScreen is an environmental justice screening tool for California. Other states, like New York and Michigan have screening tools as well. The Climate and Economic Justice Screening Tool (CEJST) incorporates lessons learned from these efforts.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q13_P1'}
/>,
Q13_P2: <FormattedMessage
id={ 'faqs.page.answers.Q13_P2'}
defaultMessage={ `There is an important difference between state-based tools and the CEJST. State tools use data that may not be available for other states. The CEJST only uses data that are nationally-consistent and publicly-available.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q13_P2'}
/>,
Q14: <FormattedMessage
id={ 'faqs.page.answers.Q14'}
defaultMessage={ `The WHEJAC provided recommendations on the Climate and Economic Justice Screening Tool (CEJST). The CEJST follows many of these recommendations.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q14'}
/>,
Q15_P1: <FormattedMessage
id={ 'faqs.page.answers.Q15_P1'}
defaultMessage={ `Yes. The CEJST website has multiple ways to offer feedback on the tool.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q15_P1'}
/>,
Q15_P1_1: <FormattedMessage
id={ 'faqs.page.answers.Q15_P1_1'}
defaultMessage={ `The public can find census tracts that they are familiar with and send feedback about those tracts. That feedback is used to “ground truth” the tool. This helps the tool to better reflect the realities for communities.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q15_P1_1'}
/>,
Q15_P1_2: <FormattedMessage
id={ 'faqs.page.answers.Q15_P1_2'}
defaultMessage={ `The public can also submit data sources or ideas for consideration.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q15_P1_2'}
/>,
Q15_P1_3: <FormattedMessage
id={ 'faqs.page.answers.Q15_P1_3'}
defaultMessage={ `The public may also take a short survey to help improve the experience of using the tool.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q15_P1_3'}
/>,
Q15_P1_4: <FormattedMessage
id={ 'faqs.page.answers.Q15_P1_4'}
defaultMessage={ `The public can also email {general_email_address}`}
description={ 'Navigate to the FAQs page, this will be an answer, Q15_P1_4'}
values={{
general_email_address:
<LinkTypeWrapper
linkText={FEEDBACK_EMAIL}
internal={false}
url={`mailto:${FEEDBACK_EMAIL}`}
openUrlNewTab={true}
/>,
}}
/>,
Q16: <FormattedMessage
id={ 'faqs.page.answers.Q16'}
defaultMessage={ `Yes. CEQ plans to issue a Request for Information (RFI) about version 1.0 of the CEJST in 2023. The feedback received in that RFI will inform version 2.0 of the tool.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q16'}
/>,
Q17_P1: <FormattedMessage
id={ 'faqs.page.answers.Q17_P1'}
defaultMessage={ `The tool is now considered official because Federal agencies can now use version 1.0 of the Climate and Economic Justice Screening Tool (CEJST) to help identify disadvantaged communities. The 1.0 version was released in MM, YYYY. The tool is no longer in beta.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q17_P1'}
/>,
Q17_P2: <FormattedMessage
id={ 'faqs.page.answers.Q17_P2'}
defaultMessage={ `The tool will be improved over time. The Council on Environmental Quality (CEQ) will update the tool each year based on public feedback, research, and the availability of new data.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q17_P2'}
/>,
Q18: <FormattedMessage
id={ 'faqs.page.answers.Q18'}
defaultMessage={ `Sign-up to receive updates on the Climate and Economic Justice Screening Tool (CEJST) and other environmental justice news from CEQ.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q18'}
/>,
Q19: <FormattedMessage
id={ 'faqs.page.answers.Q19'}
defaultMessage={ `The Climate and Economic Justice Screening Tool (CEJST) has <link1>downloads</link1> available. Spreadsheets (.xlxs) and (.csv) contain the tools definitions and data. This data can be used for analysis. Shapefiles and geojson files can be uploaded into other mapping programs such as Esri. The downloads include information on how to use the files.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q19'}
values={{
link1: linkFn(PAGES_ENDPOINTS.DOWNLOADS, true, false),
}}
/>,
Q20_P1: <FormattedMessage
id={ 'faqs.page.answers.Q20_P1'}
defaultMessage={ `The tools shapefile can be uploaded into other mapping programs such as Esri.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q20_P1'}
/>,
Q20_P2: <FormattedMessage
id={ 'faqs.page.answers.Q20_P2'}
defaultMessage={ `The <link1>shapefile</link1> format is <link2>a geospatial vector data format</link2> for geographic information system (GIS) software. It can be loaded into any software that works with Esri, ArcGIS or any other compatible GIS software. You may choose to download the data in this format so that you can load the data from the Climate and Economic Justice Screening Tool (CEJST) into other tools and use those tools to combine the CEJST data with other datasets and sources.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q20_P2'}
values= {{
link1: linkFn('https://en.wikipedia.org/wiki/Shapefile', false, true),
link2: linkFn('https://en.wikipedia.org/wiki/GIS_file_formats', false, true),
}}
/>,
};

View file

@ -451,6 +451,11 @@ export const DATASET_CARD_LABELS = defineMessages({
defaultMessage: 'Available for: ',
description: 'Navigate to the Methodology page. This is the label associated with available for which regions of the card',
},
NEW: {
id: 'methodology.page.datasetCard.new',
defaultMessage: 'NEW',
description: 'Navigate to the Methodology page. This is the label associated with a NEW card',
},
});
export const DATE_RANGE = {
@ -735,6 +740,7 @@ export const AVAILABLE_FOR = defineMessages({
export interface IIndicators {
domID: string,
indicator: JSX.Element,
isNew?: boolean,
description: JSX.Element,
note?: JSX.Element,
usedIn: JSX.Element,
@ -851,9 +857,10 @@ export const INDICATORS = [
domID: 'flood-risk',
indicator: <FormattedMessage
id={'methodology.page.dataset.indicator.flood.risk.title.text'}
defaultMessage={`NEW Projected flood risk`}
defaultMessage={`Projected flood risk`}
description={'Navigate to the Methodology page. This is the title text for the NEW Projected flood risk'}
/>,
isNew: true,
description: <FormattedMessage
id={'methodology.page.category.flood.risk.rate.description.text'}
defaultMessage={`
@ -874,9 +881,10 @@ export const INDICATORS = [
domID: 'wildfire-risk',
indicator: <FormattedMessage
id={'methodology.page.dataset.indicator.wildfire.risk.title.text'}
defaultMessage={`NEW Projected wildfire risk`}
defaultMessage={`Projected wildfire risk`}
description={'Navigate to the Methodology page. This is the title text for the NEW Projected wildfire risk'}
/>,
isNew: true,
description: <FormattedMessage
id={'methodology.page.category.wildfire.risk.rate.description.text'}
defaultMessage={`
@ -1110,9 +1118,10 @@ export const INDICATORS = [
domID: 'green-space',
indicator: <FormattedMessage
id={'methodology.page.dataset.indicator.green.space.title.text'}
defaultMessage={`NEW Lack of green space`}
defaultMessage={`Lack of green space`}
description={'Navigate to the Methodology page. This is the title text for the house burden dataset'}
/>,
isNew: true,
description: <FormattedMessage
id={'methodology.page.category.green.space.description.text'}
defaultMessage={`
@ -1133,9 +1142,10 @@ export const INDICATORS = [
domID: 'indoor-plumb',
indicator: <FormattedMessage
id={'methodology.page.dataset.indicator.indoor.plumb.title.text'}
defaultMessage={`NEW Lack of indoor plumbing`}
defaultMessage={`Lack of indoor plumbing`}
description={'Navigate to the Methodology page. This is the title text for the indoor plumbing'}
/>,
isNew: true,
description: <FormattedMessage
id={'methodology.page.category.indoor.plumb.description.text'}
defaultMessage={`
@ -1181,9 +1191,10 @@ export const INDICATORS = [
domID: 'mine-land',
indicator: <FormattedMessage
id={'methodology.page.dataset.indicator.mine.land.title.text'}
defaultMessage={`NEW Abandoned mine lands`}
defaultMessage={`Abandoned mine lands`}
description={'Navigate to the Methodology page. This is the title text for the Abandoned mine lands'}
/>,
isNew: true,
description: <FormattedMessage
id={'methodology.page.category.mine.land.description.text'}
defaultMessage={`
@ -1204,9 +1215,10 @@ export const INDICATORS = [
domID: 'fuds',
indicator: <FormattedMessage
id={'methodology.page.dataset.indicator.fuds.title.text'}
defaultMessage={`NEW Formerly Used Defense Sites`}
defaultMessage={`Formerly Used Defense Sites`}
description={'Navigate to the Methodology page. This is the title text for the Formerly Used Defense Sites'}
/>,
isNew: true,
description: <FormattedMessage
id={'methodology.page.category.fuds.description.text'}
defaultMessage={`
@ -1321,9 +1333,10 @@ export const INDICATORS = [
domID: 'trans-barrier',
indicator: <FormattedMessage
id={'methodology.page.dataset.indicator.trans.barrier.title.text'}
defaultMessage={`NEW Transportation barriers`}
defaultMessage={`Transportation barriers`}
description={'Navigate to the Methodology page. This is the title text for the Transportation barriers'}
/>,
isNew: true,
description: <FormattedMessage
id={'methodology.page.category.trans.barrier.description.text'}
defaultMessage={`
@ -1369,9 +1382,10 @@ export const INDICATORS = [
domID: 'leaky-uwt',
indicator: <FormattedMessage
id={'methodology.page.dataset.indicator.leaky.uwt.title.text'}
defaultMessage={`NEW Leaking underground storage tanks`}
defaultMessage={`Leaking underground storage tanks`}
description={'Navigate to the Methodology page. This is the title text for the Leaking underground storage tanks'}
/>,
isNew: true,
description: <FormattedMessage
id={'methodology.page.category.leaky.uwt.description.text'}
defaultMessage={`
@ -1568,9 +1582,10 @@ export const INDICATORS = [
domID: 'tribal-lands',
indicator: <FormattedMessage
id={'methodology.page.dataset.indicator.tribal.lands.title.text'}
defaultMessage={`NEW Tribal lands`}
defaultMessage={`Tribal lands`}
description={'Navigate to the Methodology page. This is the title text for the Tribal lands'}
/>,
isNew: true,
description: <FormattedMessage
id={'methodology.page.category.tribal.lands.description.text'}
defaultMessage={`

View file

@ -1143,6 +1143,338 @@
"defaultMessage": "Help improve the site & data",
"description": "Navigate to the public engagement page, this will be the text for floating action button"
},
"faqs.page.Q1": {
"defaultMessage": "Q: What is the Climate and Economic Justice Screening Tool (CEJST)?",
"description": "Navigate to the FAQs page, this will be Q1"
},
"faqs.page.Q10": {
"defaultMessage": "Q: How will this tool be used to inform decisions relating to new investments made through the Bipartisan Infrastructure Law and the Inflation Reduction Act?",
"description": "Navigate to the FAQs page, this will be Q10"
},
"faqs.page.Q11": {
"defaultMessage": "Q: Will agencies use the Climate and Economic Justice Screening Tool (CEJST) if they have already created their own tools or criteria to identify disadvantaged communities?",
"description": "Navigate to the FAQs page, this will be Q11"
},
"faqs.page.Q12": {
"defaultMessage": "Q: How is the Climate and Economic Justice Screening Tool (CEJST) different from the Environmental Protection Agencys (EPA) EJScreen?",
"description": "Navigate to the FAQs page, this will be Q12"
},
"faqs.page.Q13": {
"defaultMessage": "Q: How is this tool different from state screening tools?",
"description": "Navigate to the FAQs page, this will be Q13"
},
"faqs.page.Q14": {
"defaultMessage": "Q: How were the White House Environmental Justice Advisory Council (WHEJAC) recommendations used for this tool?",
"description": "Navigate to the FAQs page, this will be Q14"
},
"faqs.page.Q15": {
"defaultMessage": "Q: Can the public provide feedback on this tool?",
"description": "Navigate to the FAQs page, this will be Q15"
},
"faqs.page.Q16": {
"defaultMessage": "Q: Will CEQ issue another Request for Information about the tool?",
"description": "Navigate to the FAQs page, this will be Q16"
},
"faqs.page.Q17": {
"defaultMessage": "Q: When did the official version of the tool come out?",
"description": "Navigate to the FAQs page, this will be Q17"
},
"faqs.page.Q18": {
"defaultMessage": "Q. How does the Council on Environmental Quality (CEQ) keep people informed about the tool?",
"description": "Navigate to the FAQs page, this will be Q18"
},
"faqs.page.Q19": {
"defaultMessage": "Q: What files and documentation are available from the tool?",
"description": "Navigate to the FAQs page, this will be Q19"
},
"faqs.page.Q2": {
"defaultMessage": "Q: How does the tool identify and define communities?",
"description": "Navigate to the FAQs page, this will be Q2"
},
"faqs.page.Q20": {
"defaultMessage": "Q: How does the tools shapefile work?",
"description": "Navigate to the FAQs page, this will be Q20"
},
"faqs.page.Q3": {
"defaultMessage": "Q: Is race included in the tools methodology?",
"description": "Navigate to the FAQs page, this will be Q3"
},
"faqs.page.Q4": {
"defaultMessage": "Q: Does the Climate and Economic Justice Screening Tool (CEJST) include the U.S. territories?",
"description": "Navigate to the FAQs page, this will be Q4"
},
"faqs.page.Q5": {
"defaultMessage": "Q: Does the tool include Tribal Nations?",
"description": "Navigate to the FAQs page, this will be Q5"
},
"faqs.page.Q6": {
"defaultMessage": "Q: Why do some areas of the map have different shades?",
"description": "Navigate to the FAQs page, this will be Q6"
},
"faqs.page.Q7": {
"defaultMessage": "Q: Why does the tool have “partially disadvantaged” census tracts?",
"description": "Navigate to the FAQs page, this will be Q7"
},
"faqs.page.Q8": {
"defaultMessage": "Q: How does this tool relate to the Justice40 Initiative?",
"description": "Navigate to the FAQs page, this will be Q8"
},
"faqs.page.Q9": {
"defaultMessage": "Q: How will Federal agencies use the Climate and Economic Justice Screening Tool (CEJST) for the Justice40 Initiative?",
"description": "Navigate to the FAQs page, this will be Q9"
},
"faqs.page.answers.Q10": {
"defaultMessage": "Recent historic legislation—such as the Bipartisan Infrastructure Law and the Inflation Reduction Act—have created new programs or directed funds to existing programs. These investments are included in the Justice40 Initiative if they meet the eligibility criteria. Agencies will use the CEJST to help identify disadvantaged communities that will receive 40% of the overall benefits of those Justice40 programs.",
"description": "Navigate to the FAQs page, this will be an answer, Q10"
},
"faqs.page.answers.Q11": {
"defaultMessage": "The Council on Environmental Quality (CEQ), the Office of Management and Budget (OMB), and the Climate Policy Office (CPO) released the Justice40 Interim Implementation Guidance on July 20, 2021. It directed agencies to develop interim definitions of disadvantaged communities. Agencies used their interim definitions during the tools beta phase. Agencies will now transition to using version 1.0 of the tool to geographically identify disadvantaged communities.",
"description": "Navigate to the FAQs page, this will be an answer, Q11"
},
"faqs.page.answers.Q12_P1": {
"defaultMessage": "The CEJST uses lessons learned from the EPA's EJScreen. EJScreen is an environmental justice mapping and screening tool. EJScreen shows environmental and demographic information. The EPA, Federal agencies, and state and local governments will continue to use EJScreen to understand and analyze environmental problems. For example, EPA uses <link1>EJScreen</link1> to:",
"description": "Navigate to the FAQs page, this will be an answer, Q12_P1"
},
"faqs.page.answers.Q12_P1_1": {
"defaultMessage": "Inform outreach and engagement practices",
"description": "Navigate to the FAQs page, this will be an answer, Q12_P1_1"
},
"faqs.page.answers.Q12_P1_2": {
"defaultMessage": "Implement aspects of the following programs:",
"description": "Navigate to the FAQs page, this will be an answer, Q12_P1_2"
},
"faqs.page.answers.Q12_P1_2_1": {
"defaultMessage": "Permitting programs",
"description": "Navigate to the FAQs page, this will be an answer, Q12_P1_2_1"
},
"faqs.page.answers.Q12_P1_2_2": {
"defaultMessage": "Enforcement programs",
"description": "Navigate to the FAQs page, this will be an answer, Q12_P1_2_2"
},
"faqs.page.answers.Q12_P1_2_3": {
"defaultMessage": "Compliance programs",
"description": "Navigate to the FAQs page, this will be an answer, Q12_P1_2_3"
},
"faqs.page.answers.Q12_P1_2_4": {
"defaultMessage": "Voluntary programs",
"description": "Navigate to the FAQs page, this will be an answer, Q12_P1_2_4"
},
"faqs.page.answers.Q12_P1_3": {
"defaultMessage": "Develop retrospective reports of EPA work",
"description": "Navigate to the FAQs page, this will be an answer, Q12_P1_3"
},
"faqs.page.answers.Q12_P1_4": {
"defaultMessage": "Enhance geographically based initiatives",
"description": "Navigate to the FAQs page, this will be an answer, Q12_P1_4"
},
"faqs.page.answers.Q12_P2": {
"defaultMessage": "However, EPA does not use EJScreen to identify or label an area as an \"EJ community\" or as the sole basis for agency-decision-making.",
"description": "Navigate to the FAQs page, this will be an answer, Q12_P2"
},
"faqs.page.answers.Q12_P3": {
"defaultMessage": "In contrast, the CEJST will help Federal agencies to identify disadvantaged communities that will benefit from programs included in the Justice40 Initiative.",
"description": "Navigate to the FAQs page, this will be an answer, Q12_P3"
},
"faqs.page.answers.Q13_P1": {
"defaultMessage": "Several states that have environmental justice screening tools. CalEnviroScreen is an environmental justice screening tool for California. Other states, like New York and Michigan have screening tools as well. The Climate and Economic Justice Screening Tool (CEJST) incorporates lessons learned from these efforts.",
"description": "Navigate to the FAQs page, this will be an answer, Q13_P1"
},
"faqs.page.answers.Q13_P2": {
"defaultMessage": "There is an important difference between state-based tools and the CEJST. State tools use data that may not be available for other states. The CEJST only uses data that are nationally-consistent and publicly-available.",
"description": "Navigate to the FAQs page, this will be an answer, Q13_P2"
},
"faqs.page.answers.Q14": {
"defaultMessage": "The WHEJAC provided recommendations on the Climate and Economic Justice Screening Tool (CEJST). The CEJST follows many of these recommendations.",
"description": "Navigate to the FAQs page, this will be an answer, Q14"
},
"faqs.page.answers.Q15_P1": {
"defaultMessage": "Yes. The CEJST website has multiple ways to offer feedback on the tool.",
"description": "Navigate to the FAQs page, this will be an answer, Q15_P1"
},
"faqs.page.answers.Q15_P1_1": {
"defaultMessage": "The public can find census tracts that they are familiar with and send feedback about those tracts. That feedback is used to “ground truth” the tool. This helps the tool to better reflect the realities for communities.",
"description": "Navigate to the FAQs page, this will be an answer, Q15_P1_1"
},
"faqs.page.answers.Q15_P1_2": {
"defaultMessage": "The public can also submit data sources or ideas for consideration.",
"description": "Navigate to the FAQs page, this will be an answer, Q15_P1_2"
},
"faqs.page.answers.Q15_P1_3": {
"defaultMessage": "The public may also take a short survey to help improve the experience of using the tool.",
"description": "Navigate to the FAQs page, this will be an answer, Q15_P1_3"
},
"faqs.page.answers.Q15_P1_4": {
"defaultMessage": "The public can also email {general_email_address}",
"description": "Navigate to the FAQs page, this will be an answer, Q15_P1_4"
},
"faqs.page.answers.Q16": {
"defaultMessage": "Yes. CEQ plans to issue a Request for Information (RFI) about version 1.0 of the CEJST in 2023. The feedback received in that RFI will inform version 2.0 of the tool.",
"description": "Navigate to the FAQs page, this will be an answer, Q16"
},
"faqs.page.answers.Q17_P1": {
"defaultMessage": "The tool is now considered official because Federal agencies can now use version 1.0 of the Climate and Economic Justice Screening Tool (CEJST) to help identify disadvantaged communities. The 1.0 version was released in MM, YYYY. The tool is no longer in beta.",
"description": "Navigate to the FAQs page, this will be an answer, Q17_P1"
},
"faqs.page.answers.Q17_P2": {
"defaultMessage": "The tool will be improved over time. The Council on Environmental Quality (CEQ) will update the tool each year based on public feedback, research, and the availability of new data.",
"description": "Navigate to the FAQs page, this will be an answer, Q17_P2"
},
"faqs.page.answers.Q18": {
"defaultMessage": "Sign-up to receive updates on the Climate and Economic Justice Screening Tool (CEJST) and other environmental justice news from CEQ.",
"description": "Navigate to the FAQs page, this will be an answer, Q18"
},
"faqs.page.answers.Q19": {
"defaultMessage": "The Climate and Economic Justice Screening Tool (CEJST) has <link1>downloads</link1> available. Spreadsheets (.xlxs) and (.csv) contain the tools definitions and data. This data can be used for analysis. Shapefiles and geojson files can be uploaded into other mapping programs such as Esri. The downloads include information on how to use the files.",
"description": "Navigate to the FAQs page, this will be an answer, Q19"
},
"faqs.page.answers.Q1_P1": {
"defaultMessage": "The CEJST is a critical component of the Biden-Harris Administrations historic commitment to advancing environmental justice. In <link1>Executive Order 14008</link1> on Tackling the Climate Crisis at Home and Abroad, President Biden directed the White House Council on Environmental Quality (CEQ) to develop a geospatial mapping tool to identify disadvantaged communities that face burdens. The tool has an interactive map and uses datasets that are indicators of burdens.",
"description": "Navigate to the FAQs page, this will be an answer, Q1_P1"
},
"faqs.page.answers.Q1_P2": {
"defaultMessage": "Federal agencies will use the tool for the Justice40 Initiative. It will help them identify disadvantaged communities that should receive 40% of the overall benefits of programs included in the Justice40 Initiative. The Justice40 Initiative seeks to deliver 40% of the overall benefits in climate, clean energy, and other related areas to disadvantaged communities.",
"description": "Navigate to the FAQs page, this will be an answer, Q1_P2"
},
"faqs.page.answers.Q1_P3": {
"defaultMessage": "Other useful links for Federal agencies:",
"description": "Navigate to the FAQs page, this will be an answer, Q1_P3"
},
"faqs.page.answers.Q1_P3_1": {
"defaultMessage": "Addendum to the Justice40 Interim Guidance",
"description": "Navigate to the FAQs page, this will be an answer, Q1_P3_1"
},
"faqs.page.answers.Q1_P3_2": {
"defaultMessage": "Instructions to Federal Agencies on Using the CEJST",
"description": "Navigate to the FAQs page, this will be an answer, Q1_P3_2"
},
"faqs.page.answers.Q1_P4": {
"defaultMessage": "The public can find communities of interest and provide feedback. This feedback will be used to improve the tool.",
"description": "Navigate to the FAQs page, this will be an answer, Q1_P4"
},
"faqs.page.answers.Q20_P1": {
"defaultMessage": "The tools shapefile can be uploaded into other mapping programs such as Esri.",
"description": "Navigate to the FAQs page, this will be an answer, Q20_P1"
},
"faqs.page.answers.Q20_P2": {
"defaultMessage": "The <link1>shapefile</link1> format is <link2>a geospatial vector data format</link2> for geographic information system (GIS) software. It can be loaded into any software that works with Esri, ArcGIS or any other compatible GIS software. You may choose to download the data in this format so that you can load the data from the Climate and Economic Justice Screening Tool (CEJST) into other tools and use those tools to combine the CEJST data with other datasets and sources.",
"description": "Navigate to the FAQs page, this will be an answer, Q20_P2"
},
"faqs.page.answers.Q2_P1": {
"defaultMessage": "<link1>Executive Order 14008</link1> recognizes that some communities are disadvantaged because they face burdens. The CEJST uses datasets that are indicators of burden. These burdens are related to climate change and the environment. They are also related to health and lack of economic opportunity.",
"description": "Navigate to the FAQs page, this will be an answer, Q2_P1"
},
"faqs.page.answers.Q2_P2": {
"defaultMessage": "The tool highlights disadvantaged communities across all 50 states, the District of Columbia, and the U.S. territories. A community is considered disadvantaged:",
"description": "Navigate to the FAQs page, this will be an answer, Q2_P2"
},
"faqs.page.answers.Q2_P2_1": {
"defaultMessage": "If they are in a census tract that meets the thresholds for at least one of the tools categories of burden, or",
"description": "Navigate to the FAQs page, this will be an answer, Q2_P2_1"
},
"faqs.page.answers.Q2_P2_2": {
"defaultMessage": "If they are on Federally Recognized Tribal land",
"description": "Navigate to the FAQs page, this will be an answer, Q2_P2_2"
},
"faqs.page.answers.Q2_P3": {
"defaultMessage": "Not all disadvantaged communities can be shown on the map. Some communities, such as migrant workers, do not live in just one place. The Interim Implementation Guidance on the Justice40 Initiative also directs Federal agencies to consider geographically dispersed communities when implementing programs included in the Justice40 Initiative.",
"description": "Navigate to the FAQs page, this will be an answer, Q2_P3"
},
"faqs.page.answers.Q3_P1": {
"defaultMessage": "No. The Climate and Economic Justice Screening Tool (CEJST) does not use racial demographics in its methodology. The current version of the tool offers data about race and age only as information when a specific census tract is selected. It is well-documented that communities of color suffer disproportionately from environmental and health burdens. Due to decades of underinvestment, they also face greater risks from climate change.",
"description": "Navigate to the FAQs page, this will be an answer, Q3_P1"
},
"faqs.page.answers.Q3_P2": {
"defaultMessage": "Although the CEJST does not use race in the methodology, it seeks to create a map that reflects the on-the-ground burdens and realities that disadvantaged communities face. The tool shows communities that have environmental burdens and face injustice.",
"description": "Navigate to the FAQs page, this will be an answer, Q3_P2"
},
"faqs.page.answers.Q4_P1": {
"defaultMessage": "Yes, the version 1.0 of the CEJST has some data for all the territories but not all the CEJST data are available or used for all U.S. territories.",
"description": "Navigate to the FAQs page, this will be an answer, Q4_P1"
},
"faqs.page.answers.Q4_P2": {
"defaultMessage": "<boldtag>Puerto Rico:</boldtag> The data used for Puerto Rico are from all relevant and available fields in the energy, housing, legacy pollution, transportation, and workforce development categories. The following data are used: projected flood risk, energy cost, lack of plumbing, lead paint, housing cost, proximity to hazardous waste facilities, proximity to Superfund or National Priorities List (NPL) sites, proximity to Risk Management Plan (RMP) facilities, diesel particulate matter exposure, traffic proximity and volume, leaking underground storage tanks, wastewater discharge, poverty, unemployment, and high school education. Linguistic isolation was removed for Puerto Rico based on feedback received during the beta period.",
"description": "Navigate to the FAQs page, this will be an answer, Q4_P2"
},
"faqs.page.answers.Q4_P3": {
"defaultMessage": "<boldtag>American Samoa, Guam, the Northern Mariana Islands, and the U.S. Virgin Islands:</boldtag> The data used for Puerto Rico are from all relevant and available fields in the energy, housing, legacy pollution, transportation, and workforce development categories. The following data are used: projected flood risk, energy cost, lack of plumbing, lead paint, housing cost, proximity to hazardous waste facilities, proximity to Superfund or National Priorities List (NPL) sites, proximity to Risk Management Plan (RMP) facilities, diesel particulate matter exposure, traffic proximity and volume, leaking underground storage tanks, wastewater discharge, poverty, unemployment, and high school education. Linguistic isolation was removed for Puerto Rico based on feedback received during the beta period.",
"description": "Navigate to the FAQs page, this will be an answer, Q4_P3"
},
"faqs.page.answers.Q5_P1": {
"defaultMessage": "To respect Tribal sovereignty and self-government and to fulfill Federal trust and treaty responsibilities to Tribal Nations, Federally Recognized Tribal lands are highlighted as disadvantaged on the map. Alaska Native Villages are included as point locations that are smaller than census tracts. The tools census tracts and Tribal lands have different boundaries.",
"description": "Navigate to the FAQs page, this will be an answer, Q5_P1"
},
"faqs.page.answers.Q5_P2": {
"defaultMessage": "Federally Recognized Tribes are those that are recognized by the U.S. Bureau of Indian Affairs in the <link1>annual notice</link1> it publishes in the Federal Register:",
"description": "Navigate to the FAQs page, this will be an answer, Q5_P2"
},
"faqs.page.answers.Q5_P2_1": {
"defaultMessage": "The decision to highlight Federally-recognized Tribal lands on the CEJST map and to designate them as disadvantaged communities was made after meaningful and robust consultation with Tribal Nations. This approach is consistent with CEQs Action Plan for Consultation and Coordination with Tribal Nations, President Bidens Memorandum on Tribal Consultation and Strengthening Nation-to-Nation Consultation, and Executive Order 13175 on Consultation and Coordination With Indian Tribal Governments.",
"description": "Navigate to the FAQs page, this will be an answer, Q5_P2_1"
},
"faqs.page.answers.Q6_P1": {
"defaultMessage": "Some census tracts that contain lands of Federally-recognized Tribes that are also considered disadvantaged because they meet the burden thresholds for at least one of the categories on the tool. When this happens, the areas appear darker on the tools map.",
"description": "Navigate to the FAQs page, this will be an answer, Q6_P1"
},
"faqs.page.answers.Q6_P2": {
"defaultMessage": ": Disadvantaged census tracts",
"description": "Navigate to the FAQs page, this will be an answer, Q6_P2"
},
"faqs.page.answers.Q6_P3": {
"defaultMessage": ": Disadvantaged census tracts and Federally-Recognized Tribal lands",
"description": "Navigate to the FAQs page, this will be an answer, Q6_P3"
},
"faqs.page.answers.Q6_P4": {
"defaultMessage": "Any area that is highlighted is considered disadvantaged, regardless of whether it is a light shade or dark shade. The tool will show if a whole census tract is considered disadvantaged or just the parts that are Federally Recognized Tribal lands.",
"description": "Navigate to the FAQs page, this will be an answer, Q6_P4"
},
"faqs.page.answers.Q7": {
"defaultMessage": "A census tract that does not meet any of the burden thresholds in the tool is usually not considered to be a disadvantaged community. However, if such a census tract contains Federally Recognized Tribal lands, then the parts of the tract that are Tribal lands are considered disadvantaged. The tool will display this type of census tract as “partially disadvantaged.”",
"description": "Navigate to the FAQs page, this will be an answer, Q7"
},
"faqs.page.answers.Q8_P1": {
"defaultMessage": "The Biden administration is advancing environmental justice across the whole-of-government. The Justice40 Initiative is a critical part of this effort. The Justice40 Initiative seeks to deliver 40% of the overall benefits of climate, clean energy, and related investments to disadvantaged communities.",
"description": "Navigate to the FAQs page, this will be an answer, Q8_P1"
},
"faqs.page.answers.Q8_P2": {
"defaultMessage": "The CEJST will play an important role in the Justice40 Initiative. It will help to provide a single, consistent definition of disadvantaged communities for programs included in the Justice40 Initiative.",
"description": "Navigate to the FAQs page, this will be an answer, Q8_P2"
},
"faqs.page.answers.Q9_P1": {
"defaultMessage": "Federal agencies will use the tool to help identify disadvantaged communities that will benefit from programs included in the Justice40 Initiative. The Justice40 Initiative seeks to deliver 40% of the overall benefits of certain investments to disadvantaged communities.",
"description": "Navigate to the FAQs page, this will be an answer, Q9_P1"
},
"faqs.page.answers.Q9_P2": {
"defaultMessage": "The CEJST will play an important role in the Justice40 Initiative. It will help to provide a single definition of disadvantaged communities for programs included in the Justice40 Initiative. This definition applies to the whole government. Federal agencies will use this definition to direct Justice40 investment benefits in the following areas:",
"description": "Navigate to the FAQs page, this will be an answer, Q9_P2"
},
"faqs.page.answers.Q9_P2_1": {
"defaultMessage": "Climate",
"description": "Navigate to the FAQs page, this will be an answer, Q9_P2_1"
},
"faqs.page.answers.Q9_P2_2": {
"defaultMessage": "Clean energy and energy efficiency",
"description": "Navigate to the FAQs page, this will be an answer, Q9_P2_2"
},
"faqs.page.answers.Q9_P2_3": {
"defaultMessage": "Clean transit",
"description": "Navigate to the FAQs page, this will be an answer, Q9_P2_3"
},
"faqs.page.answers.Q9_P2_4": {
"defaultMessage": "Affordable and sustainable housing",
"description": "Navigate to the FAQs page, this will be an answer, Q9_P2_4"
},
"faqs.page.answers.Q9_P2_5": {
"defaultMessage": "Training and workforce development",
"description": "Navigate to the FAQs page, this will be an answer, Q9_P2_5"
},
"faqs.page.answers.Q9_P2_6": {
"defaultMessage": "Remediation and reduction of legacy pollution",
"description": "Navigate to the FAQs page, this will be an answer, Q9_P2_6"
},
"faqs.page.answers.Q9_P2_7": {
"defaultMessage": "Development of clean water and wastewater infrastructure",
"description": "Navigate to the FAQs page, this will be an answer, Q9_P2_7"
},
"faqs.page.coming.soon.text": {
"defaultMessage": "Coming Soon!",
"description": "Navigate to the FAQs page, this will be the page coming soon text"
@ -1492,15 +1824,15 @@
"description": "Navigate to the Methodology page. This is the title text for the expected agr loss rate income dataset"
},
"methodology.page.dataset.indicator.flood.risk.title.text": {
"defaultMessage": "NEW Projected flood risk",
"defaultMessage": "Projected flood risk",
"description": "Navigate to the Methodology page. This is the title text for the NEW Projected flood risk"
},
"methodology.page.dataset.indicator.fuds.title.text": {
"defaultMessage": "NEW Formerly Used Defense Sites",
"defaultMessage": "Formerly Used Defense Sites",
"description": "Navigate to the Methodology page. This is the title text for the Formerly Used Defense Sites"
},
"methodology.page.dataset.indicator.green.space.title.text": {
"defaultMessage": "NEW Lack of green space",
"defaultMessage": "Lack of green space",
"description": "Navigate to the Methodology page. This is the title text for the house burden dataset"
},
"methodology.page.dataset.indicator.heart.disease.title.text": {
@ -1520,7 +1852,7 @@
"description": "Navigate to the Methodology page. This is the title text for the house burden dataset"
},
"methodology.page.dataset.indicator.indoor.plumb.title.text": {
"defaultMessage": "NEW Lack of indoor plumbing",
"defaultMessage": "Lack of indoor plumbing",
"description": "Navigate to the Methodology page. This is the title text for the indoor plumbing"
},
"methodology.page.dataset.indicator.lead.paint.title.text": {
@ -1528,7 +1860,7 @@
"description": "Navigate to the Methodology page. This is the title text for the lead paint dataset"
},
"methodology.page.dataset.indicator.leaky.uwt.title.text": {
"defaultMessage": "NEW Leaking underground storage tanks",
"defaultMessage": "Leaking underground storage tanks",
"description": "Navigate to the Methodology page. This is the title text for the Leaking underground storage tanks"
},
"methodology.page.dataset.indicator.life.exp.title.text": {
@ -1548,7 +1880,7 @@
"description": "Navigate to the Methodology page. This is the title text for the low median income dataset"
},
"methodology.page.dataset.indicator.mine.land.title.text": {
"defaultMessage": "NEW Abandoned mine lands",
"defaultMessage": "Abandoned mine lands",
"description": "Navigate to the Methodology page. This is the title text for the Abandoned mine lands"
},
"methodology.page.dataset.indicator.pm25.title.text": {
@ -1576,11 +1908,11 @@
"description": "Navigate to the Methodology page. This is the title text for the traffic.volume dataset"
},
"methodology.page.dataset.indicator.trans.barrier.title.text": {
"defaultMessage": "NEW Transportation barriers",
"defaultMessage": "Transportation barriers",
"description": "Navigate to the Methodology page. This is the title text for the Transportation barriers"
},
"methodology.page.dataset.indicator.tribal.lands.title.text": {
"defaultMessage": "NEW Tribal lands",
"defaultMessage": "Tribal lands",
"description": "Navigate to the Methodology page. This is the title text for the Tribal lands"
},
"methodology.page.dataset.indicator.unemploy.title.text": {
@ -1592,7 +1924,7 @@
"description": "Navigate to the Methodology page. This is the title text for the waste water dataset"
},
"methodology.page.dataset.indicator.wildfire.risk.title.text": {
"defaultMessage": "NEW Projected wildfire risk",
"defaultMessage": "Projected wildfire risk",
"description": "Navigate to the Methodology page. This is the title text for the NEW Projected wildfire risk"
},
"methodology.page.datasetCard.available.for": {
@ -1603,6 +1935,10 @@
"defaultMessage": "Date range:",
"description": "Navigate to the Methodology page. This is the label associated with explaining the card"
},
"methodology.page.datasetCard.new": {
"defaultMessage": "NEW",
"description": "Navigate to the Methodology page. This is the label associated with a NEW card"
},
"methodology.page.datasetCard.responsible.party": {
"defaultMessage": "Responsible Party:",
"description": "Navigate to the Methodology page. This is the label associated with explaining the card"

View file

@ -82,8 +82,8 @@ const AboutPage = ({location}: IAboutPageProps) => {
<SubPageNav
endPoints={[
PAGES_ENDPOINTS.ABOUT,
PAGES_ENDPOINTS.FAQS,
PAGES_ENDPOINTS.PUBLIC_ENG,
PAGES_ENDPOINTS.FAQS,
]}
/>
</Grid> : ''}

View file

@ -1,28 +1,257 @@
import * as React from 'react';
import {Grid} from '@trussworks/react-uswds';
import {Accordion, Grid} from '@trussworks/react-uswds';
import {AccordionItemProps} from '@trussworks/react-uswds/lib/components/Accordion/Accordion';
import {useIntl} from 'gatsby-plugin-intl';
import {useWindowSize} from 'react-use';
import J40MainGridContainer from '../components/J40MainGridContainer';
import Layout from '../components/layout';
import SubPageNav from '../components/SubPageNav';
import * as CONSTANTS from '../data/constants';
import * as FAQS_COPY from '../data/copy/faqs';
import {PAGES_ENDPOINTS} from '../data/constants';
import {SIDE_PANEL_INIT_STATE_ICON_ALT_TEXT} from '../data/copy/explore';
// @ts-ignore
import censusDotIcon from '../images/sidePanelIcons/census-tract.svg';
// @ts-ignore
import tribalDotIcon from '../images/sidePanelIcons/tribal-tract.svg';
interface IFAQPageProps {
location: Location;
}
const dotStyles = {
display: 'flex',
p: {
paddingLeft: '2px',
},
};
const accordionContainerStyle = {
marginTop: `1.2rem`,
};
const FAQPage = ({location}: IFAQPageProps) => {
const intl = useIntl();
const {width} = useWindowSize();
const ANSWERS = [
(
<>
<p key={1}>{FAQS_COPY.FAQ_ANSWERS.Q1_P1}</p>
<p>{FAQS_COPY.FAQ_ANSWERS.Q1_P2}</p>
<p>{FAQS_COPY.FAQ_ANSWERS.Q1_P3}</p>
<ul>
<li>{FAQS_COPY.FAQ_ANSWERS.Q1_P3_1}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q1_P3_2}</li>
</ul>
<p>{FAQS_COPY.FAQ_ANSWERS.Q1_P4}</p>
</>
),
(
<>
<p key={2}>{FAQS_COPY.FAQ_ANSWERS.Q2_P1}</p>
<p>{FAQS_COPY.FAQ_ANSWERS.Q2_P2}</p>
<ul>
<li>{FAQS_COPY.FAQ_ANSWERS.Q2_P2_1}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q2_P2_2}</li>
</ul>
<p>{FAQS_COPY.FAQ_ANSWERS.Q2_P3}</p>
</>
),
(
<>
<p key={3}>{FAQS_COPY.FAQ_ANSWERS.Q3_P1}</p>
<p>{FAQS_COPY.FAQ_ANSWERS.Q3_P2}</p>
</>
),
(
<>
<p key={4}>{FAQS_COPY.FAQ_ANSWERS.Q4_P1}</p>
<p>{FAQS_COPY.FAQ_ANSWERS.Q4_P2}</p>
<p>{FAQS_COPY.FAQ_ANSWERS.Q4_P3}</p>
</>
),
(
<>
<p key={5}>{FAQS_COPY.FAQ_ANSWERS.Q5_P1}</p>
<p>{FAQS_COPY.FAQ_ANSWERS.Q5_P2}</p>
<ul>
<li>{FAQS_COPY.FAQ_ANSWERS.Q5_P2_1}</li>
</ul>
</>
),
(
<>
<p key={6}>{FAQS_COPY.FAQ_ANSWERS.Q6_P1}</p>
<div style={dotStyles}>
<img src={censusDotIcon}
alt={intl.formatMessage(SIDE_PANEL_INIT_STATE_ICON_ALT_TEXT.DAC_CIRCLE)}
/>
<div style={dotStyles.p}>{FAQS_COPY.FAQ_ANSWERS.Q6_P2}</div>
</div>
<div style={dotStyles}>
<img src={tribalDotIcon}
alt={intl.formatMessage(SIDE_PANEL_INIT_STATE_ICON_ALT_TEXT.DAC_CIRCLE)}
/>
<div style={dotStyles.p}>{FAQS_COPY.FAQ_ANSWERS.Q6_P3}</div>
</div>
<p>{FAQS_COPY.FAQ_ANSWERS.Q6_P4}</p>
</>
),
(
<>
<p key={7}>{FAQS_COPY.FAQ_ANSWERS.Q7}</p>
</>
),
(
<>
<p key={8}>{FAQS_COPY.FAQ_ANSWERS.Q8_P1}</p>
<p>{FAQS_COPY.FAQ_ANSWERS.Q8_P2}</p>
</>
),
(
<>
<p key={9}>{FAQS_COPY.FAQ_ANSWERS.Q9_P1}</p>
<p>{FAQS_COPY.FAQ_ANSWERS.Q9_P2}</p>
<ul>
<li>{FAQS_COPY.FAQ_ANSWERS.Q9_P2_1}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q9_P2_2}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q9_P2_3}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q9_P2_4}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q9_P2_5}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q9_P2_6}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q9_P2_7}</li>
</ul>
</>
),
(
<>
<p key={10}>{FAQS_COPY.FAQ_ANSWERS.Q10}</p>
</>
),
(
<>
<p key={11}>{FAQS_COPY.FAQ_ANSWERS.Q11}</p>
</>
),
(
<>
<p key={12}>{FAQS_COPY.FAQ_ANSWERS.Q12_P1}</p>
<ul>
<li>{FAQS_COPY.FAQ_ANSWERS.Q12_P1_1}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q12_P1_2}</li>
<ul>
<li>{FAQS_COPY.FAQ_ANSWERS.Q12_P1_2_1}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q12_P1_2_2}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q12_P1_2_3}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q12_P1_2_4}</li>
</ul>
<li>{FAQS_COPY.FAQ_ANSWERS.Q12_P1_3}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q12_P1_4}</li>
</ul>
<p>{FAQS_COPY.FAQ_ANSWERS.Q12_P2}</p>
<p>{FAQS_COPY.FAQ_ANSWERS.Q12_P3}</p>
</>
),
(
<>
<p key={13}>{FAQS_COPY.FAQ_ANSWERS.Q13_P1}</p>
<p>{FAQS_COPY.FAQ_ANSWERS.Q13_P2}</p>
</>
),
(
<>
<p key={14}>{FAQS_COPY.FAQ_ANSWERS.Q14}</p>
</>
),
(
<>
<p key={15}>{FAQS_COPY.FAQ_ANSWERS.Q15_P1}</p>
<ul>
<li>{FAQS_COPY.FAQ_ANSWERS.Q15_P1_1}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q15_P1_2}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q15_P1_3}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q15_P1_4}</li>
</ul>
</>
),
(
<>
<p key={16}>{FAQS_COPY.FAQ_ANSWERS.Q16}</p>
</>
),
(
<>
<p key={17}>{FAQS_COPY.FAQ_ANSWERS.Q17_P1}</p>
<p>{FAQS_COPY.FAQ_ANSWERS.Q17_P2}</p>
</>
),
(
<>
<p key={18}>{FAQS_COPY.FAQ_ANSWERS.Q18}</p>
</>
),
(
<>
<p key={19}>{FAQS_COPY.FAQ_ANSWERS.Q19}</p>
</>
),
(
<>
<p key={20}>{FAQS_COPY.FAQ_ANSWERS.Q20_P1}</p>
<p>{FAQS_COPY.FAQ_ANSWERS.Q20_P2}</p>
</>
),
];
const numberOfQuestions = Object.keys(FAQS_COPY.QUESTIONS).length;
const faqItems: AccordionItemProps[] = [...Array(numberOfQuestions).keys()].map((questionNum) => {
return {
id: `faq-id-${questionNum}`,
title: FAQS_COPY.QUESTIONS[questionNum],
content: ANSWERS[questionNum],
expanded: false,
headingLevel: 'h2',
};
});
return (
<Layout location={location} title={intl.formatMessage(FAQS_COPY.PAGE_INTRO.PAGE_TILE)}>
<J40MainGridContainer>
<h1>{intl.formatMessage(FAQS_COPY.PAGE_INTRO.PAGE_TILE)}</h1>
<Grid row>
{intl.formatMessage(FAQS_COPY.PAGE_INTRO.COMING_SOON)}
<Grid row gap className={'j40-mb5-mt3'}>
{/* First column */}
<Grid col={12} tablet={{col: 7}}>
<section style={accordionContainerStyle}>
{/* Enabling multiselect true fails a11y using axe tool */}
<Accordion items={faqItems}/>
</section>
</Grid>
{/* Second column */}
<Grid col={12} tablet={{col: 2}}>
{/* Spacer column */}
</Grid>
{/* Third column */}
{width > CONSTANTS.USWDS_BREAKPOINTS.DESKTOP ?
<Grid col={12} tablet={{col: 3}}>
<SubPageNav
activeSubPageIndex={2}
endPoints={[
PAGES_ENDPOINTS.ABOUT,
PAGES_ENDPOINTS.PUBLIC_ENG,
PAGES_ENDPOINTS.FAQS,
]}
/>
</Grid> : ''}
</Grid>
</J40MainGridContainer>
</Layout>

View file

@ -306,20 +306,20 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
class="usa-nav__submenu-item"
>
<a
data-cy="nav-link-faqs"
href="/en/frequently-asked-questions"
data-cy="nav-link-public-engagement"
href="/en/public-engagement"
>
Frequently asked questions
Engagement calendar
</a>
</li>
<li
class="usa-nav__submenu-item"
>
<a
data-cy="nav-link-public-engagement"
href="/en/public-engagement"
data-cy="nav-link-faqs"
href="/en/frequently-asked-questions"
>
Engagement calendar
Frequently asked questions
</a>
</li>
</ul>

View file

@ -306,20 +306,20 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
class="usa-nav__submenu-item"
>
<a
data-cy="nav-link-faqs"
href="/en/frequently-asked-questions"
data-cy="nav-link-public-engagement"
href="/en/public-engagement"
>
Frequently asked questions
Engagement calendar
</a>
</li>
<li
class="usa-nav__submenu-item"
>
<a
data-cy="nav-link-public-engagement"
href="/en/public-engagement"
data-cy="nav-link-faqs"
href="/en/frequently-asked-questions"
>
Engagement calendar
Frequently asked questions
</a>
</li>
</ul>

View file

@ -306,20 +306,20 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
class="usa-nav__submenu-item"
>
<a
data-cy="nav-link-faqs"
href="/en/frequently-asked-questions"
data-cy="nav-link-public-engagement"
href="/en/public-engagement"
>
Frequently asked questions
Engagement calendar
</a>
</li>
<li
class="usa-nav__submenu-item"
>
<a
data-cy="nav-link-public-engagement"
href="/en/public-engagement"
data-cy="nav-link-faqs"
href="/en/frequently-asked-questions"
>
Engagement calendar
Frequently asked questions
</a>
</li>
</ul>

View file

@ -306,20 +306,20 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
class="usa-nav__submenu-item"
>
<a
data-cy="nav-link-faqs"
href="/en/frequently-asked-questions"
data-cy="nav-link-public-engagement"
href="/en/public-engagement"
>
Frequently asked questions
Engagement calendar
</a>
</li>
<li
class="usa-nav__submenu-item"
>
<a
data-cy="nav-link-public-engagement"
href="/en/public-engagement"
data-cy="nav-link-faqs"
href="/en/frequently-asked-questions"
>
Engagement calendar
Frequently asked questions
</a>
</li>
</ul>
@ -375,10 +375,735 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
Frequently asked questions
</h1>
<div
class="grid-row"
class="grid-row grid-gap j40-mb5-mt3"
data-testid="grid"
>
Coming Soon!
<div
class="grid-col-12 tablet:grid-col-7"
data-testid="grid"
>
<section
style="margin-top: 1.2rem;"
>
<div
class="usa-accordion"
data-testid="accordion"
>
<h2
class="usa-accordion__heading"
>
<button
aria-controls="faq-id-0"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-0"
type="button"
>
Q: What is the Climate and Economic Justice Screening Tool (CEJST)?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-0"
hidden=""
id="faq-id-0"
>
<p>
The CEJST is a critical component of the Biden-Harris Administrations historic commitment to advancing environmental justice. In
<a
class="usa-link usa-link--external"
data-cy=""
href="https://www.federalregister.gov/documents/2021/02/01/2021-02177/tackling-the-climate-crisis-at-home-and-abroad#:~:text=Sec.%20223.%20Justice40,40-percent%20goal."
rel="noreferrer"
target="_blank"
>
Executive Order 14008
</a>
on Tackling the Climate Crisis at Home and Abroad, President Biden directed the White House Council on Environmental Quality (CEQ) to develop a geospatial mapping tool to identify disadvantaged communities that face burdens. The tool has an interactive map and uses datasets that are indicators of burdens.
</p>
<p>
Federal agencies will use the tool for the Justice40 Initiative. It will help them identify disadvantaged communities that should receive 40% of the overall benefits of programs included in the Justice40 Initiative. The Justice40 Initiative seeks to deliver 40% of the overall benefits in climate, clean energy, and other related areas to disadvantaged communities.
</p>
<p>
Other useful links for Federal agencies:
</p>
<ul>
<li>
Addendum to the Justice40 Interim Guidance
</li>
<li>
Instructions to Federal Agencies on Using the CEJST
</li>
</ul>
<p>
The public can find communities of interest and provide feedback. This feedback will be used to improve the tool.
</p>
</div>
<h2
class="usa-accordion__heading"
>
<button
aria-controls="faq-id-1"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-1"
type="button"
>
Q: How does the tool identify and define communities?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-1"
hidden=""
id="faq-id-1"
>
<p>
<a
class="usa-link usa-link--external"
data-cy=""
href="https://www.federalregister.gov/documents/2021/02/01/2021-02177/tackling-the-climate-crisis-at-home-and-abroad#:~:text=Sec.%20223.%20Justice40,40-percent%20goal."
rel="noreferrer"
target="_blank"
>
Executive Order 14008
</a>
recognizes that some communities are disadvantaged because they face burdens. The CEJST uses datasets that are indicators of burden. These burdens are related to climate change and the environment. They are also related to health and lack of economic opportunity.
</p>
<p>
The tool highlights disadvantaged communities across all 50 states, the District of Columbia, and the U.S. territories. A community is considered disadvantaged:
</p>
<ul>
<li>
If they are in a census tract that meets the thresholds for at least one of the tools categories of burden, or
</li>
<li>
If they are on Federally Recognized Tribal land
</li>
</ul>
<p>
Not all disadvantaged communities can be shown on the map. Some communities, such as migrant workers, do not live in just one place. The Interim Implementation Guidance on the Justice40 Initiative also directs Federal agencies to consider geographically dispersed communities when implementing programs included in the Justice40 Initiative.
</p>
</div>
<h2
class="usa-accordion__heading"
>
<button
aria-controls="faq-id-2"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-2"
type="button"
>
Q: Is race included in the tools methodology?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-2"
hidden=""
id="faq-id-2"
>
<p>
No. The Climate and Economic Justice Screening Tool (CEJST) does not use racial demographics in its methodology. The current version of the tool offers data about race and age only as information when a specific census tract is selected. It is well-documented that communities of color suffer disproportionately from environmental and health burdens. Due to decades of underinvestment, they also face greater risks from climate change.
</p>
<p>
Although the CEJST does not use race in the methodology, it seeks to create a map that reflects the on-the-ground burdens and realities that disadvantaged communities face. The tool shows communities that have environmental burdens and face injustice.
</p>
</div>
<h2
class="usa-accordion__heading"
>
<button
aria-controls="faq-id-3"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-3"
type="button"
>
Q: Does the Climate and Economic Justice Screening Tool (CEJST) include the U.S. territories?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-3"
hidden=""
id="faq-id-3"
>
<p>
Yes, the version 1.0 of the CEJST has some data for all the territories but not all the CEJST data are available or used for all U.S. territories.
</p>
<p>
<strong>
Puerto Rico:
</strong>
The data used for Puerto Rico are from all relevant and available fields in the energy, housing, legacy pollution, transportation, and workforce development categories. The following data are used: projected flood risk, energy cost, lack of plumbing, lead paint, housing cost, proximity to hazardous waste facilities, proximity to Superfund or National Priorities List (NPL) sites, proximity to Risk Management Plan (RMP) facilities, diesel particulate matter exposure, traffic proximity and volume, leaking underground storage tanks, wastewater discharge, poverty, unemployment, and high school education. Linguistic isolation was removed for Puerto Rico based on feedback received during the beta period.
</p>
<p>
<strong>
American Samoa, Guam, the Northern Mariana Islands, and the U.S. Virgin Islands:
</strong>
The data used for Puerto Rico are from all relevant and available fields in the energy, housing, legacy pollution, transportation, and workforce development categories. The following data are used: projected flood risk, energy cost, lack of plumbing, lead paint, housing cost, proximity to hazardous waste facilities, proximity to Superfund or National Priorities List (NPL) sites, proximity to Risk Management Plan (RMP) facilities, diesel particulate matter exposure, traffic proximity and volume, leaking underground storage tanks, wastewater discharge, poverty, unemployment, and high school education. Linguistic isolation was removed for Puerto Rico based on feedback received during the beta period.
</p>
</div>
<h2
class="usa-accordion__heading"
>
<button
aria-controls="faq-id-4"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-4"
type="button"
>
Q: Does the tool include Tribal Nations?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-4"
hidden=""
id="faq-id-4"
>
<p>
To respect Tribal sovereignty and self-government and to fulfill Federal trust and treaty responsibilities to Tribal Nations, Federally Recognized Tribal lands are highlighted as disadvantaged on the map. Alaska Native Villages are included as point locations that are smaller than census tracts. The tools census tracts and Tribal lands have different boundaries.
</p>
<p>
Federally Recognized Tribes are those that are recognized by the U.S. Bureau of Indian Affairs in the
<a
class="usa-link usa-link--external"
data-cy=""
href="https://www.federalregister.gov/documents/2022/01/28/2022-01789/indian-entities-recognized-by-and-eligible-to-receive-services-from-the-united-states-bureau-of"
rel="noreferrer"
target="_blank"
>
annual notice
</a>
it publishes in the Federal Register:
</p>
<ul>
<li>
The decision to highlight Federally-recognized Tribal lands on the CEJST map and to designate them as disadvantaged communities was made after meaningful and robust consultation with Tribal Nations. This approach is consistent with CEQs Action Plan for Consultation and Coordination with Tribal Nations, President Bidens Memorandum on Tribal Consultation and Strengthening Nation-to-Nation Consultation, and Executive Order 13175 on Consultation and Coordination With Indian Tribal Governments.
</li>
</ul>
</div>
<h2
class="usa-accordion__heading"
>
<button
aria-controls="faq-id-5"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-5"
type="button"
>
Q: Why do some areas of the map have different shades?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-5"
hidden=""
id="faq-id-5"
>
<p>
Some census tracts that contain lands of Federally-recognized Tribes that are also considered disadvantaged because they meet the burden thresholds for at least one of the categories on the tool. When this happens, the areas appear darker on the tools map.
</p>
<div
style="display: flex;"
>
<img
alt="
a blue circle icon informing the user of what a disadvantaged community is depicted as
"
src="test-file-stub"
/>
<div
style="padding-left: 2px;"
>
: Disadvantaged census tracts
</div>
</div>
<div
style="display: flex;"
>
<img
alt="
a blue circle icon informing the user of what a disadvantaged community is depicted as
"
src="test-file-stub"
/>
<div
style="padding-left: 2px;"
>
: Disadvantaged census tracts and Federally-Recognized Tribal lands
</div>
</div>
<p>
Any area that is highlighted is considered disadvantaged, regardless of whether it is a light shade or dark shade. The tool will show if a whole census tract is considered disadvantaged or just the parts that are Federally Recognized Tribal lands.
</p>
</div>
<h2
class="usa-accordion__heading"
>
<button
aria-controls="faq-id-6"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-6"
type="button"
>
Q: Why does the tool have “partially disadvantaged” census tracts?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-6"
hidden=""
id="faq-id-6"
>
<p>
A census tract that does not meet any of the burden thresholds in the tool is usually not considered to be a disadvantaged community. However, if such a census tract contains Federally Recognized Tribal lands, then the parts of the tract that are Tribal lands are considered disadvantaged. The tool will display this type of census tract as “partially disadvantaged.”
</p>
</div>
<h2
class="usa-accordion__heading"
>
<button
aria-controls="faq-id-7"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-7"
type="button"
>
Q: How does this tool relate to the Justice40 Initiative?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-7"
hidden=""
id="faq-id-7"
>
<p>
The Biden administration is advancing environmental justice across the whole-of-government. The Justice40 Initiative is a critical part of this effort. The Justice40 Initiative seeks to deliver 40% of the overall benefits of climate, clean energy, and related investments to disadvantaged communities.
</p>
<p>
The CEJST will play an important role in the Justice40 Initiative. It will help to provide a single, consistent definition of disadvantaged communities for programs included in the Justice40 Initiative.
</p>
</div>
<h2
class="usa-accordion__heading"
>
<button
aria-controls="faq-id-8"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-8"
type="button"
>
Q: How will Federal agencies use the Climate and Economic Justice Screening Tool (CEJST) for the Justice40 Initiative?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-8"
hidden=""
id="faq-id-8"
>
<p>
Federal agencies will use the tool to help identify disadvantaged communities that will benefit from programs included in the Justice40 Initiative. The Justice40 Initiative seeks to deliver 40% of the overall benefits of certain investments to disadvantaged communities.
</p>
<p>
The CEJST will play an important role in the Justice40 Initiative. It will help to provide a single definition of disadvantaged communities for programs included in the Justice40 Initiative. This definition applies to the whole government. Federal agencies will use this definition to direct Justice40 investment benefits in the following areas:
</p>
<ul>
<li>
Climate
</li>
<li>
Clean energy and energy efficiency
</li>
<li>
Clean transit
</li>
<li>
Affordable and sustainable housing
</li>
<li>
Training and workforce development
</li>
<li>
Remediation and reduction of legacy pollution
</li>
<li>
Development of clean water and wastewater infrastructure
</li>
</ul>
</div>
<h2
class="usa-accordion__heading"
>
<button
aria-controls="faq-id-9"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-9"
type="button"
>
Q: How will this tool be used to inform decisions relating to new investments made through the Bipartisan Infrastructure Law and the Inflation Reduction Act?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-9"
hidden=""
id="faq-id-9"
>
<p>
Recent historic legislation—such as the Bipartisan Infrastructure Law and the Inflation Reduction Act—have created new programs or directed funds to existing programs. These investments are included in the Justice40 Initiative if they meet the eligibility criteria. Agencies will use the CEJST to help identify disadvantaged communities that will receive 40% of the overall benefits of those Justice40 programs.
</p>
</div>
<h2
class="usa-accordion__heading"
>
<button
aria-controls="faq-id-10"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-10"
type="button"
>
Q: Will agencies use the Climate and Economic Justice Screening Tool (CEJST) if they have already created their own tools or criteria to identify disadvantaged communities?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-10"
hidden=""
id="faq-id-10"
>
<p>
The Council on Environmental Quality (CEQ), the Office of Management and Budget (OMB), and the Climate Policy Office (CPO) released the Justice40 Interim Implementation Guidance on July 20, 2021. It directed agencies to develop interim definitions of disadvantaged communities. Agencies used their interim definitions during the tools beta phase. Agencies will now transition to using version 1.0 of the tool to geographically identify disadvantaged communities.
</p>
</div>
<h2
class="usa-accordion__heading"
>
<button
aria-controls="faq-id-11"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-11"
type="button"
>
Q: How is the Climate and Economic Justice Screening Tool (CEJST) different from the Environmental Protection Agencys (EPA) EJScreen?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-11"
hidden=""
id="faq-id-11"
>
<p>
The CEJST uses lessons learned from the EPA's EJScreen. EJScreen is an environmental justice mapping and screening tool. EJScreen shows environmental and demographic information. The EPA, Federal agencies, and state and local governments will continue to use EJScreen to understand and analyze environmental problems. For example, EPA uses
<a
class="usa-link usa-link--external"
data-cy=""
href="https://www.epa.gov/ejscreen/how-does-epa-use-ejscreen"
rel="noreferrer"
target="_blank"
>
EJScreen
</a>
to:
</p>
<ul>
<li>
Inform outreach and engagement practices
</li>
<li>
Implement aspects of the following programs:
</li>
<ul>
<li>
Permitting programs
</li>
<li>
Enforcement programs
</li>
<li>
Compliance programs
</li>
<li>
Voluntary programs
</li>
</ul>
<li>
Develop retrospective reports of EPA work
</li>
<li>
Enhance geographically based initiatives
</li>
</ul>
<p>
However, EPA does not use EJScreen to identify or label an area as an "EJ community" or as the sole basis for agency-decision-making.
</p>
<p>
In contrast, the CEJST will help Federal agencies to identify disadvantaged communities that will benefit from programs included in the Justice40 Initiative.
</p>
</div>
<h2
class="usa-accordion__heading"
>
<button
aria-controls="faq-id-12"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-12"
type="button"
>
Q: How is this tool different from state screening tools?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-12"
hidden=""
id="faq-id-12"
>
<p>
Several states that have environmental justice screening tools. CalEnviroScreen is an environmental justice screening tool for California. Other states, like New York and Michigan have screening tools as well. The Climate and Economic Justice Screening Tool (CEJST) incorporates lessons learned from these efforts.
</p>
<p>
There is an important difference between state-based tools and the CEJST. State tools use data that may not be available for other states. The CEJST only uses data that are nationally-consistent and publicly-available.
</p>
</div>
<h2
class="usa-accordion__heading"
>
<button
aria-controls="faq-id-13"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-13"
type="button"
>
Q: How were the White House Environmental Justice Advisory Council (WHEJAC) recommendations used for this tool?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-13"
hidden=""
id="faq-id-13"
>
<p>
The WHEJAC provided recommendations on the Climate and Economic Justice Screening Tool (CEJST). The CEJST follows many of these recommendations.
</p>
</div>
<h2
class="usa-accordion__heading"
>
<button
aria-controls="faq-id-14"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-14"
type="button"
>
Q: Can the public provide feedback on this tool?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-14"
hidden=""
id="faq-id-14"
>
<p>
Yes. The CEJST website has multiple ways to offer feedback on the tool.
</p>
<ul>
<li>
The public can find census tracts that they are familiar with and send feedback about those tracts. That feedback is used to “ground truth” the tool. This helps the tool to better reflect the realities for communities.
</li>
<li>
The public can also submit data sources or ideas for consideration.
</li>
<li>
The public may also take a short survey to help improve the experience of using the tool.
</li>
<li>
The public can also email
<a
class="usa-link usa-link--external"
data-cy=""
href="mailto:Screeningtool-Support@omb.eop.gov"
rel="noreferrer"
target="_blank"
>
Screeningtool-Support@omb.eop.gov
</a>
</li>
</ul>
</div>
<h2
class="usa-accordion__heading"
>
<button
aria-controls="faq-id-15"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-15"
type="button"
>
Q: Will CEQ issue another Request for Information about the tool?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-15"
hidden=""
id="faq-id-15"
>
<p>
Yes. CEQ plans to issue a Request for Information (RFI) about version 1.0 of the CEJST in 2023. The feedback received in that RFI will inform version 2.0 of the tool.
</p>
</div>
<h2
class="usa-accordion__heading"
>
<button
aria-controls="faq-id-16"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-16"
type="button"
>
Q: When did the official version of the tool come out?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-16"
hidden=""
id="faq-id-16"
>
<p>
The tool is now considered official because Federal agencies can now use version 1.0 of the Climate and Economic Justice Screening Tool (CEJST) to help identify disadvantaged communities. The 1.0 version was released in MM, YYYY. The tool is no longer in beta.
</p>
<p>
The tool will be improved over time. The Council on Environmental Quality (CEQ) will update the tool each year based on public feedback, research, and the availability of new data.
</p>
</div>
<h2
class="usa-accordion__heading"
>
<button
aria-controls="faq-id-17"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-17"
type="button"
>
Q. How does the Council on Environmental Quality (CEQ) keep people informed about the tool?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-17"
hidden=""
id="faq-id-17"
>
<p>
Sign-up to receive updates on the Climate and Economic Justice Screening Tool (CEJST) and other environmental justice news from CEQ.
</p>
</div>
<h2
class="usa-accordion__heading"
>
<button
aria-controls="faq-id-18"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-18"
type="button"
>
Q: What files and documentation are available from the tool?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-18"
hidden=""
id="faq-id-18"
>
<p>
The Climate and Economic Justice Screening Tool (CEJST) has
<a
class="usa-link"
href="/en/downloads"
>
downloads
</a>
available. Spreadsheets (.xlxs) and (.csv) contain the tools definitions and data. This data can be used for analysis. Shapefiles and geojson files can be uploaded into other mapping programs such as Esri. The downloads include information on how to use the files.
</p>
</div>
<h2
class="usa-accordion__heading"
>
<button
aria-controls="faq-id-19"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-19"
type="button"
>
Q: How does the tools shapefile work?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-19"
hidden=""
id="faq-id-19"
>
<p>
The tools shapefile can be uploaded into other mapping programs such as Esri.
</p>
<p>
The
<a
class="usa-link usa-link--external"
data-cy=""
href="https://en.wikipedia.org/wiki/Shapefile"
rel="noreferrer"
target="_blank"
>
shapefile
</a>
format is
<a
class="usa-link usa-link--external"
data-cy=""
href="https://en.wikipedia.org/wiki/GIS_file_formats"
rel="noreferrer"
target="_blank"
>
a geospatial vector data format
</a>
for geographic information system (GIS) software. It can be loaded into any software that works with Esri, ArcGIS or any other compatible GIS software. You may choose to download the data in this format so that you can load the data from the Climate and Economic Justice Screening Tool (CEJST) into other tools and use those tools to combine the CEJST data with other datasets and sources.
</p>
</div>
</div>
</section>
</div>
<div
class="grid-col-12 tablet:grid-col-2"
data-testid="grid"
/>
</div>
</div>
</main>

View file

@ -306,20 +306,20 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
class="usa-nav__submenu-item"
>
<a
data-cy="nav-link-faqs"
href="/en/frequently-asked-questions"
data-cy="nav-link-public-engagement"
href="/en/public-engagement"
>
Frequently asked questions
Engagement calendar
</a>
</li>
<li
class="usa-nav__submenu-item"
>
<a
data-cy="nav-link-public-engagement"
href="/en/public-engagement"
data-cy="nav-link-faqs"
href="/en/frequently-asked-questions"
>
Engagement calendar
Frequently asked questions
</a>
</li>
</ul>
@ -1060,9 +1060,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="low-income"
>
<h3>
Low income
</h3>
<div
class=""
>
<h3>
Low income
</h3>
</div>
<div>
Percent of a census tract's population in households where household income is at or below
@ -1108,9 +1112,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="exp-agr-loss-rate"
>
<h3>
Expected agriculture loss rate
</h3>
<div
class=""
>
<h3>
Expected agriculture loss rate
</h3>
</div>
<div>
Expected agricultural value at risk from losses due to fourteen types of natural hazards. These hazards have some link to climate change. They are: avalanche, coastal flooding, cold wave, drought, hail, heat wave, hurricane, ice storm, landslide, riverine flooding, strong wind, tornado, wildfire, and winter weather. The rate is calculated by dividing the agricultural value at risk by the total agricultural value.
@ -1155,9 +1163,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="exp-bld-loss-rate"
>
<h3>
Expected building loss rate
</h3>
<div
class=""
>
<h3>
Expected building loss rate
</h3>
</div>
<div>
Expected building value at risk from losses due to fourteen types of natural hazards. These hazards have some link to climate change. They are: avalanche, coastal flooding, cold wave, drought, hail, heat wave, hurricane, ice storm, landslide, riverine flooding, strong wind, tornado, wildfire, and winter weather. The rate is calculated by dividing the building value at risk by the total building value.
@ -1202,9 +1214,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="exp-pop-loss-rate"
>
<h3>
Expected population loss rate
</h3>
<div
class=""
>
<h3>
Expected population loss rate
</h3>
</div>
<div>
Expected fatalities and injuries due to fourteen types of natural hazards each year. These hazards have some link to climate change. They are: avalanche, coastal flooding, cold wave, drought, hail, heat wave, hurricane, ice storm, landslide, riverine flooding, strong wind, tornado, wildfire, and winter weather. Population loss is defined by the Spatial Hazard Events and Losses and National Centers for Environmental Informations (NCEI). It reports the number of fatalities and injuries caused by the hazard. An injury is counted as one-tenth (1/10) of a fatality. The NCEI Storm Events Database classifies both direct and indirect injuries. Both types are counted as population loss. The total number is divided by the population in the census tract to get the rate of population loss.
@ -1250,9 +1266,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="flood-risk"
>
<h3>
NEW Projected flood risk
</h3>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<h3>
Projected flood risk
</h3>
</div>
<div>
A high precision, climate-adjusted model that projects future flood risk for properties in the future. The dataset calculates how many properties are at risk of floods occurring in the next thirty years from tides, rain, riverine and storm surges, or a 26% risk total over the 30-year time horizon. The risk is defined as an annualized 1% chance. The tool calculates tract-level risk as the share of properties meeting the risk threshold. The risk does not include property value.
@ -1297,9 +1323,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="wildfire-risk"
>
<h3>
NEW Projected wildfire risk
</h3>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<h3>
Projected wildfire risk
</h3>
</div>
<div>
A 30-meter resolution model projecting the wildfire exposure for any specific location in the contiguous US, today and with future climate change. The risk of wildfire is calculated from inputs associated with fire fuels, weather, human influence, and fire movement. The risk does not include property value.
@ -1344,9 +1380,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="energy-burden"
>
<h3>
Energy cost
</h3>
<div
class=""
>
<h3>
Energy cost
</h3>
</div>
<div>
Average household annual energy cost in dollars divided by the average household income.
@ -1391,9 +1431,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="pm-25"
>
<h3>
PM2.5 in the air
</h3>
<div
class=""
>
<h3>
PM2.5 in the air
</h3>
</div>
<div>
Fine inhalable particles with 2.5 or smaller micrometer diameters. The percentile is the weight of the particles per cubic meter.
@ -1439,9 +1483,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="asthma"
>
<h3>
Asthma
</h3>
<div
class=""
>
<h3>
Asthma
</h3>
</div>
<div>
Share of people who answer “yes” to both of these questions: “Have you ever been told by a health professional that you have asthma?” and “Do you still have asthma?”.
@ -1486,9 +1534,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="diabetes"
>
<h3>
Diabetes
</h3>
<div
class=""
>
<h3>
Diabetes
</h3>
</div>
<div>
Share of people ages 18 years and older who have been told by a health professional that they have diabetes other than diabetes during pregnancy.
@ -1533,9 +1585,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="heart-disease"
>
<h3>
Heart disease
</h3>
<div
class=""
>
<h3>
Heart disease
</h3>
</div>
<div>
Share of people ages 18 years and older who have been told by a health professional that they had angina or coronary heart disease.
@ -1580,9 +1636,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="life-exp"
>
<h3>
Low life expectancy
</h3>
<div
class=""
>
<h3>
Low life expectancy
</h3>
</div>
<div>
Average number of years people have left in their lives.
@ -1638,9 +1698,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="hist-underinv"
>
<h3>
New Historic underinvestment
</h3>
<div
class=""
>
<h3>
New Historic underinvestment
</h3>
</div>
<div>
Census tracts that experienced historic underinvestment as determined by the National Community Reinvestment Coalitions (NCRC) historic redlining score. It is determined using the
@ -1714,9 +1778,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="house-burden"
>
<h3>
Housing cost
</h3>
<div
class=""
>
<h3>
Housing cost
</h3>
</div>
<div>
Share of households that are both earning less than 80% of Housing and Urban Developments Area Median Family Income and are spending more than 30% of their income on housing costs.
@ -1761,9 +1829,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="green-space"
>
<h3>
NEW Lack of green space
</h3>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<h3>
Lack of green space
</h3>
</div>
<div>
Share of land with developed surfaces covered with artificial materials like concrete or pavement and crop land used for agricultural purposes.
@ -1808,9 +1886,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="indoor-plumb"
>
<h3>
NEW Lack of indoor plumbing
</h3>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<h3>
Lack of indoor plumbing
</h3>
</div>
<div>
Housing without complete kitchen facilities or complete plumbing facilities.
@ -1855,9 +1943,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="lead-paint"
>
<h3>
Lead paint
</h3>
<div
class=""
>
<h3>
Lead paint
</h3>
</div>
<div>
Share of homes built before 1960, which indicates potential lead paint exposure. Tracts with extremely high home values (i.e. median home values above the 90th percentile) are not likely to have lead paint exposure and are not included.
@ -1902,9 +1994,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="mine-land"
>
<h3>
NEW Abandoned mine lands
</h3>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<h3>
Abandoned mine lands
</h3>
</div>
<div>
Presence of an abandoned mine left by legacy coal mining operations.
@ -1949,9 +2051,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="fuds"
>
<h3>
NEW Formerly Used Defense Sites
</h3>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<h3>
Formerly Used Defense Sites
</h3>
</div>
<div>
Properties that were owned, leased, or possessed by the United States, under the jurisdiction of the Secretary of Defense prior to October 1986.
@ -1996,9 +2108,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="prox-haz"
>
<h3>
Proximity to hazardous waste sites
</h3>
<div
class=""
>
<h3>
Proximity to hazardous waste sites
</h3>
</div>
<div>
Number of hazardous waste facilities (Treatment, Storage, and Disposal Facilities and Large Quantity Generators) within 5 kilometers (or nearest beyond 5 kilometers), each divided by distance in kilometers.
@ -2047,9 +2163,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="prox-npl"
>
<h3>
Proximity to Superfund sites
</h3>
<div
class=""
>
<h3>
Proximity to Superfund sites
</h3>
</div>
<div>
Number of proposed or listed Superfund or National Priorities list (NPL) sites within 5 kilometers (or nearest one beyond 5 kilometers), each divided by distance in kilometers.
@ -2094,9 +2214,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="prox-rmp"
>
<h3>
Proximity to Risk Management Plan (RMP) facilities
</h3>
<div
class=""
>
<h3>
Proximity to Risk Management Plan (RMP) facilities
</h3>
</div>
<div>
Count of RMP, or potential chemical accident management plan, facilities within 5 kilometers (or nearest one beyond 5 kilometers), each divided by distance in kilometers.
@ -2141,9 +2265,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="diesel-pm"
>
<h3>
Diesel particulate matter exposure
</h3>
<div
class=""
>
<h3>
Diesel particulate matter exposure
</h3>
</div>
<div>
Mixture of particles in diesel exhaust in the air, measured as micrograms per cubic meter.
@ -2188,9 +2316,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="trans-barrier"
>
<h3>
NEW Transportation barriers
</h3>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<h3>
Transportation barriers
</h3>
</div>
<div>
Average relative cost and time spent on transportation relative to all other tracts.
@ -2235,9 +2373,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="traffic-vol"
>
<h3>
Traffic proximity and volume
</h3>
<div
class=""
>
<h3>
Traffic proximity and volume
</h3>
</div>
<div>
Number of vehicles (average annual daily traffic) at major roads within 500 meters, divided by distance in meters.
@ -2282,9 +2424,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="leaky-uwt"
>
<h3>
NEW Leaking underground storage tanks
</h3>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<h3>
Leaking underground storage tanks
</h3>
</div>
<div>
Weighted formula of number of leaking underground storage tanks and the number of underground storage tanks within 1,500 feet.
@ -2331,9 +2483,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="waste-water"
>
<h3>
Wastewater discharge
</h3>
<div
class=""
>
<h3>
Wastewater discharge
</h3>
</div>
<div>
Risk-Screening Environmental Indicators (RSEI) modeled toxic concentrations at
@ -2379,9 +2535,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="ling-iso"
>
<h3>
Linguistic isolation
</h3>
<div
class=""
>
<h3>
Linguistic isolation
</h3>
</div>
<div>
Share of households where no one over the age 14 speaks English well.
@ -2421,25 +2581,29 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</span>
All U.S. states and the District of Columbia
</li>
<div>
<p>
<strong>
Note:
</strong>
Linguistic isolation was removed from Puerto Rico based on feedback during the beta period.
</p>
</div>
</ul>
<div>
<p>
<strong>
Note:
</strong>
Linguistic isolation was removed from Puerto Rico based on feedback during the beta period.
</p>
</div>
</div>
<div
id="low-med-inc"
>
<h3>
Low median income
</h3>
<div
class=""
>
<h3>
Low median income
</h3>
</div>
<div>
Low median income calculated as a share of the areas median income.
@ -2517,9 +2681,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="poverty"
>
<h3>
Poverty
</h3>
<div
class=""
>
<h3>
Poverty
</h3>
</div>
<div>
Share of people living at or below 100% of the Federal poverty level.
@ -2564,9 +2732,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="unemploy"
>
<h3>
Unemployment
</h3>
<div
class=""
>
<h3>
Unemployment
</h3>
</div>
<div>
Number of unemployed people as a share of the labor force.
@ -2633,9 +2805,13 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="high-school"
>
<h3>
High school education
</h3>
<div
class=""
>
<h3>
High school education
</h3>
</div>
<div>
Share of people aged 25 years or older who didnt graduate from high school.
@ -2702,9 +2878,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="tribal-lands"
>
<h3>
NEW Tribal lands
</h3>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<h3>
Tribal lands
</h3>
</div>
<div>
The Land Area Representation (LAR) dataset depicts the exterior extent of a Federal Indian land area.

View file

@ -306,20 +306,20 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
class="usa-nav__submenu-item"
>
<a
data-cy="nav-link-faqs"
href="/en/frequently-asked-questions"
data-cy="nav-link-public-engagement"
href="/en/public-engagement"
>
Frequently asked questions
Engagement calendar
</a>
</li>
<li
class="usa-nav__submenu-item"
>
<a
data-cy="nav-link-public-engagement"
href="/en/public-engagement"
data-cy="nav-link-faqs"
href="/en/frequently-asked-questions"
>
Engagement calendar
Frequently asked questions
</a>
</li>
</ul>

View file

@ -306,20 +306,20 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
class="usa-nav__submenu-item"
>
<a
data-cy="nav-link-faqs"
href="/en/frequently-asked-questions"
data-cy="nav-link-public-engagement"
href="/en/public-engagement"
>
Frequently asked questions
Engagement calendar
</a>
</li>
<li
class="usa-nav__submenu-item"
>
<a
data-cy="nav-link-public-engagement"
href="/en/public-engagement"
data-cy="nav-link-faqs"
href="/en/frequently-asked-questions"
>
Engagement calendar
Frequently asked questions
</a>
</li>
</ul>