Merge pull request #38 from agilesix/cfelix/merge-v2-20241216

CEQ-J40 merge v2 code - 20241216
This commit is contained in:
Neil MartinsenBurrell 2024-12-16 14:23:52 -06:00 committed by GitHub
commit ed3f15feec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
55 changed files with 1217 additions and 1913 deletions

View file

@ -1,5 +1,4 @@
# .github/workflows/ping-test.yml name: Ping Check
name: Site ping test
on: on:
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions # https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
schedule: schedule:
@ -13,21 +12,24 @@ on:
required: true required: true
default: 'warning' default: 'warning'
tags: tags:
description: 'Ping test' description: 'Ping Check'
jobs: jobs:
sitePingCheck: check_site_uptime:
name: Slack Notification
runs-on: ubuntu-latest runs-on: ubuntu-latest
environment: Staging
name: Ping the site
steps: steps:
- uses: actions/checkout@v2 - name: Check the site
# https://github.com/marketplace/actions/ping-my-site id: ping
- uses: Leocardoso94/is-my-site-up@v1.2 uses: Jtalk/url-health-check-action@v4
with: with:
site: "https://d2zjid6n5ja2pt.cloudfront.net/justice40-tool/main/en/" url: ${{ secrets.SITE_URL }}
# https://www.ravsam.in/blog/send-slack-notification-when-github-actions-fails/ - name: Failure Notification
- uses: ravsamhq/notify-slack-action@v1 uses: ravsamhq/notify-slack-action@2.5.0
if: ${{ failure() }} if: ${{ failure() }}
with: with:
status: ${{ job.status }} status: ${{ job.status }}
notification_title: '{workflow} has {status_message}'
message_format: '{emoji} *{workflow}* {status_message} in <{repo_url}|{repo}>, ${{ secrets.SITE_URL }} may be down. '
env: env:
SLACK_WEBHOOK_URL: ${{ secrets.J40_TOOL_MONITORING_SLACK_ALERTS }} SLACK_WEBHOOK_URL: ${{ secrets.J40_TOOL_MONITORING_SLACK_ALERTS }}

View file

@ -1,6 +1,6 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
// External Libs: // External Libs:
import {Accordion, Button} from "@trussworks/react-uswds"; import {Accordion, Button, Icon} from "@trussworks/react-uswds";
import {MessageDescriptor, useIntl} from "gatsby-plugin-intl"; import {MessageDescriptor, useIntl} from "gatsby-plugin-intl";
import React from "react"; import React from "react";
@ -21,7 +21,6 @@ import * as styles from "./areaDetail.module.scss";
// @ts-ignore // @ts-ignore
import IslandCopy from "../IslandCopy/IslandCopy"; import IslandCopy from "../IslandCopy/IslandCopy";
import launchIcon from "/node_modules/uswds/dist/img/usa-icons/launch.svg";
interface IAreaDetailProps { interface IAreaDetailProps {
properties: constants.J40Properties; properties: constants.J40Properties;
@ -1231,19 +1230,14 @@ const AreaDetail = ({properties}: IAreaDetailProps) => {
<div className={styles.buttonText}> <div className={styles.buttonText}>
{EXPLORE_COPY.COMMUNITY.SEND_FEEDBACK.TITLE} {EXPLORE_COPY.COMMUNITY.SEND_FEEDBACK.TITLE}
</div> </div>
<img
className={styles.buttonImage} <Icon.Launch aria-label={intl.formatMessage(EXPLORE_COPY.COMMUNITY.SEND_FEEDBACK.IMG_ICON.ALT_TAG)} />
src={launchIcon}
alt={intl.formatMessage(
EXPLORE_COPY.COMMUNITY.SEND_FEEDBACK.IMG_ICON.ALT_TAG,
)}
/>
</div> </div>
</Button> </Button>
</a> </a>
{/* All category accordions in this component */} {/* All category accordions in this component */}
{<Accordion multiselectable={true} items={categoryItems} />} {<Accordion multiselectable={true} items={categoryItems} className="-AreaDetail" />}
{/* Methodology version */} {/* Methodology version */}
<div className={styles.versionInfo}> <div className={styles.versionInfo}>

View file

@ -79,13 +79,6 @@ $sidePanelLabelFontColor: #171716;
.buttonText{ .buttonText{
@include u-margin-right(1); @include u-margin-right(1);
} }
.buttonImage{
width: 21px;
margin-top: -3px;
filter: invert(13%) sepia(76%) saturate(5142%) hue-rotate(192deg) brightness(80%) contrast(106%);
}
} }
} }
} }

View file

@ -1,25 +0,0 @@
@use '../../styles/design-system.scss' as *;
.betaBannerContainer {
@include u-bg("gray-cool-2");
.betaBanner {
@include u-height(3);
max-width: 70.25rem; // Needs this exact value to align with GovBanner
@include u-font("body", "3xs");
@include u-margin-left(auto);
@include u-margin-right(auto);
@include u-padding-top(1);
padding-bottom: 1.75rem;
@include at-media-max("desktop") {
@include u-margin-left(2);
@include u-margin-right(0);
}
@include at-media-max("tablet-lg") {
@include u-height(6);
}
}
}

View file

@ -1,15 +0,0 @@
declare namespace BetaBannerNamespace {
export interface IBetaBannerScss {
betaBannerContainer: string;
betaBanner:string;
betaPillIcon:string;
betaHeading: string;
}
}
declare const BetaBannerScssModule: BetaBannerNamespace.IBetaBannerScss & {
/** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */
locals: BetaBannerNamespace.IBetaBannerScss;
};
export = BetaBannerScssModule;

View file

@ -1,16 +0,0 @@
import * as React from 'react';
import {render} from '@testing-library/react';
import {LocalizedComponent} from '../../test/testHelpers';
import BetaBanner from './BetaBanner';
describe('rendering of the BetaBanner', () => {
const {asFragment} = render(
<LocalizedComponent>
<BetaBanner />
</LocalizedComponent>,
);
it('checks if component renders', () => {
expect(asFragment()).toMatchSnapshot();
});
});

View file

@ -1,16 +0,0 @@
import React from 'react';
import * as COMMON_COPY from '../../data/copy/common';
import * as styles from './BetaBanner.module.scss';
const BetaBanner = () => {
return (
<div className={styles.betaBannerContainer}>
<div className={styles.betaBanner}>
{COMMON_COPY.BETA_BANNER_CONTENT}
</div>
</div>
);
};
export default BetaBanner;

View file

@ -1,14 +0,0 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`rendering of the BetaBanner checks if component renders 1`] = `
<DocumentFragment>
<div>
<div>
<strong>
This tool has been updated.
</strong>
The 1.0 version of the tool was released on Nov 22, 2022.
</div>
</div>
</DocumentFragment>
`;

View file

@ -1,3 +0,0 @@
import BetaBanner from './BetaBanner';
export default BetaBanner;

View file

@ -1,10 +1,10 @@
/* eslint-disable valid-jsdoc */ /* eslint-disable valid-jsdoc */
import React from 'react';
import {Tag} from '@trussworks/react-uswds'; import {Tag} from '@trussworks/react-uswds';
import {useIntl} from 'gatsby-plugin-intl'; import {useIntl} from 'gatsby-plugin-intl';
import React from 'react';
import * as styles from './datasetCard.module.scss';
import * as METHODOLOGY_COPY from '../../data/copy/methodology'; import * as METHODOLOGY_COPY from '../../data/copy/methodology';
import * as styles from './datasetCard.module.scss';
interface IDatasetCardProps { interface IDatasetCardProps {
datasetCardProps: METHODOLOGY_COPY.IIndicators datasetCardProps: METHODOLOGY_COPY.IIndicators
@ -71,6 +71,10 @@ const DatasetCard = ({datasetCardProps}: IDatasetCardProps) => {
{intl.formatMessage(METHODOLOGY_COPY.DATASET_CARD_LABELS.SOURCE)} {intl.formatMessage(METHODOLOGY_COPY.DATASET_CARD_LABELS.SOURCE)}
</span> </span>
{dataSource.source} {dataSource.source}
{dataSource.isNew && (<>
&ensp;
<Tag className={styles.newTag}>{intl.formatMessage(METHODOLOGY_COPY.DATASET_CARD_LABELS.NEW)}</Tag>
</>)}
</li> </li>
{/* Dataset Available for */} {/* Dataset Available for */}

View file

@ -5,15 +5,9 @@ exports[`rendering of indicator dataset card checks if component renders 1`] = `
<div <div
id="census-tract-info" id="census-tract-info"
> >
<div> <div
<div> class=""
<span
class="usa-tag"
data-testid="tag"
> >
NEW
</span>
</div>
<h3> <h3>
Census tract information and demographics Census tract information and demographics
</h3> </h3>
@ -30,7 +24,7 @@ exports[`rendering of indicator dataset card checks if component renders 1`] = `
<strong> <strong>
Note: Note:
</strong> </strong>
The demographics are included as information only and are not considered as a part of the tool's methodology. The demographics are included as information only and are not considered as a part of the tools methodology.
</p> </p>
</div> </div>

View file

@ -33,7 +33,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
<p> <p>
The tool's datasets are public and consistent nationwide. They come from different sources and are high quality. The Council on Environmental Quality (CEQ) chose them based on relevance, availability, and quality. They identify climate, environmental, and other burdens on communities. The tools datasets are public and consistent nationwide. They come from different sources and are high quality. The Council on Environmental Quality (CEQ) chose them based on relevance, availability, and quality. They identify climate, environmental, and other burdens on communities.
</p> </p>
<p> <p>
@ -81,15 +81,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div <div
id="census-tract-info" id="census-tract-info"
> >
<div> <div
<div> class=""
<span
class="usa-tag"
data-testid="tag"
> >
NEW
</span>
</div>
<h3> <h3>
Census tract information and demographics Census tract information and demographics
</h3> </h3>
@ -106,7 +100,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<strong> <strong>
Note: Note:
</strong> </strong>
The demographics are included as information only and are not considered as a part of the tool's methodology. The demographics are included as information only and are not considered as a part of the tools methodology.
</p> </p>
</div> </div>
@ -158,7 +152,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div> </div>
<div> <div>
Percent of a census tract's population in households where household income is at or below Percent of a census tracts population in households where household income is at or below
200% of the Federal poverty level, not including students enrolled in higher education. 200% of the Federal poverty level, not including students enrolled in higher education.
</div> </div>
@ -366,15 +360,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div <div
id="flood-risk" id="flood-risk"
> >
<div> <div
<div> class=""
<span
class="usa-tag"
data-testid="tag"
> >
NEW
</span>
</div>
<h3> <h3>
Projected flood risk Projected flood risk
</h3> </h3>
@ -423,15 +411,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div <div
id="wildfire-risk" id="wildfire-risk"
> >
<div> <div
<div> class=""
<span
class="usa-tag"
data-testid="tag"
> >
NEW
</span>
</div>
<h3> <h3>
Projected wildfire risk Projected wildfire risk
</h3> </h3>
@ -798,22 +780,16 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div <div
id="hist-underinv" id="hist-underinv"
> >
<div> <div
<div> class=""
<span
class="usa-tag"
data-testid="tag"
> >
NEW
</span>
</div>
<h3> <h3>
Historic underinvestment Historic underinvestment
</h3> </h3>
</div> </div>
<div> <div>
Census tracts that experienced historic underinvestment based on redlining maps created by the federal governments Home Owners Loan Corporation (HOLC) between 1935 and 1940. The tool uses the National Community Reinvestment Coalitions Census tracts that experienced historic underinvestment based on redlining maps created by the Federal governments Home Owners Loan Corporation (HOLC) between 1935 and 1940. The tool uses the National Community Reinvestment Coalitions
<a <a
class="usa-link usa-link--external" class="usa-link usa-link--external"
data-cy="" data-cy=""
@ -867,7 +843,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
Dataset of formerly redlined areas Dataset of formerly redlined areas
</a> </a>
using digitized maps from the Home Owners Loan Corporation (HOLC), using 2010 census boundaries using digitized maps from the Home Owners Loan Corporation (HOLC), using 2010 census boundaries
</li> </li>
<li> <li>
<span> <span>
@ -931,15 +907,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div <div
id="green-space" id="green-space"
> >
<div> <div
<div> class=""
<span
class="usa-tag"
data-testid="tag"
> >
NEW
</span>
</div>
<h3> <h3>
Lack of green space Lack of green space
</h3> </h3>
@ -1021,15 +991,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div <div
id="indoor-plumb" id="indoor-plumb"
> >
<div> <div
<div> class=""
<span
class="usa-tag"
data-testid="tag"
> >
NEW
</span>
</div>
<h3> <h3>
Lack of indoor plumbing Lack of indoor plumbing
</h3> </h3>
@ -1129,15 +1093,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div <div
id="mine-land" id="mine-land"
> >
<div> <div
<div> class=""
<span
class="usa-tag"
data-testid="tag"
> >
NEW
</span>
</div>
<h3> <h3>
Abandoned mine land Abandoned mine land
</h3> </h3>
@ -1186,15 +1144,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div <div
id="fuds" id="fuds"
> >
<div> <div
<div> class=""
<span
class="usa-tag"
data-testid="tag"
> >
NEW
</span>
</div>
<h3> <h3>
Formerly Used Defense Sites Formerly Used Defense Sites
</h3> </h3>
@ -1283,8 +1235,8 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
Treatment, Storage, and Disposal Facilities (TSDF) data Treatment, Storage, and Disposal Facilities (TSDF) data
</a> </a>
from 2020 calculated from EPA's RCRA database as compiled from 2020 calculated from EPAs RCRA database as compiled
by EPA's EJScreen by EPAs EJScreen
</li> </li>
<li> <li>
@ -1438,7 +1390,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
National Air Toxics Assessment (NATA) National Air Toxics Assessment (NATA)
</a> </a>
from 2014 as compiled by EPA's EJScreen from 2014 as compiled by EPAs EJScreen
</li> </li>
<li> <li>
<span> <span>
@ -1451,15 +1403,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div <div
id="trans-barrier" id="trans-barrier"
> >
<div> <div
<div> class=""
<span
class="usa-tag"
data-testid="tag"
> >
NEW
</span>
</div>
<h3> <h3>
Transportation barriers Transportation barriers
</h3> </h3>
@ -1557,7 +1503,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
Traffic data Traffic data
</a> </a>
from 2017 as compiled by EPA's EJScreen from 2017 as compiled by EPAs EJScreen
</li> </li>
<li> <li>
<span> <span>
@ -1570,15 +1516,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div <div
id="leaky-uwt" id="leaky-uwt"
> >
<div> <div
<div> class=""
<span
class="usa-tag"
data-testid="tag"
> >
NEW
</span>
</div>
<h3> <h3>
Underground storage tanks and releases Underground storage tanks and releases
</h3> </h3>
@ -1615,7 +1555,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
UST Finder UST Finder
</a> </a>
from 2021 as compiled by EPA's EJScreen from 2021 as compiled by EPAs EJScreen
</li> </li>
<li> <li>
@ -1752,7 +1692,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div> </div>
<div> <div>
Low median income calculated as a share of the areas median income. Low median income is calculated as the median income of the tract divided by the income in the Metropolitan Statistical Area, unless the tract is a rural tract. For rural tracts, it is calculated as a percent of the states median income.
</div> </div>
<div> <div>
@ -1807,13 +1747,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<a <a
class="usa-link usa-link--external" class="usa-link usa-link--external"
data-cy="" data-cy=""
href="https://www.census.gov/data/developers/data-sets/acs-5year/2010.html" href="https://www.census.gov/data/developers/data-sets/decennial-census.2020.html"
rel="noreferrer" rel="noreferrer"
target="_blank" target="_blank"
> >
American Community Survey Decennial Census
</a> </a>
from 2010 from 2020
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</li> </li>
<li> <li>
<span> <span>
@ -1880,13 +1826,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<a <a
class="usa-link usa-link--external" class="usa-link usa-link--external"
data-cy="" data-cy=""
href="https://www.census.gov/data/developers/data-sets/acs-5year/2010.html" href="https://www.census.gov/data/developers/data-sets/decennial-census.2020.html"
rel="noreferrer" rel="noreferrer"
target="_blank" target="_blank"
> >
American Community Survey Decennial Census
</a> </a>
from 2010 from 2020
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</li> </li>
<li> <li>
<span> <span>
@ -1953,13 +1905,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<a <a
class="usa-link usa-link--external" class="usa-link usa-link--external"
data-cy="" data-cy=""
href="https://www.census.gov/data/developers/data-sets/acs-5year/2010.html" href="https://www.census.gov/data/developers/data-sets/decennial-census.2020.html"
rel="noreferrer" rel="noreferrer"
target="_blank" target="_blank"
> >
American Community Survey Decennial Census
</a> </a>
from 2010 from 2020
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</li> </li>
<li> <li>
<span> <span>
@ -2026,13 +1984,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<a <a
class="usa-link usa-link--external" class="usa-link usa-link--external"
data-cy="" data-cy=""
href="https://www.census.gov/data/developers/data-sets/acs-5year/2010.html" href="https://www.census.gov/data/developers/data-sets/decennial-census.2020.html"
rel="noreferrer" rel="noreferrer"
target="_blank" target="_blank"
> >
American Community Survey Decennial Census
</a> </a>
from 2010 from 2020
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</li> </li>
<li> <li>
<span> <span>
@ -2046,15 +2010,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div <div
id="tribal-lands" id="tribal-lands"
> >
<div> <div
<div> class=""
<span
class="usa-tag"
data-testid="tag"
> >
NEW
</span>
</div>
<h3> <h3>
Tribes Tribes
</h3> </h3>

View file

@ -1,8 +1,7 @@
import React from 'react';
import {GovBanner} from '@trussworks/react-uswds'; import {GovBanner} from '@trussworks/react-uswds';
import {useIntl} from 'gatsby-plugin-intl'; import {useIntl} from 'gatsby-plugin-intl';
import React from 'react';
import Language from '../Language';
import * as styles from './GovernmentBanner.module.scss'; import * as styles from './GovernmentBanner.module.scss';
@ -14,7 +13,6 @@ const GovernmentBanner = () => {
<div className={styles.bannerContainer}> <div className={styles.bannerContainer}>
<GovBanner language={intl.locale === 'es' ? 'spanish' : 'english'}/> <GovBanner language={intl.locale === 'es' ? 'spanish' : 'english'}/>
<Language isDesktop={true}/>
</div> </div>
</div> </div>

View file

@ -135,24 +135,6 @@ exports[`rendering of the GovernmentBanner checks if component renders 1`] = `
</div> </div>
</div> </div>
</section> </section>
<div>
<img
alt="language icon for selecting language"
src="test-file-stub"
/>
<a
class="usa-link"
href="#"
>
English
</a>
<a
class="usa-link"
href="#"
>
Español
</a>
</div>
</div> </div>
</div> </div>
</DocumentFragment> </DocumentFragment>

View file

@ -1,10 +1,10 @@
import React from 'react';
import { import {
Address, Address,
Logo, Logo,
NavList,
} from '@trussworks/react-uswds'; } from '@trussworks/react-uswds';
import {NavList} from '@trussworks/react-uswds';
import {useIntl} from 'gatsby-plugin-intl'; import {useIntl} from 'gatsby-plugin-intl';
import React from 'react';
import {hyphenizeString} from '../../../cypress/integration/common/helpers'; import {hyphenizeString} from '../../../cypress/integration/common/helpers';
import J40MainGridContainer from '../J40MainGridContainer'; import J40MainGridContainer from '../J40MainGridContainer';
@ -12,9 +12,9 @@ import LinkTypeWrapper from '../LinkTypeWrapper';
import SurveyButton from '../SurveyButton'; import SurveyButton from '../SurveyButton';
// @ts-ignore // @ts-ignore
import whitehouseIcon from '../../images/eop-seal.svg';
import * as COMMON_COPY from '../../data/copy/common';
import {GITHUB_LINK, GITHUB_LINK_ES} from '../../constants'; import {GITHUB_LINK, GITHUB_LINK_ES} from '../../constants';
import * as COMMON_COPY from '../../data/copy/common';
import whitehouseIcon from '../../images/eop-seal.svg';
const J40Footer = () => { const J40Footer = () => {
const intl = useIntl(); const intl = useIntl();
@ -46,14 +46,6 @@ const J40Footer = () => {
intl.formatMessage(COMMON_COPY.FOOTER.MORE_INFO), intl.formatMessage(COMMON_COPY.FOOTER.MORE_INFO),
<LinkTypeWrapper <LinkTypeWrapper
className={'footer-link-first-child'} className={'footer-link-first-child'}
linkText={intl.formatMessage(COMMON_COPY.FOOTER.WHITEHOUSE)}
internal={false}
url={intl.formatMessage(COMMON_COPY.FOOTER.WHITEHOUSE_LINK)}
openUrlNewTab={true}
key={'whitehouselink2'}
dataCy={hyphenizeString(COMMON_COPY.FOOTER.WHITEHOUSE.defaultMessage)}
/>,
<LinkTypeWrapper
linkText={intl.formatMessage(COMMON_COPY.FOOTER.FOIA)} linkText={intl.formatMessage(COMMON_COPY.FOOTER.FOIA)}
internal={false} internal={false}
url={'https://www.whitehouse.gov/ceq/foia'} url={'https://www.whitehouse.gov/ceq/foia'}

View file

@ -93,19 +93,6 @@ exports[`J40Footer renders correctly 1`] = `
> >
<a <a
class="usa-link usa-link--external footer-link-first-child" class="usa-link usa-link--external footer-link-first-child"
data-cy="whitehouse-gov"
href="https://www.whitehouse.gov/"
rel="noreferrer"
target="_blank"
>
Whitehouse.gov
</a>
</li>
<li
class="usa-footer__secondary-link"
>
<a
class="usa-link usa-link--external"
data-cy="freedom-of-information-act-(foia)" data-cy="freedom-of-information-act-(foia)"
href="https://www.whitehouse.gov/ceq/foia" href="https://www.whitehouse.gov/ceq/foia"
rel="noreferrer" rel="noreferrer"

View file

@ -1,25 +1,25 @@
import React, {useEffect, useState} from 'react';
import {Link, useIntl} from 'gatsby-plugin-intl';
import { import {
Grid,
// Alert, // Alert,
Header, Header,
Menu,
NavDropDownButton,
NavMenuButton, NavMenuButton,
PrimaryNav, PrimaryNav,
Grid,
NavDropDownButton,
Menu,
} from '@trussworks/react-uswds'; } from '@trussworks/react-uswds';
import BetaBanner from '../BetaBanner'; import {Link, useIntl} from 'gatsby-plugin-intl';
import J40MainGridContainer from '../J40MainGridContainer'; import React, {useEffect, useState} from 'react';
import GovernmentBanner from '../GovernmentBanner';
import Language from '../Language';
import {useWindowSize} from 'react-use'; import {useWindowSize} from 'react-use';
import GovernmentBanner from '../GovernmentBanner';
import J40MainGridContainer from '../J40MainGridContainer';
import Language from '../Language';
// @ts-ignore // @ts-ignore
import siteLogo from '../../images/j40-logo-v2.png';
import * as styles from './J40Header.module.scss';
import * as COMMON_COPY from '../../data/copy/common';
import {PAGES_ENDPOINTS, USWDS_BREAKPOINTS} from '../../data/constants'; import {PAGES_ENDPOINTS, USWDS_BREAKPOINTS} from '../../data/constants';
import * as COMMON_COPY from '../../data/copy/common';
import siteLogo from '../../images/j40-logo-v2.png';
import UpdateBanner from '../UpdateBanner';
import * as styles from './J40Header.module.scss';
interface IJ40Header { interface IJ40Header {
@ -247,7 +247,7 @@ const J40Header = ({location}:IJ40Header) => {
{/* Banners */} {/* Banners */}
<GovernmentBanner /> <GovernmentBanner />
<BetaBanner/> <UpdateBanner/>
{/* Logo and Navigation */} {/* Logo and Navigation */}
<J40MainGridContainer> <J40MainGridContainer>

View file

@ -140,34 +140,29 @@ exports[`rendering of the J40Header checks if component renders 1`] = `
</div> </div>
</div> </div>
</section> </section>
</div>
</div>
<div> <div>
<img <div
alt="language icon for selecting language" class="usa-alert usa-alert--info"
src="test-file-stub" data-testid="alert"
/>
<a
class="usa-link"
href="#"
> >
English <div
</a> class="usa-alert__body"
<a
class="usa-link"
href="#"
> >
Español <h1
</a> class="usa-alert__heading"
>
Version 2.0 of the tool is now available
</h1>
<p
class="usa-alert__text"
>
The Council on Environmental Quality (CEQ) made the 2.0 version of the tool available on Dec 19, 2024.
</p>
</div> </div>
</div> </div>
</div> </div>
<div>
<div>
<strong>
This tool has been updated.
</strong>
The 1.0 version of the tool was released on Nov 22, 2022.
</div>
</div>
<div <div
class="grid-container-desktop-lg" class="grid-container-desktop-lg"
data-testid="gridContainer" data-testid="gridContainer"

View file

@ -91,6 +91,7 @@ const J40Map = ({location}: IJ40Interface) => {
const [transitionInProgress, setTransitionInProgress] = useState<boolean>(false); const [transitionInProgress, setTransitionInProgress] = useState<boolean>(false);
const [geolocationInProgress, setGeolocationInProgress] = useState<boolean>(false); const [geolocationInProgress, setGeolocationInProgress] = useState<boolean>(false);
const [isMobileMapState, setIsMobileMapState] = useState<boolean>(false); const [isMobileMapState, setIsMobileMapState] = useState<boolean>(false);
const [selectTractId, setSelectTractId] = useState<string | undefined>(undefined);
const {width: windowWidth} = useWindowSize(); const {width: windowWidth} = useWindowSize();
/** /**
@ -123,11 +124,7 @@ const J40Map = ({location}: IJ40Interface) => {
const [minLng, minLat, maxLng, maxLat] = bbox(feature); const [minLng, minLat, maxLng, maxLat] = bbox(feature);
// Set the selectedFeature ID // Set the selectedFeature ID
if (feature.id !== selectedFeatureId) {
setSelectedFeature(feature); setSelectedFeature(feature);
} else {
setSelectedFeature(undefined);
}
// Go to the newly selected feature (as long as it's not an Alaska Point) // Go to the newly selected feature (as long as it's not an Alaska Point)
goToPlace([ goToPlace([
@ -250,7 +247,7 @@ const J40Map = ({location}: IJ40Interface) => {
* @param {LngLatBoundsLike} bounds * @param {LngLatBoundsLike} bounds
* @param {boolean} isTerritory * @param {boolean} isTerritory
*/ */
const goToPlace = (bounds: LngLatBoundsLike, isTerritory = false) => { const goToPlace = (bounds: LngLatBoundsLike, isTerritory = false, selectTractId: string | undefined = undefined) => {
const newViewPort = new WebMercatorViewport({height: viewport.height!, width: viewport.width!}); const newViewPort = new WebMercatorViewport({height: viewport.height!, width: viewport.width!});
const {longitude, latitude, zoom} = newViewPort.fitBounds( const {longitude, latitude, zoom} = newViewPort.fitBounds(
bounds as [[number, number], [number, number]], { bounds as [[number, number], [number, number]], {
@ -281,6 +278,9 @@ const J40Map = ({location}: IJ40Interface) => {
transitionInterpolator: new FlyToInterpolator(), transitionInterpolator: new FlyToInterpolator(),
transitionEasing: d3.easeCubic, transitionEasing: d3.easeCubic,
}); });
// Set the tract ID to be selected if any.
setSelectTractId(selectTractId);
}; };
const onTransitionStart = () => { const onTransitionStart = () => {
@ -289,6 +289,25 @@ const J40Map = ({location}: IJ40Interface) => {
const onTransitionEnd = () => { const onTransitionEnd = () => {
setTransitionInProgress(false); setTransitionInProgress(false);
/*
If there is a tract ID to be selected then do so once the map has finished moving.
Note that setting the viewpoint to move the map as done in this component does not
trigger a moveend or idle event like when using flyTo or easeTo.
*/
if (selectTractId) {
// Search for features in the map that have the tract ID.
const geoidSearchResults = mapRef.current?.getMap()
.querySourceFeatures(constants.HIGH_ZOOM_SOURCE_NAME, {
sourceLayer: constants.SCORE_SOURCE_LAYER,
validate: true,
filter: ['==', constants.GEOID_PROPERTY, selectTractId],
});
if (geoidSearchResults && geoidSearchResults.length > 0) {
selectFeatureOnMap(geoidSearchResults[0]);
}
setSelectTractId(undefined);
}
}; };
const onGeolocate = () => { const onGeolocate = () => {
@ -393,8 +412,7 @@ const J40Map = ({location}: IJ40Interface) => {
{/* This is the first overlayed row on the map: Search and Geolocation */} {/* This is the first overlayed row on the map: Search and Geolocation */}
<div className={styles.mapHeaderRow}> <div className={styles.mapHeaderRow}>
<MapSearch goToPlace={goToPlace} mapRef={mapRef} selectFeatureOnMap={selectFeatureOnMap} <MapSearch goToPlace={goToPlace}/>
selectedFeatureId={selectedFeatureId}/>
{/* Geolocate Icon */} {/* Geolocate Icon */}
<div className={styles.geolocateBox}> <div className={styles.geolocateBox}>

View file

@ -4,8 +4,6 @@ import {LngLatBoundsLike} from 'maplibre-gl';
import {useIntl} from 'gatsby-plugin-intl'; import {useIntl} from 'gatsby-plugin-intl';
import {Search} from '@trussworks/react-uswds'; import {Search} from '@trussworks/react-uswds';
import {useWindowSize} from 'react-use'; import {useWindowSize} from 'react-use';
import {RefObject} from 'react';
import {MapRef} from 'react-map-gl';
import * as JsSearch from 'js-search'; import * as JsSearch from 'js-search';
import * as constants from '../../data/constants'; import * as constants from '../../data/constants';
@ -15,10 +13,7 @@ import * as styles from './MapSearch.module.scss';
import * as EXPLORE_COPY from '../../data/copy/explore'; import * as EXPLORE_COPY from '../../data/copy/explore';
interface IMapSearch { interface IMapSearch {
goToPlace(bounds: LngLatBoundsLike):void; goToPlace(bounds: LngLatBoundsLike, isTerritory: boolean, selectTractId: string | undefined):void;
mapRef:RefObject<MapRef>;
selectFeatureOnMap: (feature: any) => void;
selectedFeatureId: string;
} }
interface ISearchTractRecord { interface ISearchTractRecord {
@ -27,7 +22,7 @@ interface ISearchTractRecord {
INTPTLON10: string; INTPTLON10: string;
} }
const MapSearch = ({goToPlace, mapRef, selectFeatureOnMap, selectedFeatureId}:IMapSearch) => { const MapSearch = ({goToPlace}:IMapSearch) => {
// State to hold if the search results are empty or not: // State to hold if the search results are empty or not:
const [isSearchResultsNull, setIsSearchResultsNull] = useState(false); const [isSearchResultsNull, setIsSearchResultsNull] = useState(false);
const intl = useIntl(); const intl = useIntl();
@ -85,33 +80,15 @@ const MapSearch = ({goToPlace, mapRef, selectFeatureOnMap, selectedFeatureId}:IM
const searchForTract = async (tract: string) => { const searchForTract = async (tract: string) => {
// We create a bounding box just to get the tract in the view box. // We create a bounding box just to get the tract in the view box.
// The size is not important. // The size is not important.
const BOUNDING_BOX_SIZE_DD = 0.1; const BOUNDING_BOX_SIZE_DD = 0.2;
/**
* Wait for the map to be done loading and moving.
* @param {function()} callback the callback to run after the map is ready
*/
const waitforMap = (callback: () => void): void => {
const isMapReady = !!mapRef.current &&
mapRef.current.getMap().isStyleLoaded() &&
mapRef.current.getMap().isSourceLoaded(constants.HIGH_ZOOM_SOURCE_NAME);
if (isMapReady) {
callback();
} else {
setTimeout(() => waitforMap(callback), 200);
}
};
// Convert 10 digit tracts to 11. // Convert 10 digit tracts to 11.
const searchTerm = tract.length == 10 ? '0' + tract : tract; const normalizedTractId = tract.length == 10 ? '0' + tract : tract;
// If the search is for the same tract then do nothing.
if (selectedFeatureId == searchTerm) return;
setIsSearchResultsNull(true); setIsSearchResultsNull(true);
if (tractSearch) { if (tractSearch) {
const result = tractSearch.search(searchTerm); const result = tractSearch.search(normalizedTractId);
if (result.length > 0) { if (result.length > 0) {
const searchTractRecord = result[0] as ISearchTractRecord; const searchTractRecord = result[0] as ISearchTractRecord;
const lat = Number(searchTractRecord.INTPTLAT10); const lat = Number(searchTractRecord.INTPTLAT10);
@ -126,21 +103,7 @@ const MapSearch = ({goToPlace, mapRef, selectFeatureOnMap, selectedFeatureId}:IM
setIsSearchResultsNull(false); setIsSearchResultsNull(false);
// Now move the map and select the tract. // Now move the map and select the tract.
goToPlace([[Number(longMin), Number(latMin)], [Number(longMax), Number(latMax)]]); goToPlace([[Number(longMin), Number(latMin)], [Number(longMax), Number(latMax)]], false, normalizedTractId);
waitforMap(() => {
// Set up a one-shot event handler to fire when the flyTo arrives at its destination. Once the
// tract is in view of the map. mpRef.current will always be valid here...
mapRef.current?.getMap().once('idle', () => {
const geoidSearchResults = mapRef.current?.getMap().querySourceFeatures(constants.HIGH_ZOOM_SOURCE_NAME, {
sourceLayer: constants.SCORE_SOURCE_LAYER,
validate: true,
filter: ['==', constants.GEOID_PROPERTY, searchTerm],
});
if (geoidSearchResults && geoidSearchResults.length > 0) {
selectFeatureOnMap(geoidSearchResults[0]);
}
});
});
} }
} }
}; };
@ -173,7 +136,7 @@ const MapSearch = ({goToPlace, mapRef, selectFeatureOnMap, selectedFeatureId}:IM
if (searchResults && searchResults.length > 0) { if (searchResults && searchResults.length > 0) {
setIsSearchResultsNull(false); setIsSearchResultsNull(false);
const [latMin, latMax, longMin, longMax] = searchResults[0].boundingbox; const [latMin, latMax, longMin, longMax] = searchResults[0].boundingbox;
goToPlace([[Number(longMin), Number(latMin)], [Number(longMax), Number(latMax)]]); goToPlace([[Number(longMin), Number(latMin)], [Number(longMax), Number(latMax)]], false, undefined);
} else { } else {
setIsSearchResultsNull(true); setIsSearchResultsNull(true);
} }

View file

@ -47,8 +47,10 @@ const PrioritizationCopy =
}:IPrioritizationCopy) => { }:IPrioritizationCopy) => {
let prioCopyRendered; let prioCopyRendered;
if (isGrandfathered) {
prioCopyRendered = EXPLORE_COPY.PRIORITIZATION_COPY.PRIO_GRANDFATHERED_LI;
// if 1 // if 1
if (totalCategoriesPrioritized === 0) { } else if (totalCategoriesPrioritized === 0) {
// if 1-1 // if 1-1
if (isAdjacencyThreshMet && isAdjacencyLowIncome) { if (isAdjacencyThreshMet && isAdjacencyLowIncome) {
prioCopyRendered = EXPLORE_COPY.PRIORITIZATION_COPY.PRIO_SURR_LI; prioCopyRendered = EXPLORE_COPY.PRIORITIZATION_COPY.PRIO_SURR_LI;
@ -59,10 +61,8 @@ const PrioritizationCopy =
} else if (isAdjacencyThreshMet && !isAdjacencyLowIncome) { } else if (isAdjacencyThreshMet && !isAdjacencyLowIncome) {
// if 1-2-1 // if 1-2-1
if ( tribalCountAK === null && tribalCountUS === null) { if ( tribalCountAK === null && tribalCountUS === null) {
if (isGrandfathered) {
prioCopyRendered = EXPLORE_COPY.PRIORITIZATION_COPY.PRIO_GRANDFATHERED_LI;
// if 1-2-1-1 // if 1-2-1-1
} else if (percentTractTribal === null) { if (percentTractTribal === null) {
prioCopyRendered = EXPLORE_COPY.PRIORITIZATION_COPY.NOT_PRIO_SURR_LI; prioCopyRendered = EXPLORE_COPY.PRIORITIZATION_COPY.NOT_PRIO_SURR_LI;
// if 1-2-1-2 // if 1-2-1-2
} else if (percentTractTribal === 0) { } else if (percentTractTribal === 0) {

View file

@ -26,7 +26,7 @@ exports[`rendering of ReleaseUpdate Component checks if component renders 1`] =
> >
<div> <div>
<div> <div>
Version 2.0 Release update - Nov 22, 2022 Version 2.0 Release update - Dec 19, 2024
</div> </div>
<div> <div>
New & improved New & improved

View file

@ -0,0 +1,29 @@
@use '../../styles/design-system.scss' as *;
.updateBannerContainer {
@include u-bg("gray-cool-2");
@include u-padding-bottom(1);
@include u-padding-top(1);
}
.updateBanner {
max-width: 70.25rem; // Needs this exact value to align with GovBanner
@include u-font("body", "3xs");
@include u-line-height('ui', 2);
@include u-margin-left(auto);
@include u-margin-right(auto);
@include at-media-max("desktop-lg") {
@include u-margin-left(4);
@include u-margin-right(4);
}
@include at-media-max("desktop") {
@include u-margin-left(2);
@include u-margin-right(2);
}
}
.updateBannerAlert {
@include u-margin-top(2);
}

View file

@ -0,0 +1,16 @@
declare namespace UpdateBannerNamespace {
export interface IUpdateBannerScss {
updateBannerAlert: string;
updateBannerContainer: string;
updateBanner: string;
updatePillIcon: string;
updateHeading: string;
}
}
declare const UpdateBannerScssModule: UpdateBannerNamespace.IUpdateBannerScss & {
/** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */
locals: UpdateBannerNamespace.IUpdateBannerScss;
};
export = UpdateBannerScssModule;

View file

@ -0,0 +1,31 @@
import {render} from '@testing-library/react';
import * as React from 'react';
import {LocalizedComponent} from '../../test/testHelpers';
import UpdateBanner, {cutoffDate} from './UpdateBanner';
describe('rendering of the UpdateBanner', () => {
const renderBanner = (mockCurrentDate: Date) => {
// make this testable at different dates so we can check large/small versions
jest.useFakeTimers()
.setSystemTime(mockCurrentDate);
const result = render(
<LocalizedComponent>
<UpdateBanner />
</LocalizedComponent>,
).asFragment();
jest.useRealTimers();
return result;
};
it('renders large version before cutoff date', () => {
const beforeCutoff = new Date(cutoffDate);
beforeCutoff.setDate(beforeCutoff.getDate() - 7);
expect(renderBanner(beforeCutoff)).toMatchSnapshot();
});
it('renders small version at cutoff date', () => {
expect(renderBanner(cutoffDate)).toMatchSnapshot();
});
});

View file

@ -0,0 +1,35 @@
import React from 'react';
import {Alert} from '@trussworks/react-uswds';
import * as COMMON_COPY from '../../data/copy/common';
import * as styles from './UpdateBanner.module.scss';
export const cutoffDate = new Date(2025, 0, 19); // 2025-01-19
const UpdateBanner = () => {
const currentDate = new Date();
// show large version before cutoff date
const showLarge = currentDate < cutoffDate;
if (showLarge) {
return (
<div className={styles.updateBanner}>
<Alert type={'info'} headingLevel={'h1'} heading={COMMON_COPY.UPDATE_BANNER_HEADING_LARGE}
className={styles.updateBannerAlert}>
{COMMON_COPY.UPDATE_BANNER_CONTENT_LARGE}
</Alert>
</div>
);
} else {
return (
<div className={styles.updateBannerContainer}>
<div className={styles.updateBanner}>
{COMMON_COPY.UPDATE_BANNER_CONTENT_SMALL}
</div>
</div>
);
}
};
export default UpdateBanner;

View file

@ -0,0 +1,40 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`rendering of the UpdateBanner renders large version before cutoff date 1`] = `
<DocumentFragment>
<div>
<div
class="usa-alert usa-alert--info"
data-testid="alert"
>
<div
class="usa-alert__body"
>
<h1
class="usa-alert__heading"
>
Version 2.0 of the tool is now available
</h1>
<p
class="usa-alert__text"
>
The Council on Environmental Quality (CEQ) made the 2.0 version of the tool available on Dec 19, 2024.
</p>
</div>
</div>
</div>
</DocumentFragment>
`;
exports[`rendering of the UpdateBanner renders small version at cutoff date 1`] = `
<DocumentFragment>
<div>
<div>
<strong>
This tool has been updated.
</strong>
The 2.0 version of the tool was released on Dec 19, 2024.
</div>
</div>
</DocumentFragment>
`;

View file

@ -0,0 +1,3 @@
import UpdateBanner from './UpdateBanner';
export default UpdateBanner;

View file

@ -1,16 +1,17 @@
/* eslint-disable max-len */ /* eslint-disable max-len */
import {FormattedMessage} from 'gatsby-plugin-intl';
import React from 'react'; import React from 'react';
import {defineMessages} from 'react-intl'; import {defineMessages} from 'react-intl';
import {FormattedMessage} from 'gatsby-plugin-intl';
import {CONTACT_SURVEY_LINKS, DATA_SURVEY_LINKS, PAGES_ENDPOINTS, SITE_SATISFACTION_SURVEY_LINKS} from '../constants';
import {italicFn, linkFn} from './common'; import {italicFn, linkFn} from './common';
import {VERSION_NUMBER} from './methodology'; import {VERSION_NUMBER} from './methodology';
import {PAGES_ENDPOINTS, DATA_SURVEY_LINKS, SITE_SATISFACTION_SURVEY_LINKS, CONTACT_SURVEY_LINKS} 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 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 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 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 EJSCREEN = 'https://www.epa.gov/ejscreen/how-does-epa-use-ejscreen';
export const WHEJAC_RECOMMENDATIONS = 'https://www.epa.gov/environmentaljustice/white-house-environmental-justice-advisory-council';
export const CEJST_INSTRUCT = process.env.GATSBY_CDN_TILES_BASE_URL +`/data-versions/2.0/data/score/downloadable/CEQ-CEJST-Instructions.pdf`; export const CEJST_INSTRUCT = process.env.GATSBY_CDN_TILES_BASE_URL +`/data-versions/2.0/data/score/downloadable/CEQ-CEJST-Instructions.pdf`;
export const CEJST_INSTRUCT_ES = process.env.GATSBY_CDN_TILES_BASE_URL +`/data-versions/2.0/data/score/downloadable/CEQ-CEJST-Instructions-es.pdf`; export const CEJST_INSTRUCT_ES = process.env.GATSBY_CDN_TILES_BASE_URL +`/data-versions/2.0/data/score/downloadable/CEQ-CEJST-Instructions-es.pdf`;
@ -35,10 +36,7 @@ export const CONTENT = {
PARA1: PARA1:
<FormattedMessage <FormattedMessage
id={'about.page.paragraph.1'} id={'about.page.paragraph.1'}
defaultMessage={` defaultMessage={`In January of 2021, President Biden issued <link1>Executive Order 14008</link1>. The order directed the Council on Environmental Quality (CEQ) to develop a new tool. This tool is called the Climate and Economic Justice Screening Tool. The tool has an interactive map and uses datasets that are indicators of burdens in eight categories: climate change, energy, health, housing, legacy pollution, transportation, water and wastewater, and workforce development. The tool uses this information to identify communities that are experiencing these burdens. These are the communities that are disadvantaged because they are marginalized by underinvestment and overburdened by pollution.`}
In January of 2021, President Biden issued <link1>Executive Order 14008</link1>. The order directed the Council on Environmental Quality (CEQ) to develop a new tool. This tool is called the Climate and Economic Justice Screening Tool. The tool has an interactive map and uses datasets that are indicators of burdens in eight categories: climate change, energy, health, housing, legacy pollution, transportation, water and wastewater, and workforce development. The tool uses this information to identify communities that are experiencing these burdens. These are the communities that are disadvantaged because they are overburdened and underserved.
`}
description={'Navigate to the About page. This is the paragraph 1'} description={'Navigate to the About page. This is the paragraph 1'}
values={{ values={{
link1: linkFn(EXEC_ORDER_LINK, false, true), link1: linkFn(EXEC_ORDER_LINK, false, true),
@ -48,9 +46,7 @@ export const CONTENT = {
PARA2: PARA2:
<FormattedMessage <FormattedMessage
id={'about.page.paragraph.2'} id={'about.page.paragraph.2'}
defaultMessage={` defaultMessage={`Federal agencies will use the tool to help identify disadvantaged communities that will benefit from programs included in the <link1>Justice40 Initiative</link1>. The Justice40 Initiative seeks to deliver 40% of the overall benefits of investments in climate, clean energy, and related areas to disadvantaged communities.`}
Federal agencies will use the tool to help identify disadvantaged communities that will benefit from programs included in the <link1>Justice40 Initiative</link1>. The Justice40 Initiative seeks to deliver 40% of the overall benefits of investments in climate, clean energy, and related areas to disadvantaged communities.
`}
description={'Navigate to the About page. This is the paragraph 2'} description={'Navigate to the About page. This is the paragraph 2'}
values={{ values={{
link1: linkFn(EXEC_ORDER_LINK, false, true), link1: linkFn(EXEC_ORDER_LINK, false, true),
@ -92,12 +88,13 @@ export const CONTENT = {
<FormattedMessage <FormattedMessage
id={'about.page.paragraph.4'} id={'about.page.paragraph.4'}
defaultMessage={` defaultMessage={`
CEQ will update the tool each year based on public feedback, research, and the availability of new data. The current version of the tool is version {version}. <link1>Sign-up</link1> for updates from CEQ. CEQ will continue to update the tool, after reviewing public feedback,
research, and the availability of new data. The current version of the
tool is version {version}.
`} `}
description={'Navigate to the About page. This is the paragraph 4'} description={'Navigate to the About page. This is the paragraph 4'}
values={{ values={{
version: VERSION_NUMBER, version: VERSION_NUMBER,
link1: linkFn('https://lp.constantcontactpages.com/su/Vm8pCFj/spring', false, true),
}} }}
/>, />,
PARA5: PARA5:
@ -112,7 +109,7 @@ export const CONTENT = {
<FormattedMessage <FormattedMessage
id={'about.page.use.data.paragraph'} id={'about.page.use.data.paragraph'}
defaultMessage={` defaultMessage={`
The tool's data is available for <link1>download</link1>. This data can be used to filter by state or county. The tools data is available for <link1>download</link1>. This data can be used to filter by state or county.
`} `}
description={'Navigate to the About page. This is the paragraph 4'} description={'Navigate to the About page. This is the paragraph 4'}
values={{ values={{
@ -123,8 +120,7 @@ export const CONTENT = {
<FormattedMessage <FormattedMessage
id={'about.page.how.to.use.tool.para1'} id={'about.page.how.to.use.tool.para1'}
defaultMessage={` defaultMessage={`
The tool shows information about the burdens that communities experience. It uses datasets to identify indicators of burdens. The tool shows these burdens in census tracts. Census tracts are small units of geography. Census tract boundaries for <link1>statistical areas</link1> are determined by the U.S. Census Bureau once every ten years. The tool utilizes the census tract boundaries from 2010. This was chosen because many of the data sources in the tool currently use the 2010 census boundaries. The tool also shows land within the boundaries of Federally Recognized Tribes and point locations for Alaska Native Villages. The tool shows information about the burdens that communities experience. It uses datasets to identify indicators of burdens. The tool shows these burdens in census tracts. Census tracts are small units of geography. Census tract boundaries for <link1>statistical areas</link1> are determined by the U.S. Census Bureau once every ten years. The tool utilizes the census tract boundaries from 2020. This was chosen because many of the data sources in the tool currently use the 2010 census boundaries. The tool also shows land within the boundaries of Federally Recognized Tribes and point locations for Alaska Native Villages and landless Tribes in the lower 48 states.`}
`}
description={'Navigate to the About page. This is the paragraph 4'} description={'Navigate to the About page. This is the paragraph 4'}
values={{ values={{
link1: linkFn('https://www.census.gov/programs-surveys/acs/geography-acs/geography-boundaries-by-year.html', false, true), link1: linkFn('https://www.census.gov/programs-surveys/acs/geography-acs/geography-boundaries-by-year.html', false, true),

View file

@ -1,10 +1,10 @@
/* eslint-disable max-len */ /* eslint-disable max-len */
/* eslint-disable react/display-name */ /* eslint-disable react/display-name */
import React from 'react';
import {FormattedDate, FormattedMessage} from 'gatsby-plugin-intl'; import {FormattedDate, FormattedMessage} from 'gatsby-plugin-intl';
import React from 'react';
import {defineMessages} from 'react-intl'; import {defineMessages} from 'react-intl';
import LinkTypeWrapper from '../../components/LinkTypeWrapper';
import DownloadLink from '../../components/DownloadLink'; import DownloadLink from '../../components/DownloadLink';
import LinkTypeWrapper from '../../components/LinkTypeWrapper';
import {GITHUB_LINK} from '../../constants'; import {GITHUB_LINK} from '../../constants';
export interface IDefineMessage { export interface IDefineMessage {
@ -29,17 +29,37 @@ export const linkFn = (to:string | IDefineMessage, isInternal:boolean, isOpenNew
export const FEEDBACK_EMAIL = 'Screeningtool-Support@omb.eop.gov'; export const FEEDBACK_EMAIL = 'Screeningtool-Support@omb.eop.gov';
export const METH_2_0_RELEASE_DATE = new Date(2022, 10, 22, 11, 59, 59); // Nov 22 2022 export const METH_1_0_RELEASE_DATE = new Date(2022, 10, 22, 11, 59, 59); // Nov 22 2022
export const METH_BETA_RELEASE_DATE = new Date(2022, 1, 18, 11, 59, 59); // Feb 18 2022 export const METH_2_0_RELEASE_DATE = new Date(2024, 11, 19, 11, 59, 59); // Dec 19 2024
// Beta Banner // Update Banner
export const BETA_BANNER_CONTENT = <FormattedMessage export const UPDATE_BANNER_HEADING_LARGE = <FormattedMessage
id={'common.pages.alerts.banner.beta.content'} id={'common.pages.alerts.banner.update.heading.large'}
defaultMessage={`<bold1>This tool has been updated.</bold1> The 1.0 version of the tool was released on {relDate}.`} defaultMessage={'Version 2.0 of the tool is now available'}
description={`Alert body that appears on landing page.`} description={'Alert heading that appears at the top of pages'}
/>;
export const UPDATE_BANNER_CONTENT_LARGE = <FormattedMessage
id={'common.pages.alerts.banner.update.content.large'}
defaultMessage={`The Council on Environmental Quality (CEQ) made the 2.0 version of the tool available on {releaseDate}.`}
description={`Alert body that appears at the top of pages.`}
values={{ values={{
bold1: boldFn, releaseDate: <FormattedDate
value={METH_2_0_RELEASE_DATE}
year="numeric"
month="short"
day="numeric"
/>,
}}
/>;
export const UPDATE_BANNER_CONTENT_SMALL = <FormattedMessage
id={'common.pages.alerts.banner.update.content.small'}
defaultMessage={`<bold>This tool has been updated.</bold> The 2.0 version of the tool was released on {relDate}.`}
description={`Alert body that appears at the top of pages.`}
values={{
bold: boldFn,
relDate: <FormattedDate relDate: <FormattedDate
value={METH_2_0_RELEASE_DATE} value={METH_2_0_RELEASE_DATE}
year="numeric" year="numeric"
@ -53,7 +73,7 @@ export const TSD = defineMessages({
URL: { URL: {
id: 'common.pages.tsd.url', id: 'common.pages.tsd.url',
defaultMessage: `https://static-data-screeningtool.geoplatform.gov/data-pipeline/data/score/downloadable/cejst_technical_support_document.pdf`, defaultMessage: `https://static-data-screeningtool.geoplatform.gov/data-pipeline/data/score/downloadable/cejst_technical_support_document.pdf`,
description: 'Navigate to the Alerts on any page. This will be the link to the techinical support document.', description: 'Navigate to the Alerts on any page. This will be the link to the technical support document.',
}, },
}); });

View file

@ -33,7 +33,10 @@ export const PAGE_INTRO = defineMessages({
export const PAGE_DESCRIPTION1 = <FormattedMessage export const PAGE_DESCRIPTION1 = <FormattedMessage
id={'explore.map.page.description.1'} id={'explore.map.page.description.1'}
defaultMessage={` defaultMessage={`
Census tracts that are overburdened and underserved are highlighted as being disadvantaged on the map. Federally Recognized Tribes, including Alaska Native Villages, are also considered disadvantaged communities. Census tracts that are marginalized by underinvestment and overburdened
by pollution are highlighted as being disadvantaged on the map. Federally
Recognized Tribes, including Alaska Native Villages, are considered
disadvantaged communities, whether or not they have land.
`} `}
description={'On the explore the map page, the first description of the page'} description={'On the explore the map page, the first description of the page'}
/>; />;

View file

@ -1,14 +1,15 @@
/* eslint-disable max-len */ /* eslint-disable max-len */
import {defineMessages, FormattedDate, FormattedMessage} from 'gatsby-plugin-intl';
import React from 'react'; import React from 'react';
import {defineMessages, FormattedMessage} from 'gatsby-plugin-intl';
import LinkTypeWrapper from '../../components/LinkTypeWrapper'; import LinkTypeWrapper from '../../components/LinkTypeWrapper';
import {EJSCREEN, EXEC_ORDER_LINK, FED_RECOGNIZED_INDIAN_ENTITIES, CEJST_INSTRUCT, CEJST_MEMO, CEJST_INSTRUCT_ES, CEJST_MEMO_ES} from './about'; import {DATA_SURVEY_LINKS, PAGES_ENDPOINTS, SITE_SATISFACTION_SURVEY_LINKS} from '../constants';
import {boldFn, linkFn, FEEDBACK_EMAIL} from './common'; import {CEJST_INSTRUCT, EXEC_ORDER_LINK, FED_RECOGNIZED_INDIAN_ENTITIES, WHEJAC_RECOMMENDATIONS} from './about';
import {PAGES_ENDPOINTS, DATA_SURVEY_LINKS, SITE_SATISFACTION_SURVEY_LINKS} from '../constants'; import {boldFn, FEEDBACK_EMAIL, linkFn, METH_1_0_RELEASE_DATE, METH_2_0_RELEASE_DATE} from './common';
import {EXPLORE_PAGE_LINKS} from './explore';
import {DOWNLOAD_FILES} from './downloads'; import {DOWNLOAD_FILES} from './downloads';
import {EXPLORE_PAGE_LINKS} from './explore';
import {VERSION_NUMBER} from './methodology';
export const PAGE_INTRO = defineMessages({ export const PAGE_INTRO = defineMessages({
PAGE_TILE: { PAGE_TILE: {
@ -23,236 +24,115 @@ export const PAGE_INTRO = defineMessages({
}, },
}); });
// 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 = [ export const QUESTIONS = [
<FormattedMessage <FormattedMessage
id={ 'faqs.page.Q1'} id={ 'faqs.page.Q1'}
key={ 'faqs.page.Q1'} key={ 'faqs.page.Q1'}
defaultMessage={ 'Q: What is the Climate and Economic Justice Screening Tool (CEJST)?'} defaultMessage={ 'What is the Climate and Economic Justice Screening Tool (CEJST)?'}
description={ 'Navigate to the FAQs page, this will be Q1'} description={ 'Navigate to the FAQs page, this will be Q1'}
/>, />,
<FormattedMessage <FormattedMessage
id={ 'faqs.page.Q2'} id={ 'faqs.page.Q2'}
key={ 'faqs.page.Q2'} key={ 'faqs.page.Q2'}
defaultMessage={ 'Q: How does the tool identify and define communities?'} defaultMessage={ 'How does the tool identify and define communities?'}
description={ 'Navigate to the FAQs page, this will be Q2'} description={ 'Navigate to the FAQs page, this will be Q2'}
/>, />,
<FormattedMessage <FormattedMessage
id={ 'faqs.page.Q3'} id={ 'faqs.page.Q3'}
key={ 'faqs.page.Q3'} key={ 'faqs.page.Q3'}
defaultMessage={ 'Q: Is race included in the tools methodology?'} defaultMessage={ 'Is race included in the tools methodology?'}
description={ 'Navigate to the FAQs page, this will be Q3'} description={ 'Navigate to the FAQs page, this will be Q3'}
/>, />,
<FormattedMessage <FormattedMessage
id={ 'faqs.page.Q4'} id={ 'faqs.page.Q4'}
key={ 'faqs.page.Q4'} key={ 'faqs.page.Q4'}
defaultMessage={ 'Q: Does the Climate and Economic Justice Screening Tool (CEJST) include the U.S. territories? '} defaultMessage={ 'Does the tool include the U.S. territories? '}
description={ 'Navigate to the FAQs page, this will be Q4'} description={ 'Navigate to the FAQs page, this will be Q4'}
/>, />,
<FormattedMessage <FormattedMessage
id={ 'faqs.page.Q5'} id={ 'faqs.page.Q5'}
key={ 'faqs.page.Q5'} key={ 'faqs.page.Q5'}
defaultMessage={ 'Q: Does the tool include Tribal Nations?'} defaultMessage={ 'Does the tool include Tribal Nations?'}
description={ 'Navigate to the FAQs page, this will be Q5'} description={ 'Navigate to the FAQs page, this will be Q5'}
/>, />,
<FormattedMessage <FormattedMessage
id={ 'faqs.page.Q6'} id={ 'faqs.page.Q6'}
key={ 'faqs.page.Q6'} key={ 'faqs.page.Q6'}
defaultMessage={ 'Q: Why do some areas of the map have different shades?'} defaultMessage={ 'Why do some areas of the map have different shades?'}
description={ 'Navigate to the FAQs page, this will be Q6'} description={ 'Navigate to the FAQs page, this will be Q6'}
/>, />,
<FormattedMessage <FormattedMessage
id={ 'faqs.page.Q7'} id={ 'faqs.page.Q7'}
key={ 'faqs.page.Q7'} key={ 'faqs.page.Q7'}
defaultMessage={ 'Q: Why does the tool have “partially disadvantaged” census tracts?'} defaultMessage={ 'Why does the tool have “partially disadvantaged” census tracts?'}
description={ 'Navigate to the FAQs page, this will be Q7'} 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 <FormattedMessage
id={ 'faqs.page.Q12'} id={ 'faqs.page.Q12'}
key={ 'faqs.page.Q12'} key={ 'faqs.page.Q12'}
defaultMessage={ 'Q: How is the Climate and Economic Justice Screening Tool (CEJST) different from other Federal environmental screening tools, such as EJScreen?'} defaultMessage={ 'How is the Climate and Economic Justice Screening Tool (CEJST) different from other Federal environmental screening tools, such as EJScreen?'}
description={ 'Navigate to the FAQs page, this will be Q12'} description={ 'Navigate to the FAQs page, this will be Q12'}
/>, />,
<FormattedMessage <FormattedMessage
id={ 'faqs.page.Q13'} id={ 'faqs.page.Q13'}
key={ 'faqs.page.Q13'} key={ 'faqs.page.Q13'}
defaultMessage={ 'Q: How is this tool different from state screening tools?'} defaultMessage={ 'How is this tool different from state screening tools?'}
description={ 'Navigate to the FAQs page, this will be Q13'} description={ 'Navigate to the FAQs page, this will be Q13'}
/>, />,
<FormattedMessage <FormattedMessage
id={ 'faqs.page.Q14'} id={ 'faqs.page.Q14'}
key={ 'faqs.page.Q14'} key={ 'faqs.page.Q14'}
defaultMessage={ 'Q: How were the White House Environmental Justice Advisory Council (WHEJAC) recommendations used for this tool?'} defaultMessage={ 'How were the White House Environmental Justice Advisory Councils (WHEJAC) recommendations considered for this tool?'}
description={ 'Navigate to the FAQs page, this will be Q14'} description={ 'Navigate to the FAQs page, this will be Q14'}
/>, />,
<FormattedMessage <FormattedMessage
id={ 'faqs.page.Q15'} id={ 'faqs.page.Q15'}
key={ 'faqs.page.Q15'} key={ 'faqs.page.Q15'}
defaultMessage={ 'Q: Can the public provide feedback on this tool?'} defaultMessage={ 'Can the public provide feedback on this tool?'}
description={ 'Navigate to the FAQs page, this will be Q15'} description={ 'Navigate to the FAQs page, this will be Q15'}
/>, />,
<FormattedMessage <FormattedMessage
id={ 'faqs.page.Q16'} id={ 'faqs.page.Q16'}
key={ 'faqs.page.Q16'} key={ 'faqs.page.Q16'}
defaultMessage={ 'Q: Why was the CEJST initially released in a beta version?'} defaultMessage={ 'When was the CEJST released?'}
description={ 'Navigate to the FAQs page, this will be Q16'} 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 <FormattedMessage
id={ 'faqs.page.Q18'} id={ 'faqs.page.Q18'}
key={ 'faqs.page.Q18'} key={ 'faqs.page.Q18'}
defaultMessage={ 'Q. How does the Council on Environmental Quality (CEQ) keep people informed about the tool?'} defaultMessage={ 'How does the Council on Environmental Quality (CEQ) keep people informed about the tool?'}
description={ 'Navigate to the FAQs page, this will be Q18'} description={ 'Navigate to the FAQs page, this will be Q18'}
/>, />,
<FormattedMessage <FormattedMessage
id={ 'faqs.page.Q19'} id={ 'faqs.page.Q19'}
key={ 'faqs.page.Q19'} key={ 'faqs.page.Q19'}
defaultMessage={ 'Q: What files and documentation are available from the tool?'} defaultMessage={ 'What files and documentation are available from the tool?'}
description={ 'Navigate to the FAQs page, this will be Q19'} description={ 'Navigate to the FAQs page, this will be Q19'}
/>, />,
<FormattedMessage <FormattedMessage
id={ 'faqs.page.Q20'} id={ 'faqs.page.Q20'}
key={ 'faqs.page.Q20'} key={ 'faqs.page.Q20'}
defaultMessage={ 'Q: How does the tools shapefile work?'} defaultMessage={ 'How do the tools shapefiles work?'}
description={ 'Navigate to the FAQs page, this will be Q20'} description={ 'Navigate to the FAQs page, this will be Q20'}
/>, />,
<FormattedMessage
id={ 'faqs.page.Q21'}
key={ 'faqs.page.Q21'}
defaultMessage={ 'Why are some tracts disadvantaged because they were disadvantaged in version 1.0 of the tool?'}
description={ 'Navigate to the FAQs page, this will be Q21'}
/>,
<FormattedMessage
id={ 'faqs.page.Q22'}
key={ 'faqs.page.Q22'}
defaultMessage={ 'Why are some tracts disadvantaged in certain U.S. Territories because they only meet the low income threshold?'}
description={ 'Navigate to the FAQs page, this will be Q22'}
/>,
]; ];
export const FAQ_ANSWERS = { export const FAQ_ANSWERS = {
Q1_P1: <FormattedMessage Q1_P1: <FormattedMessage
id={ 'faqs.page.answers.Q1_P1'} 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.'} defaultMessage={ 'The CEJST is a geospatial mapping tool that identifies 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'} description={ 'Navigate to the FAQs page, this will be an answer, Q1_P1'}
values={{ values={{
link1: linkFn(EXEC_ORDER_LINK, false, true), link1: linkFn(EXEC_ORDER_LINK, false, true),
@ -260,54 +140,22 @@ export const FAQ_ANSWERS = {
/>, />,
Q1_P2: <FormattedMessage Q1_P2: <FormattedMessage
id={ 'faqs.page.answers.Q1_P2'} 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={ '<link1>Memorandum</link1> on using the CEJST for the Justice40 Initiative'}
description={ 'Navigate to the FAQs page, this will be an answer, Q1_P3_1'}
values={{
link1: linkFn(CEJST_MEMO, false, true),
link1es: linkFn(CEJST_MEMO_ES, false, true),
}}
/>,
Q1_P3_2: <FormattedMessage
id={ 'faqs.page.answers.Q1_P3_2'}
defaultMessage={ '<link1>Instructions</link1> to Federal agencies on using the CEJST'}
description={ 'Navigate to the FAQs page, this will be an answer, Q1_P3_2'}
values={{
link1: linkFn(CEJST_INSTRUCT, false, true),
link1es: linkFn(CEJST_INSTRUCT_ES, false, true),
}}
/>,
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.'} 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'} description={ 'Navigate to the FAQs page, this will be an answer, Q1_P2'}
/>, />,
Q2_P1: <FormattedMessage Q2_P1: <FormattedMessage
id={ 'faqs.page.answers.Q2_P1'} 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.'} defaultMessage={ 'The CEJST uses datasets that are indicators of burden related to climate change and the environment to assess communities that are disadvantaged by these burdens. They are also related to health and lack of economic opportunity.'}
description={ 'Navigate to the FAQs page, this will be an answer, Q2_P1'} description={ 'Navigate to the FAQs page, this will be an answer, Q2_P1'}
values={{
link1: linkFn(EXEC_ORDER_LINK, false, true),
}}
/>, />,
Q2_P2: <FormattedMessage Q2_P2: <FormattedMessage
id={ 'faqs.page.answers.Q2_P2'} 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. Communities are considered disadvantaged:'} defaultMessage={ 'The tool highlights disadvantaged communities across all 50 states, the District of Columbia, and the U.S. territories. Communities are shown on the map as disadvantaged:'}
description={ 'Navigate to the FAQs page, this will be an answer, Q2_P2'} description={ 'Navigate to the FAQs page, this will be an answer, Q2_P2'}
/>, />,
Q2_P2_1: <FormattedMessage Q2_P2_1: <FormattedMessage
id={ 'faqs.page.answers.Q2_P2_1'} 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'} defaultMessage={ 'If they are in a census tract that meets the threshold 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'} description={ 'Navigate to the FAQs page, this will be an answer, Q2_P2_1'}
/>, />,
Q2_P2_2: <FormattedMessage Q2_P2_2: <FormattedMessage
@ -317,17 +165,22 @@ export const FAQ_ANSWERS = {
/>, />,
Q2_P3: <FormattedMessage Q2_P3: <FormattedMessage
id={ 'faqs.page.answers.Q2_P3'} id={ 'faqs.page.answers.Q2_P3'}
defaultMessage={ 'Not all disadvantaged communities can be shown on the map. Some communities 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.'} defaultMessage={ 'Not all disadvantaged communities can be shown on the map. The map shows point locations for Alaska Native Villages and landless Federally Recognized Tribes in the lower 48 states. Some communities do not live in just one place. This tool focuses on identifying communities that can be geographically defined.'}
description={ 'Navigate to the FAQs page, this will be an answer, Q2_P3'} description={ 'Navigate to the FAQs page, this will be an answer, Q2_P3'}
/>, />,
Q2_P4: <FormattedMessage Q2_P4: <FormattedMessage
id={ 'faqs.page.answers.Q2_P4'} id={ 'faqs.page.answers.Q2_P4'}
defaultMessage={ 'The tool uses census tracts. Census tracts are small units of geography. Census tract boundaries for <link1>statistical areas</link1> are determined by the U.S. Census Bureau once every ten years. The tool utilizes the census tract boundaries from 2010. This was chosen primarily because many of the data sources in the tool currently use the 2010 census boundaries.'} defaultMessage={ 'The tool uses census tracts. Census tracts are small units of geography. Census tract boundaries for <link1>statistical areas</link1> are determined by the U.S. Census Bureau once every ten years. The tool utilizes the census tract boundaries from 2010. Tracts that were identified as disadvantaged in the 1.0 version of the tool remain disadvantaged in the 2.0 version of the tool.'}
description={ 'Navigate to the FAQs page, this will be an answer, Q2_P4'} description={ 'Navigate to the FAQs page, this will be an answer, Q2_P4'}
values={{ values={{
link1: linkFn(`https://www.census.gov/programs-surveys/acs/geography-acs/geography-boundaries-by-year.html`, false, true), link1: linkFn(`https://www.census.gov/programs-surveys/acs/geography-acs/geography-boundaries-by-year.html`, false, true),
}} }}
/>, />,
Q2_P5: <FormattedMessage
id={ 'faqs.page.answers.Q2_P5'}
defaultMessage={ 'Due to limited data availability, tracts in American Samoa, Guam, the Northern Mariana Islands, and the U.S. Virgin Islands are considered disadvantaged if they meet the low income threshold only.'}
description={ 'Navigate to the FAQs page, this will be an answer, Q2_P5'}
/>,
Q3_P1: <FormattedMessage Q3_P1: <FormattedMessage
id={ 'faqs.page.answers.Q3_P1'} 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 displays data about race and age only to provide information when a census tract is selected.'} defaultMessage={ 'No. The Climate and Economic Justice Screening Tool (CEJST) does not use racial demographics in its methodology. The current version of the tool displays data about race and age only to provide information when a census tract is selected.'}
@ -345,8 +198,11 @@ export const FAQ_ANSWERS = {
/>, />,
Q4_P1: <FormattedMessage Q4_P1: <FormattedMessage
id={ 'faqs.page.answers.Q4_P1'} 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. '} defaultMessage={ 'Yes, version {currentVersion} 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'} description={ 'Navigate to the FAQs page, this will be an answer, Q4_P1'}
values={{
currentVersion: VERSION_NUMBER,
}}
/>, />,
Q4_P2: <FormattedMessage Q4_P2: <FormattedMessage
id={ 'faqs.page.answers.Q4_P2'} id={ 'faqs.page.answers.Q4_P2'}
@ -358,7 +214,7 @@ export const FAQ_ANSWERS = {
/>, />,
Q4_P3: <FormattedMessage Q4_P3: <FormattedMessage
id={ 'faqs.page.answers.Q4_P3'} id={ 'faqs.page.answers.Q4_P3'}
defaultMessage={ '<boldtag>American Samoa, Guam, the Northern Mariana Islands, and the U.S. Virgin Islands:</boldtag> For these U.S. territories, the tool uses the following data: unemployment, poverty, low median income, and high school education. These burdens are in the workforce development category. '} defaultMessage={ '<boldtag>American Samoa, Guam, the Northern Mariana Islands, and the U.S. Virgin Islands:</boldtag> For these U.S. Territories, the tool uses the following data: unemployment, poverty, low median income, and high school education. These burdens are in the workforce development category. Due to limited data availability, tracts in these U.S. Territories are considered disadvantaged if they meet the low income only.'}
description={ 'Navigate to the FAQs page, this will be an answer, Q4_P3'} description={ 'Navigate to the FAQs page, this will be an answer, Q4_P3'}
values={{ values={{
boldtag: boldFn, boldtag: boldFn,
@ -367,7 +223,7 @@ export const FAQ_ANSWERS = {
Q5_P1: <FormattedMessage Q5_P1: <FormattedMessage
id={ 'faqs.page.answers.Q5_P1'} id={ 'faqs.page.answers.Q5_P1'}
defaultMessage={` defaultMessage={`
To respect Tribal sovereignty and self-government and to fulfill Federal trust and treaty responsibilities to Tribal Nations, land within the boundaries of Federally Recognized tribes are highlighted as disadvantaged on the map. Alaska Native Villages are included as point locations that are smaller than census tracts. The boundaries of census tracts and the lands of Federally Recognized Tribes are different. To respect Tribal sovereignty and self-government and to fulfill Federal trust and treaty responsibilities to Tribal Nations, land within the boundaries of Federally Recognized Tribes are highlighted as disadvantaged on the map. Alaska Native Villages are included as point locations that are smaller than census tracts. The boundaries of census tracts and the lands of Federally Recognized Tribes are different.
`} `}
description={ 'Navigate to the FAQs page, this will be an answer, Q5_P1'} description={ 'Navigate to the FAQs page, this will be an answer, Q5_P1'}
/>, />,
@ -381,7 +237,7 @@ export const FAQ_ANSWERS = {
/>, />,
Q5_P2_1: <FormattedMessage Q5_P2_1: <FormattedMessage
id={ 'faqs.page.answers.Q5_P2_1'} id={ 'faqs.page.answers.Q5_P2_1'}
defaultMessage={ `This decision was made after meaningful and robust consultation with Tribal Nations. This approach is consistent with CEQs <link1>Action Plan</link1> for Consultation and Coordination with Tribal Nations, President Bidens <link3>Memorandum</link3> on Tribal Consultation and Strengthening Nation-to-Nation Consultation, and <link2>Executive Order 13175</link2> on Consultation and Coordination With Indian Tribal Governments.`} defaultMessage={ `This decision was made after meaningful and robust consultation with Tribal Nations. This approach is consistent with CEQs <link1>Action Plan</link1> for Consultation and Coordination with Tribal Nations, the <link3>Memorandum</link3> on Tribal Consultation and Strengthening Nation-to-Nation Consultation, and <link2>Executive Order 13175</link2> on Consultation and Coordination With Indian Tribal Governments.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q5_P2_1'} description={ 'Navigate to the FAQs page, this will be an answer, Q5_P2_1'}
values={{ values={{
link1: linkFn(EXPLORE_PAGE_LINKS.WH_GOV_TRIBAL_ACTION_PLAN_4_26_21, false, true), link1: linkFn(EXPLORE_PAGE_LINKS.WH_GOV_TRIBAL_ACTION_PLAN_4_26_21, false, true),
@ -407,7 +263,7 @@ export const FAQ_ANSWERS = {
/>, />,
Q6_P4: <FormattedMessage Q6_P4: <FormattedMessage
id={ 'faqs.page.answers.Q6_P4'} 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 within the boundaries of Federally Recognized Tribes.`} 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 contain land within the boundaries of Federally Recognized Tribes.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q6_P4'} description={ 'Navigate to the FAQs page, this will be an answer, Q6_P4'}
/>, />,
Q7: <FormattedMessage Q7: <FormattedMessage
@ -415,136 +271,20 @@ export const FAQ_ANSWERS = {
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 land within the boundaries of Federally Recognized Tribes, then the parts of the tract that contain the land of Tribes are considered disadvantaged. The tool will display this type of census tract as “partially disadvantaged.”`} 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 land within the boundaries of Federally Recognized Tribes, then the parts of the tract that contain the land of Tribes 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'} 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={ `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 tool 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'}
// values={{
// link1: linkFn(`https://www.whitehouse.gov/wp-content/uploads/2021/07/M-21-28.pdf`, false, true),
// }}
/>,
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 Q12_P1: <FormattedMessage
id={ 'faqs.page.answers.Q12_P1'} 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 and combines that information together into indices. The EPA, Federal agencies, and state and local governments will continue to use EJScreen to understand and analyze for environmental and EJ issues. For example, EPA uses <link1> EJScreen </link1> to:`} defaultMessage={ `The CEJST uses lessons learned from the EPA's EJScreen. EJScreen is an environmental justice mapping and screening tool. EJScreen shows some environmental and demographic information and combines that information together into indices.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q12_P1'} 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 Q12_P2: <FormattedMessage
id={ 'faqs.page.answers.Q12_P2'} 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.`} defaultMessage={ `In contrast, the CEJST helps to identify geographically defined disadvantaged communities that are marginalized by underinvestment and overburdened by pollution.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q12_P2'} description={ 'Navigate to the FAQs page, this will be an answer, Q12_P2'}
/>, />,
Q12_P3: <FormattedMessage Q12_P3: <FormattedMessage
id={ 'faqs.page.answers.Q12_P3'} 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'}
/>,
Q12_P4: <FormattedMessage
id={ 'faqs.page.answers.Q12_P4'}
defaultMessage={ `<link1>This chart</link1> is helpful for understanding how the CEJST differs from some of the other Federal environmental screening tools.`} defaultMessage={ `<link1>This chart</link1> is helpful for understanding how the CEJST differs from some of the other Federal environmental screening tools.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q12_P4'} description={ 'Navigate to the FAQs page, this will be an answer, Q12_P3'}
values={{ values={{
link1: linkFn(DOWNLOAD_FILES.NARWAL.COMP_CHART.URL, false, true), link1: linkFn(DOWNLOAD_FILES.NARWAL.COMP_CHART.URL, false, true),
}} }}
@ -561,8 +301,11 @@ export const FAQ_ANSWERS = {
/>, />,
Q14: <FormattedMessage Q14: <FormattedMessage
id={ 'faqs.page.answers.Q14'} 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.`} defaultMessage={ `The WHEJAC provided <link1>recommendations</link1> on the Climate and Economic Justice Screening Tool (CEJST). The CEJST versions 1.0 and 2.0 include components that were informed by many of these recommendations.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q14'} description={ 'Navigate to the FAQs page, this will be an answer, Q14'}
values={{
link1: linkFn(WHEJAC_RECOMMENDATIONS, false, true),
}}
/>, />,
Q15_P1: <FormattedMessage Q15_P1: <FormattedMessage
id={ 'faqs.page.answers.Q15_P1'} id={ 'faqs.page.answers.Q15_P1'}
@ -604,9 +347,9 @@ export const FAQ_ANSWERS = {
/>, />,
}} }}
/>, />,
Q16: <FormattedMessage Q16_P1: <FormattedMessage
id={ 'faqs.page.answers.Q16'} id={ 'faqs.page.answers.Q16'}
defaultMessage={ `CEQ launched a beta or draft version of the CEJST on February 18, 2022 with support from the U.S. Digital Service (USDS), and in collaboration with other Federal agencies and departments. The CEJST was released in a beta version in order to seek <link1>feedback</link1> from Federal agencies, Tribal Nations, State and local governments, Members of Congress, environmental justice stakeholders, and the public. The 90 day public comment period <link2>closed</link2> on May 25, 2022. CEQ and the USDS hosted several <link2>public training</link2> sessions on the beta version of the CEJST. All of this feedback on the beta version of the CEJST helped to inform the release of version 1.0 of the CEJST.`} defaultMessage={ `CEQ launched a beta—or draft—version of the CEJST in February 2022 with support from the U.S. Digital Service (USDS), and in collaboration with other Federal agencies and departments. The CEJST was released in a beta version in order to seek <link1>feedback</link1> from Federal agencies, Tribal Nations, State and local governments, Members of Congress, environmental justice stakeholders, and the public. The 90 day public comment period <link2>closed</link2> on May 25, 2022. CEQ and the USDS hosted several <link3>public training</link3> sessions on the beta version of the CEJST. All of this feedback on the beta version of the CEJST helped to inform the release of version 1.0 of the CEJST.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q16'} description={ 'Navigate to the FAQs page, this will be an answer, Q16'}
values={{ values={{
link1: linkFn('https://www.federalregister.gov/documents/2022/02/23/2022-03920/climate-and-economic-justice-screening-tool-beta-version', false, true), link1: linkFn('https://www.federalregister.gov/documents/2022/02/23/2022-03920/climate-and-economic-justice-screening-tool-beta-version', false, true),
@ -614,22 +357,26 @@ export const FAQ_ANSWERS = {
link3: linkFn('https://www.youtube.com/watch?v=QwHWcXbhw28', false, true), link3: linkFn('https://www.youtube.com/watch?v=QwHWcXbhw28', false, true),
}} }}
/>, />,
Q17_P1: <FormattedMessage Q16_P2: <FormattedMessage
id={ 'faqs.page.answers.Q17_P1'} id={ 'faqs.page.answers.Q16_P2'}
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 <link1>November, 2022</link1>. The tool is no longer in beta.`} defaultMessage={`The 1.0 version was released in <link1>{version1Release}</link1>. The current version, version {currentVersion}, was released in {currentVersionRelease}.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q17_P1'} description={ 'Navigate to the FAQs page, this will be an answer, Q16_P2'}
values={{ values={{
link1: linkFn('https://www.whitehouse.gov/ceq/news-updates/2022/11/22/biden-harris-administration-launches-version-1-0-of-climate-and-economic-justice-screening-tool-key-step-in-implementing-president-bidens-justice40-initiative/', false, true), link1: linkFn('https://www.whitehouse.gov/ceq/news-updates/2022/11/22/biden-harris-administration-launches-version-1-0-of-climate-and-economic-justice-screening-tool-key-step-in-implementing-president-bidens-justice40-initiative/', false, true),
version1Release: (<FormattedDate value={METH_1_0_RELEASE_DATE}
year="numeric"
month="long"
/>),
currentVersion: VERSION_NUMBER,
currentVersionRelease: (<FormattedDate value={METH_2_0_RELEASE_DATE}
year="numeric"
month="long"
/>),
}} }}
/>, />,
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 Q18: <FormattedMessage
id={ 'faqs.page.answers.Q18'} id={ 'faqs.page.answers.Q18'}
defaultMessage={ `<link1>Sign-up</link1> to receive updates on the Climate and Economic Justice Screening Tool (CEJST) and other environmental justice news from CEQ.`} defaultMessage={ `<link1>Sign up</link1> 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'} description={ 'Navigate to the FAQs page, this will be an answer, Q18'}
values={{ values={{
link1: linkFn(`https://lp.constantcontactpages.com/su/Vm8pCFj/spring`, false, true), link1: linkFn(`https://lp.constantcontactpages.com/su/Vm8pCFj/spring`, false, true),
@ -637,10 +384,11 @@ export const FAQ_ANSWERS = {
/>, />,
Q19: <FormattedMessage Q19: <FormattedMessage
id={ 'faqs.page.answers.Q19'} 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.`} defaultMessage={ `The Climate and Economic Justice Screening Tool (CEJST) has <link1>downloads</link1> for the current version available. Spreadsheets (.xlxs) and (.csv) contain the tools definitions and data. These 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. Information from previous versions of the tool is available on the <link2>previous versions</link2> page.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q19'} description={ 'Navigate to the FAQs page, this will be an answer, Q19'}
values={{ values={{
link1: linkFn(PAGES_ENDPOINTS.DOWNLOADS, true, false), link1: linkFn(PAGES_ENDPOINTS.DOWNLOADS, true, false),
link2: linkFn(PAGES_ENDPOINTS.PREVIOUS_VERSIONS, true, false),
}} }}
/>, />,
Q20_P1: <FormattedMessage Q20_P1: <FormattedMessage
@ -657,4 +405,17 @@ export const FAQ_ANSWERS = {
link2: linkFn('https://en.wikipedia.org/wiki/GIS_file_formats', false, true), link2: linkFn('https://en.wikipedia.org/wiki/GIS_file_formats', false, true),
}} }}
/>, />,
Q21: <FormattedMessage
id={ 'faqs.page.answers.Q21'}
defaultMessage={ 'These tracts that have been "grandfathered" for at least two years. This helps to reduce disruption and to support a smooth transition for agencies, applicants, and the public as new versions of the tool are released. The tools <link1>instructions</link1> have more information about time-limited grandfathering.'}
description={ 'Navigate to the FAQs page, this will be an answer, Q21'}
values= {{
link1: linkFn(CEJST_INSTRUCT, false, true),
}}
/>,
Q22: <FormattedMessage
id={ 'faqs.page.answers.Q22'}
defaultMessage={ 'Because some nationally-consistent datasets on indicators of environmental burden used in the tool do not currently include data from certain U.S. Territories, tracts in these Territories are considered disadvantaged if they meet the low income threshold.'}
description={ 'Navigate to the FAQs page, this will be an answer, Q22'}
/>,
}; };

View file

@ -1,13 +1,13 @@
/* eslint-disable max-len */ /* eslint-disable max-len */
import {FormattedMessage} from 'gatsby-plugin-intl';
import React from 'react'; import React from 'react';
import {defineMessages} from 'react-intl'; import {defineMessages} from 'react-intl';
import {FormattedMessage} from 'gatsby-plugin-intl';
import {boldFn, linkFn, simpleLink} from './common'; import {boldFn, linkFn, simpleLink} from './common';
export const VERSION_NUMBER = (2.0).toFixed(1); export const VERSION_NUMBER = (2.0).toFixed(1);
export const PAGE = defineMessages({ export const PAGE = defineMessages({
TILE: { TITLE: {
id: 'methodology.page.title.text', id: 'methodology.page.title.text',
defaultMessage: 'Methodology & data', defaultMessage: 'Methodology & data',
description: 'Navigate to the methodology page. This is the methodology page title text', description: 'Navigate to the methodology page. This is the methodology page title text',
@ -34,10 +34,39 @@ export const PAGE = defineMessages({
PARA1_BULLET2: { PARA1_BULLET2: {
id: 'methodology.page.paragraph.1.bullet.2', id: 'methodology.page.paragraph.1.bullet.2',
defaultMessage: ` defaultMessage: `
If they are on land within the boundaries of Federally Recognized Tribes If they are on land within the boundaries of Federally Recognized Tribes.
`, `,
description: 'Navigate to the methodology page. This is the methodology paragraph 1, bullet 2', description: 'Navigate to the methodology page. This is the methodology paragraph 1, bullet 2',
}, },
PARA1_BULLET3: {
id: 'methodology.page.paragraph.1.bullet.3',
defaultMessage: `
If the census tract ID was identified as disadvantaged in version 1.0, then the census tract is considered disadvantaged in version 2.0.
`,
description: 'Navigate to the methodology page. This is the methodology paragraph 1, bullet 3',
},
PARA1_BULLET4: {
id: 'methodology.page.paragraph.1.bullet.4',
defaultMessage: `
If the tract is a new tract in 2020, then the percentage of land that it shared, if any, with a previously disadvantaged tract will be considered disadvantaged.
`,
description: 'Navigate to the methodology page. This is the methodology paragraph 1, bullet 4',
},
PARA1_BULLET5: {
id: 'methodology.page.paragraph.1.bullet.5',
defaultMessage: `
Additionally, census tracts in certain U.S. Territories are considered disadvantaged if they meet the low income threshold only. This is because these Territories are not included in each of the nationally-consistent datasets on environmental and climate burdens currently used in the tool.
`,
description: 'Navigate to the methodology page. This is the methodology paragraph 1, bullet 5',
},
PARA2: {
id: 'methodology.page.paragraph.2',
defaultMessage: `
The tool uses datasets as indicators of burdens. The burdens are organized into categories. A community is highlighted as disadvantaged on the CEJST map if it is in a census tract that is (1) at or above the threshold for one or more environmental, climate, or other burdens, and (2) at or
above the threshold for an associated socioeconomic burden.
`,
description: 'Navigate to the methodology page. This is the methodology paragraph 2',
},
SUB_HEADING_1: { SUB_HEADING_1: {
id: 'methodology.page.sub.heading.1', id: 'methodology.page.sub.heading.1',
defaultMessage: ` defaultMessage: `
@ -399,7 +428,7 @@ export const DATASETS = defineMessages({
INFO: { INFO: {
id: 'methodology.page.datasetContainer.info', id: 'methodology.page.datasetContainer.info',
defaultMessage: ` defaultMessage: `
The tool's datasets are public and consistent nationwide. They come from different sources and are high quality. The Council on Environmental Quality (CEQ) chose them based on relevance, availability, and quality. They identify climate, environmental, and other burdens on communities. The tools datasets are public and consistent nationwide. They come from different sources and are high quality. The Council on Environmental Quality (CEQ) chose them based on relevance, availability, and quality. They identify climate, environmental, and other burdens on communities.
`, `,
description: 'Navigate to the Methodology page. This is the description of the dataset section', description: 'Navigate to the Methodology page. This is the description of the dataset section',
}, },
@ -587,6 +616,15 @@ export const SOURCE_LINKS = {
date10: DATE_RANGE.TEN, date10: DATE_RANGE.TEN,
}} }}
/>, />,
DECENNIAL_CENSUS_20: <FormattedMessage
id={'methodology.page.category.source.census.link.20'}
defaultMessage={'<link1>Decennial Census</link1> from {date20}'}
description={'Navigate to the Methodology page. This is the source link for Decennial Census'}
values={{
link1: linkFn('https://www.census.gov/data/developers/data-sets/decennial-census.2020.html', false, true),
date20: DATE_RANGE.TWENTY,
}}
/>,
FEMA_NRI: <FormattedMessage FEMA_NRI: <FormattedMessage
id={'methodology.page.category.source.fema.link'} id={'methodology.page.category.source.fema.link'}
defaultMessage={`<link1>National Risk Index</link1> from {date14_21}`} defaultMessage={`<link1>National Risk Index</link1> from {date14_21}`}
@ -617,7 +655,7 @@ export const SOURCE_LINKS = {
/>, />,
EPA_NATA: <FormattedMessage EPA_NATA: <FormattedMessage
id={'methodology.page.category.source.epa.nata.link'} id={'methodology.page.category.source.epa.nata.link'}
defaultMessage={`<link1>National Air Toxics Assessment (NATA)</link1> from {date14} as compiled by EPA's EJScreen`} defaultMessage={`<link1>National Air Toxics Assessment (NATA)</link1> from {date14} as compiled by EPAs EJScreen`}
description={'Navigate to the Methodology page. This is the source link for EPA NATA'} description={'Navigate to the Methodology page. This is the source link for EPA NATA'}
values={{ values={{
link1: linkFn('https://www.epa.gov/ejscreen/download-ejscreen-data', false, true), link1: linkFn('https://www.epa.gov/ejscreen/download-ejscreen-data', false, true),
@ -626,7 +664,7 @@ export const SOURCE_LINKS = {
/>, />,
DOT_EPA: <FormattedMessage DOT_EPA: <FormattedMessage
id={'methodology.page.category.source.dot.epa.link'} id={'methodology.page.category.source.dot.epa.link'}
defaultMessage={`<link1>Traffic data</link1> from {date17} as compiled by EPA's EJScreen`} defaultMessage={`<link1>Traffic data</link1> from {date17} as compiled by EPAs EJScreen`}
description={'Navigate to the Methodology page. This is the source link for DOT EPA'} description={'Navigate to the Methodology page. This is the source link for DOT EPA'}
values={{ values={{
link1: linkFn('https://www.epa.gov/ejscreen/download-ejscreen-data', false, true), link1: linkFn('https://www.epa.gov/ejscreen/download-ejscreen-data', false, true),
@ -645,8 +683,8 @@ export const SOURCE_LINKS = {
EPA_TSDF: <FormattedMessage EPA_TSDF: <FormattedMessage
id={'methodology.page.category.source.epa.tsdf.link'} id={'methodology.page.category.source.epa.tsdf.link'}
defaultMessage={` defaultMessage={`
<link1>Treatment, Storage, and Disposal Facilities (TSDF) data</link1> from {date20} calculated from EPA's RCRA database as compiled <link1>Treatment, Storage, and Disposal Facilities (TSDF) data</link1> from {date20} calculated from EPAs RCRA database as compiled
by EPA's EJScreen by EPAs EJScreen
`} `}
description={'Navigate to the Methodology page. This is the source link for EPA TSDF'} description={'Navigate to the Methodology page. This is the source link for EPA TSDF'}
values={{ values={{
@ -710,7 +748,7 @@ export const SOURCE_LINKS = {
/>, />,
HOLC: <FormattedMessage HOLC: <FormattedMessage
id={'methodology.page.category.source.holc.link'} id={'methodology.page.category.source.holc.link'}
defaultMessage={`<link1>Dataset of formerly redlined areas</link1> using digitized maps from the Home Owners Loan Corporation (HOLC), using {date10} census boundaries`} defaultMessage={`<link1>Dataset of formerly redlined areas</link1> using digitized maps from the Home Owners Loan Corporation (HOLC), using {date10} census boundaries`}
description={'Navigate to the Methodology page. This is the source link for CDC Sleep'} description={'Navigate to the Methodology page. This is the source link for CDC Sleep'}
values={{ values={{
link1: linkFn('https://www.openicpsr.org/openicpsr/project/141121/version/V2/view', false, true), link1: linkFn('https://www.openicpsr.org/openicpsr/project/141121/version/V2/view', false, true),
@ -755,7 +793,7 @@ export const SOURCE_LINKS = {
/>, />,
UST_FIND: <FormattedMessage UST_FIND: <FormattedMessage
id={'methodology.page.category.source.ust.find.link'} id={'methodology.page.category.source.ust.find.link'}
defaultMessage={`Calculated from EPAs <link1>UST Finder</link1> from {date21} as compiled by EPA's EJScreen defaultMessage={`Calculated from EPAs <link1>UST Finder</link1> from {date21} as compiled by EPAs EJScreen
`} `}
description={'Navigate to the Methodology page. This is the source link for UST Find'} description={'Navigate to the Methodology page. This is the source link for UST Find'}
values={{ values={{
@ -828,6 +866,7 @@ export interface IIndicators {
responsibleParty: JSX.Element, responsibleParty: JSX.Element,
sources: { sources: {
source: JSX.Element, source: JSX.Element,
isNew?: boolean,
availableFor: { // Todo remove this and replace with MessageDescriptor when ticket #2000 is fixed availableFor: { // Todo remove this and replace with MessageDescriptor when ticket #2000 is fixed
id: string, id: string,
description: string, description: string,
@ -836,7 +875,7 @@ export interface IIndicators {
}[] }[]
}; };
export const INDICATORS = [ export const INDICATORS: IIndicators[] = [
// All categories: // All categories:
{ {
domID: 'census-tract-info', domID: 'census-tract-info',
@ -845,7 +884,6 @@ export const INDICATORS = [
defaultMessage={`Census tract information and demographics`} defaultMessage={`Census tract information and demographics`}
description={'Navigate to the Methodology page. This is the title text for the census tract dataset'} description={'Navigate to the Methodology page. This is the title text for the census tract dataset'}
/>, />,
isNew: true,
description: <FormattedMessage description: <FormattedMessage
id={'methodology.page.category.census.tract.description.text'} id={'methodology.page.category.census.tract.description.text'}
defaultMessage={` defaultMessage={`
@ -856,7 +894,7 @@ export const INDICATORS = [
note: <FormattedMessage note: <FormattedMessage
id={'methodology.page.category.census.tract.note.text'} id={'methodology.page.category.census.tract.note.text'}
defaultMessage={` defaultMessage={`
<boldtag>Note: </boldtag>The demographics are included as information only and are not considered as a part of the tool's methodology. <boldtag>Note: </boldtag>The demographics are included as information only and are not considered as a part of the tools methodology.
`} `}
description={'Navigate to the Methodology page. This is the note text for low life expectancy'} description={'Navigate to the Methodology page. This is the note text for low life expectancy'}
values={{ values={{
@ -882,7 +920,7 @@ export const INDICATORS = [
description: <FormattedMessage description: <FormattedMessage
id={'methodology.page.category.low.income.description.text'} id={'methodology.page.category.low.income.description.text'}
defaultMessage={` defaultMessage={`
Percent of a census tract's population in households where household income is at or below Percent of a census tracts population in households where household income is at or below
200% of the Federal poverty level, not including students enrolled in higher education. 200% of the Federal poverty level, not including students enrolled in higher education.
`} `}
description={'Navigate to the Methodology page. This is the description text for low income'} description={'Navigate to the Methodology page. This is the description text for low income'}
@ -985,7 +1023,6 @@ export const INDICATORS = [
defaultMessage={`Projected flood risk`} defaultMessage={`Projected flood risk`}
description={'Navigate to the Methodology page. This is the title text for the NEW Projected flood risk'} description={'Navigate to the Methodology page. This is the title text for the NEW Projected flood risk'}
/>, />,
isNew: true,
description: <FormattedMessage description: <FormattedMessage
id={'methodology.page.category.flood.risk.rate.description.text'} id={'methodology.page.category.flood.risk.rate.description.text'}
defaultMessage={` defaultMessage={`
@ -1009,7 +1046,6 @@ export const INDICATORS = [
defaultMessage={`Projected wildfire risk`} defaultMessage={`Projected wildfire risk`}
description={'Navigate to the Methodology page. This is the title text for the NEW Projected wildfire risk'} description={'Navigate to the Methodology page. This is the title text for the NEW Projected wildfire risk'}
/>, />,
isNew: true,
description: <FormattedMessage description: <FormattedMessage
id={'methodology.page.category.wildfire.risk.rate.description.text'} id={'methodology.page.category.wildfire.risk.rate.description.text'}
defaultMessage={` defaultMessage={`
@ -1187,11 +1223,10 @@ export const INDICATORS = [
defaultMessage={`Historic underinvestment`} defaultMessage={`Historic underinvestment`}
description={'Navigate to the Methodology page. This is the title text for the Historic Underinvestment'} description={'Navigate to the Methodology page. This is the title text for the Historic Underinvestment'}
/>, />,
isNew: true,
description: <FormattedMessage description: <FormattedMessage
id={'methodology.page.category.low.hist.underinvestectancy.description.text'} id={'methodology.page.category.low.hist.underinvestectancy.description.text'}
defaultMessage={` defaultMessage={`
Census tracts that experienced historic underinvestment based on redlining maps created by the federal governments Home Owners Loan Corporation (HOLC) between 1935 and 1940. The tool uses the National Community Reinvestment Coalitions <link1>methodology</link1> for converting boundaries in the HOLC maps to census tracts. Census tracts meet the threshold when they have a score of 3.25 or more out of 4. Census tracts that experienced historic underinvestment based on redlining maps created by the Federal governments Home Owners Loan Corporation (HOLC) between 1935 and 1940. The tool uses the National Community Reinvestment Coalitions <link1>methodology</link1> for converting boundaries in the HOLC maps to census tracts. Census tracts meet the threshold when they have a score of 3.25 or more out of 4.
`} `}
description={'Navigate to the Methodology page. This is the description text for Historic Underinvestment'} description={'Navigate to the Methodology page. This is the description text for Historic Underinvestment'}
values={{ values={{
@ -1247,7 +1282,6 @@ export const INDICATORS = [
defaultMessage={`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'} description={'Navigate to the Methodology page. This is the title text for the house burden dataset'}
/>, />,
isNew: true,
description: <FormattedMessage description: <FormattedMessage
id={'methodology.page.category.green.space.description.text'} id={'methodology.page.category.green.space.description.text'}
defaultMessage={` defaultMessage={`
@ -1272,7 +1306,6 @@ export const INDICATORS = [
defaultMessage={`Lack of indoor plumbing`} defaultMessage={`Lack of indoor plumbing`}
description={'Navigate to the Methodology page. This is the title text for the indoor plumbing'} description={'Navigate to the Methodology page. This is the title text for the indoor plumbing'}
/>, />,
isNew: true,
description: <FormattedMessage description: <FormattedMessage
id={'methodology.page.category.indoor.plumb.description.text'} id={'methodology.page.category.indoor.plumb.description.text'}
defaultMessage={` defaultMessage={`
@ -1321,7 +1354,6 @@ export const INDICATORS = [
defaultMessage={`Abandoned mine land`} defaultMessage={`Abandoned mine land`}
description={'Navigate to the Methodology page. This is the title text for the Abandoned mine lands'} description={'Navigate to the Methodology page. This is the title text for the Abandoned mine lands'}
/>, />,
isNew: true,
description: <FormattedMessage description: <FormattedMessage
id={'methodology.page.category.mine.land.description.text'} id={'methodology.page.category.mine.land.description.text'}
defaultMessage={` defaultMessage={`
@ -1345,7 +1377,6 @@ export const INDICATORS = [
defaultMessage={`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'} description={'Navigate to the Methodology page. This is the title text for the Formerly Used Defense Sites'}
/>, />,
isNew: true,
description: <FormattedMessage description: <FormattedMessage
id={'methodology.page.category.fuds.description.text'} id={'methodology.page.category.fuds.description.text'}
defaultMessage={` defaultMessage={`
@ -1463,7 +1494,6 @@ export const INDICATORS = [
defaultMessage={`Transportation barriers`} defaultMessage={`Transportation barriers`}
description={'Navigate to the Methodology page. This is the title text for the Transportation barriers'} description={'Navigate to the Methodology page. This is the title text for the Transportation barriers'}
/>, />,
isNew: true,
description: <FormattedMessage description: <FormattedMessage
id={'methodology.page.category.trans.barrier.description.text'} id={'methodology.page.category.trans.barrier.description.text'}
defaultMessage={` defaultMessage={`
@ -1522,7 +1552,6 @@ export const INDICATORS = [
defaultMessage={`Underground storage tanks and releases`} defaultMessage={`Underground storage tanks and releases`}
description={'Navigate to the Methodology page. This is the title text for the Underground storage tanks and releases'} description={'Navigate to the Methodology page. This is the title text for the Underground storage tanks and releases'}
/>, />,
isNew: true,
description: <FormattedMessage description: <FormattedMessage
id={'methodology.page.category.leaky.uwt.description.text'} id={'methodology.page.category.leaky.uwt.description.text'}
defaultMessage={` defaultMessage={`
@ -1608,7 +1637,7 @@ export const INDICATORS = [
description: <FormattedMessage description: <FormattedMessage
id={'methodology.page.category.workforce.dev.description.text'} id={'methodology.page.category.workforce.dev.description.text'}
defaultMessage={` defaultMessage={`
Low median income calculated as a share of the areas median income. Low median income is calculated as the median income of the tract divided by the income in the Metropolitan Statistical Area, unless the tract is a rural tract. For rural tracts, it is calculated as a percent of the states median income.
`} `}
description={'Navigate to the Methodology page. This is the description text for workforce dev'} description={'Navigate to the Methodology page. This is the description text for workforce dev'}
/>, />,
@ -1630,7 +1659,8 @@ export const INDICATORS = [
availableFor: AVAILABLE_FOR.ALL_US_DC_PR, availableFor: AVAILABLE_FOR.ALL_US_DC_PR,
}, },
{ {
source: SOURCE_LINKS.CENSUS_ACS_10, source: SOURCE_LINKS.DECENNIAL_CENSUS_20,
isNew: true,
availableFor: AVAILABLE_FOR.ALL_ISLDS, availableFor: AVAILABLE_FOR.ALL_ISLDS,
}, },
], ],
@ -1657,7 +1687,8 @@ export const INDICATORS = [
availableFor: AVAILABLE_FOR.ALL_US_DC_PR, availableFor: AVAILABLE_FOR.ALL_US_DC_PR,
}, },
{ {
source: SOURCE_LINKS.CENSUS_ACS_10, source: SOURCE_LINKS.DECENNIAL_CENSUS_20,
isNew: true,
availableFor: AVAILABLE_FOR.ALL_ISLDS, availableFor: AVAILABLE_FOR.ALL_ISLDS,
}, },
], ],
@ -1684,7 +1715,8 @@ export const INDICATORS = [
availableFor: AVAILABLE_FOR.ALL_US_DC_PR, availableFor: AVAILABLE_FOR.ALL_US_DC_PR,
}, },
{ {
source: SOURCE_LINKS.CENSUS_ACS_10, source: SOURCE_LINKS.DECENNIAL_CENSUS_20,
isNew: true,
availableFor: AVAILABLE_FOR.ALL_ISLDS, availableFor: AVAILABLE_FOR.ALL_ISLDS,
}, },
], ],
@ -1711,7 +1743,8 @@ export const INDICATORS = [
availableFor: AVAILABLE_FOR.ALL_US_DC_PR, availableFor: AVAILABLE_FOR.ALL_US_DC_PR,
}, },
{ {
source: SOURCE_LINKS.CENSUS_ACS_10, source: SOURCE_LINKS.DECENNIAL_CENSUS_20,
isNew: true,
availableFor: AVAILABLE_FOR.ALL_ISLDS, availableFor: AVAILABLE_FOR.ALL_ISLDS,
}, },
], ],
@ -1726,7 +1759,6 @@ export const INDICATORS = [
defaultMessage={`Tribes`} defaultMessage={`Tribes`}
description={'Navigate to the Methodology page. This is the title text for the Tribal lands'} description={'Navigate to the Methodology page. This is the title text for the Tribal lands'}
/>, />,
isNew: true,
description: <FormattedMessage description: <FormattedMessage
id={'methodology.page.category.tribal.lands.description.text'} id={'methodology.page.category.tribal.lands.description.text'}
defaultMessage={` defaultMessage={`

View file

@ -8,7 +8,7 @@
"description": "Navigate to the About page. This is the paragraph 4" "description": "Navigate to the About page. This is the paragraph 4"
}, },
"about.page.how.to.use.tool.para1": { "about.page.how.to.use.tool.para1": {
"defaultMessage": "The tool shows information about the burdens that communities experience. It uses datasets to identify indicators of burdens. The tool shows these burdens in census tracts. Census tracts are small units of geography. Census tract boundaries for <link1>statistical areas</link1> are determined by the U.S. Census Bureau once every ten years. The tool utilizes the census tract boundaries from 2010. This was chosen because many of the data sources in the tool currently use the 2010 census boundaries. The tool also shows land within the boundaries of Federally Recognized Tribes and point locations for Alaska Native Villages.", "defaultMessage": "The tool shows information about the burdens that communities experience. It uses datasets to identify indicators of burdens. The tool shows these burdens in census tracts. Census tracts are small units of geography. Census tract boundaries for <link1>statistical areas</link1> are determined by the U.S. Census Bureau once every ten years. The tool utilizes the census tract boundaries from 2020. This was chosen because many of the data sources in the tool currently use the 2010 census boundaries. The tool also shows land within the boundaries of Federally Recognized Tribes and point locations for Alaska Native Villages and landless Tribes in the lower 48 states.",
"description": "Navigate to the About page. This is the paragraph 4" "description": "Navigate to the About page. This is the paragraph 4"
}, },
"about.page.how.to.use.tool.para2": { "about.page.how.to.use.tool.para2": {
@ -64,7 +64,7 @@
"description": "Navigate to the About page. This is the list item 2" "description": "Navigate to the About page. This is the list item 2"
}, },
"about.page.paragraph.1": { "about.page.paragraph.1": {
"defaultMessage": "In January of 2021, President Biden issued <link1>Executive Order 14008</link1>. The order directed the Council on Environmental Quality (CEQ) to develop a new tool. This tool is called the Climate and Economic Justice Screening Tool. The tool has an interactive map and uses datasets that are indicators of burdens in eight categories: climate change, energy, health, housing, legacy pollution, transportation, water and wastewater, and workforce development. The tool uses this information to identify communities that are experiencing these burdens. These are the communities that are disadvantaged because they are overburdened and underserved.", "defaultMessage": "In January of 2021, President Biden issued <link1>Executive Order 14008</link1>. The order directed the Council on Environmental Quality (CEQ) to develop a new tool. This tool is called the Climate and Economic Justice Screening Tool. The tool has an interactive map and uses datasets that are indicators of burdens in eight categories: climate change, energy, health, housing, legacy pollution, transportation, water and wastewater, and workforce development. The tool uses this information to identify communities that are experiencing these burdens. These are the communities that are disadvantaged because they are marginalized by underinvestment and overburdened by pollution.",
"description": "Navigate to the About page. This is the paragraph 1" "description": "Navigate to the About page. This is the paragraph 1"
}, },
"about.page.paragraph.2": { "about.page.paragraph.2": {
@ -76,7 +76,7 @@
"description": "Navigate to the About page. This is the paragraph 3" "description": "Navigate to the About page. This is the paragraph 3"
}, },
"about.page.paragraph.4": { "about.page.paragraph.4": {
"defaultMessage": "CEQ will update the tool each year based on public feedback, research, and the availability of new data. The current version of the tool is version {version}. <link1>Sign-up</link1> for updates from CEQ.", "defaultMessage": "CEQ will continue to update the tool, after reviewing public feedback, research, and the availability of new data. The current version of the tool is version {version}.",
"description": "Navigate to the About page. This is the paragraph 4" "description": "Navigate to the About page. This is the paragraph 4"
}, },
"about.page.paragraph.5": { "about.page.paragraph.5": {
@ -104,7 +104,7 @@
"description": "Navigate to the About page. This is the sub heading of Using the data" "description": "Navigate to the About page. This is the sub heading of Using the data"
}, },
"about.page.use.data.paragraph": { "about.page.use.data.paragraph": {
"defaultMessage": "The tool's data is available for <link1>download</link1>. This data can be used to filter by state or county.", "defaultMessage": "The tools data is available for <link1>download</link1>. This data can be used to filter by state or county.",
"description": "Navigate to the About page. This is the paragraph 4" "description": "Navigate to the About page. This is the paragraph 4"
}, },
"about.page.use.data.tutorial": { "about.page.use.data.tutorial": {
@ -127,9 +127,17 @@
"defaultMessage": "Download new <link1>technical support</link1> and other documentation and <link2>send feedback</link2>.", "defaultMessage": "Download new <link1>technical support</link1> and other documentation and <link2>send feedback</link2>.",
"description": "Alert title that appears at the top of pages." "description": "Alert title that appears at the top of pages."
}, },
"common.pages.alerts.banner.beta.content": { "common.pages.alerts.banner.update.content.large": {
"defaultMessage": "<bold1>This tool has been updated.</bold1> The 1.0 version of the tool was released on {relDate}.", "defaultMessage": "The Council on Environmental Quality (CEQ) made the 2.0 version of the tool available on {releaseDate}.",
"description": "Alert body that appears on landing page." "description": "Alert body that appears at the top of pages."
},
"common.pages.alerts.banner.update.content.small": {
"defaultMessage": "<bold>This tool has been updated.</bold> The 2.0 version of the tool was released on {relDate}.",
"description": "Alert body that appears at the top of pages."
},
"common.pages.alerts.banner.update.heading.large": {
"defaultMessage": "Version 2.0 of the tool is now available",
"description": "Alert heading that appears at the top of pages"
}, },
"common.pages.alerts.census.tract.title": { "common.pages.alerts.census.tract.title": {
"defaultMessage": "Additional documentation now available", "defaultMessage": "Additional documentation now available",
@ -256,7 +264,7 @@
}, },
"common.pages.tsd.url": { "common.pages.tsd.url": {
"defaultMessage": "https://static-data-screeningtool.geoplatform.gov/data-pipeline/data/score/downloadable/cejst_technical_support_document.pdf", "defaultMessage": "https://static-data-screeningtool.geoplatform.gov/data-pipeline/data/score/downloadable/cejst_technical_support_document.pdf",
"description": "Navigate to the Alerts on any page. This will be the link to the techinical support document." "description": "Navigate to the Alerts on any page. This will be the link to the technical support document."
}, },
"contact.page.census.tract.feedback.para3": { "contact.page.census.tract.feedback.para3": {
"defaultMessage": "The best way to contact the Council on Environmental Quality (CEQ) is by filling out <link1>this form</link1>.", "defaultMessage": "The best way to contact the Council on Environmental Quality (CEQ) is by filling out <link1>this form</link1>.",
@ -631,7 +639,7 @@
"description": "Navigate to the Downloads page, this will be the view of change log" "description": "Navigate to the Downloads page, this will be the view of change log"
}, },
"explore.map.page.description.1": { "explore.map.page.description.1": {
"defaultMessage": "Census tracts that are overburdened and underserved are highlighted as being disadvantaged on the map. Federally Recognized Tribes, including Alaska Native Villages, are also considered disadvantaged communities.", "defaultMessage": "Census tracts that are marginalized by underinvestment and overburdened by pollution are highlighted as being disadvantaged on the map. Federally Recognized Tribes, including Alaska Native Villages, are considered disadvantaged communities, whether or not they have land.",
"description": "On the explore the map page, the first description of the page" "description": "On the explore the map page, the first description of the page"
}, },
"explore.map.page.description.2": { "explore.map.page.description.2": {
@ -1511,140 +1519,84 @@
"description": "Navigate to the public engagement page, this will be the text for floating action button" "description": "Navigate to the public engagement page, this will be the text for floating action button"
}, },
"faqs.page.Q1": { "faqs.page.Q1": {
"defaultMessage": "Q: What is the Climate and Economic Justice Screening Tool (CEJST)?", "defaultMessage": "What is the Climate and Economic Justice Screening Tool (CEJST)?",
"description": "Navigate to the FAQs page, this will be Q1" "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": { "faqs.page.Q12": {
"defaultMessage": "Q: How is the Climate and Economic Justice Screening Tool (CEJST) different from other Federal environmental screening tools, such as EJScreen?", "defaultMessage": "How is the Climate and Economic Justice Screening Tool (CEJST) different from other Federal environmental screening tools, such as EJScreen?",
"description": "Navigate to the FAQs page, this will be Q12" "description": "Navigate to the FAQs page, this will be Q12"
}, },
"faqs.page.Q13": { "faqs.page.Q13": {
"defaultMessage": "Q: How is this tool different from state screening tools?", "defaultMessage": "How is this tool different from state screening tools?",
"description": "Navigate to the FAQs page, this will be Q13" "description": "Navigate to the FAQs page, this will be Q13"
}, },
"faqs.page.Q14": { "faqs.page.Q14": {
"defaultMessage": "Q: How were the White House Environmental Justice Advisory Council (WHEJAC) recommendations used for this tool?", "defaultMessage": "How were the White House Environmental Justice Advisory Councils (WHEJAC) recommendations considered for this tool?",
"description": "Navigate to the FAQs page, this will be Q14" "description": "Navigate to the FAQs page, this will be Q14"
}, },
"faqs.page.Q15": { "faqs.page.Q15": {
"defaultMessage": "Q: Can the public provide feedback on this tool?", "defaultMessage": "Can the public provide feedback on this tool?",
"description": "Navigate to the FAQs page, this will be Q15" "description": "Navigate to the FAQs page, this will be Q15"
}, },
"faqs.page.Q16": { "faqs.page.Q16": {
"defaultMessage": "Q: Why was the CEJST initially released in a beta version?", "defaultMessage": "When was the CEJST released?",
"description": "Navigate to the FAQs page, this will be Q16" "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": { "faqs.page.Q18": {
"defaultMessage": "Q. How does the Council on Environmental Quality (CEQ) keep people informed about the tool?", "defaultMessage": "How does the Council on Environmental Quality (CEQ) keep people informed about the tool?",
"description": "Navigate to the FAQs page, this will be Q18" "description": "Navigate to the FAQs page, this will be Q18"
}, },
"faqs.page.Q19": { "faqs.page.Q19": {
"defaultMessage": "Q: What files and documentation are available from the tool?", "defaultMessage": "What files and documentation are available from the tool?",
"description": "Navigate to the FAQs page, this will be Q19" "description": "Navigate to the FAQs page, this will be Q19"
}, },
"faqs.page.Q2": { "faqs.page.Q2": {
"defaultMessage": "Q: How does the tool identify and define communities?", "defaultMessage": "How does the tool identify and define communities?",
"description": "Navigate to the FAQs page, this will be Q2" "description": "Navigate to the FAQs page, this will be Q2"
}, },
"faqs.page.Q20": { "faqs.page.Q20": {
"defaultMessage": "Q: How does the tools shapefile work?", "defaultMessage": "How do the tools shapefiles work?",
"description": "Navigate to the FAQs page, this will be Q20" "description": "Navigate to the FAQs page, this will be Q20"
}, },
"faqs.page.Q21": {
"defaultMessage": "Why are some tracts disadvantaged because they were disadvantaged in version 1.0 of the tool?",
"description": "Navigate to the FAQs page, this will be Q21"
},
"faqs.page.Q22": {
"defaultMessage": "Why are some tracts disadvantaged in certain U.S. Territories because they only meet the low income threshold?",
"description": "Navigate to the FAQs page, this will be Q22"
},
"faqs.page.Q3": { "faqs.page.Q3": {
"defaultMessage": "Q: Is race included in the tools methodology?", "defaultMessage": "Is race included in the tools methodology?",
"description": "Navigate to the FAQs page, this will be Q3" "description": "Navigate to the FAQs page, this will be Q3"
}, },
"faqs.page.Q4": { "faqs.page.Q4": {
"defaultMessage": "Q: Does the Climate and Economic Justice Screening Tool (CEJST) include the U.S. territories?", "defaultMessage": "Does the tool include the U.S. territories?",
"description": "Navigate to the FAQs page, this will be Q4" "description": "Navigate to the FAQs page, this will be Q4"
}, },
"faqs.page.Q5": { "faqs.page.Q5": {
"defaultMessage": "Q: Does the tool include Tribal Nations?", "defaultMessage": "Does the tool include Tribal Nations?",
"description": "Navigate to the FAQs page, this will be Q5" "description": "Navigate to the FAQs page, this will be Q5"
}, },
"faqs.page.Q6": { "faqs.page.Q6": {
"defaultMessage": "Q: Why do some areas of the map have different shades?", "defaultMessage": "Why do some areas of the map have different shades?",
"description": "Navigate to the FAQs page, this will be Q6" "description": "Navigate to the FAQs page, this will be Q6"
}, },
"faqs.page.Q7": { "faqs.page.Q7": {
"defaultMessage": "Q: Why does the tool have “partially disadvantaged” census tracts?", "defaultMessage": "Why does the tool have “partially disadvantaged” census tracts?",
"description": "Navigate to the FAQs page, this will be Q7" "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 tool 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": { "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 and combines that information together into indices. The EPA, Federal agencies, and state and local governments will continue to use EJScreen to understand and analyze for environmental and EJ issues. For example, EPA uses <link1> EJScreen </link1> to:", "defaultMessage": "The CEJST uses lessons learned from the EPA's EJScreen. EJScreen is an environmental justice mapping and screening tool. EJScreen shows some environmental and demographic information and combines that information together into indices.",
"description": "Navigate to the FAQs page, this will be an answer, Q12_P1" "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": { "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.", "defaultMessage": "In contrast, the CEJST helps to identify geographically defined disadvantaged communities that are marginalized by underinvestment and overburdened by pollution.",
"description": "Navigate to the FAQs page, this will be an answer, Q12_P2" "description": "Navigate to the FAQs page, this will be an answer, Q12_P2"
}, },
"faqs.page.answers.Q12_P3": { "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.Q12_P4": {
"defaultMessage": "<link1>This chart</link1> is helpful for understanding how the CEJST differs from some of the other Federal environmental screening tools.", "defaultMessage": "<link1>This chart</link1> is helpful for understanding how the CEJST differs from some of the other Federal environmental screening tools.",
"description": "Navigate to the FAQs page, this will be an answer, Q12_P4" "description": "Navigate to the FAQs page, this will be an answer, Q12_P3"
}, },
"faqs.page.answers.Q13_P1": { "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.", "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.",
@ -1655,7 +1607,7 @@
"description": "Navigate to the FAQs page, this will be an answer, Q13_P2" "description": "Navigate to the FAQs page, this will be an answer, Q13_P2"
}, },
"faqs.page.answers.Q14": { "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.", "defaultMessage": "The WHEJAC provided <link1>recommendations</link1> on the Climate and Economic Justice Screening Tool (CEJST). The CEJST versions 1.0 and 2.0 include components that were informed by many of these recommendations.",
"description": "Navigate to the FAQs page, this will be an answer, Q14" "description": "Navigate to the FAQs page, this will be an answer, Q14"
}, },
"faqs.page.answers.Q15_P1": { "faqs.page.answers.Q15_P1": {
@ -1679,48 +1631,28 @@
"description": "Navigate to the FAQs page, this will be an answer, Q15_P1_4" "description": "Navigate to the FAQs page, this will be an answer, Q15_P1_4"
}, },
"faqs.page.answers.Q16": { "faqs.page.answers.Q16": {
"defaultMessage": "CEQ launched a beta or draft version of the CEJST on February 18, 2022 with support from the U.S. Digital Service (USDS), and in collaboration with other Federal agencies and departments. The CEJST was released in a beta version in order to seek <link1>feedback</link1> from Federal agencies, Tribal Nations, State and local governments, Members of Congress, environmental justice stakeholders, and the public. The 90 day public comment period <link2>closed</link2> on May 25, 2022. CEQ and the USDS hosted several <link2>public training</link2> sessions on the beta version of the CEJST. All of this feedback on the beta version of the CEJST helped to inform the release of version 1.0 of the CEJST.", "defaultMessage": "CEQ launched a beta—or draft—version of the CEJST in February 2022 with support from the U.S. Digital Service (USDS), and in collaboration with other Federal agencies and departments. The CEJST was released in a beta version in order to seek <link1>feedback</link1> from Federal agencies, Tribal Nations, State and local governments, Members of Congress, environmental justice stakeholders, and the public. The 90 day public comment period <link2>closed</link2> on May 25, 2022. CEQ and the USDS hosted several <link3>public training</link3> sessions on the beta version of the CEJST. All of this feedback on the beta version of the CEJST helped to inform the release of version 1.0 of the CEJST.",
"description": "Navigate to the FAQs page, this will be an answer, Q16" "description": "Navigate to the FAQs page, this will be an answer, Q16"
}, },
"faqs.page.answers.Q17_P1": { "faqs.page.answers.Q16_P2": {
"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 <link1>November, 2022</link1>. The tool is no longer in beta.", "defaultMessage": "The 1.0 version was released in <link1>{version1Release}</link1>. The current version, version {currentVersion}, was released in {currentVersionRelease}.",
"description": "Navigate to the FAQs page, this will be an answer, Q17_P1" "description": "Navigate to the FAQs page, this will be an answer, Q16_P2"
},
"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": { "faqs.page.answers.Q18": {
"defaultMessage": "<link1>Sign-up</link1> to receive updates on the Climate and Economic Justice Screening Tool (CEJST) and other environmental justice news from CEQ.", "defaultMessage": "<link1>Sign up</link1> 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" "description": "Navigate to the FAQs page, this will be an answer, Q18"
}, },
"faqs.page.answers.Q19": { "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.", "defaultMessage": "The Climate and Economic Justice Screening Tool (CEJST) has <link1>downloads</link1> for the current version available. Spreadsheets (.xlxs) and (.csv) contain the tools definitions and data. These 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. Information from previous versions of the tool is available on the <link2>previous versions</link2> page.",
"description": "Navigate to the FAQs page, this will be an answer, Q19" "description": "Navigate to the FAQs page, this will be an answer, Q19"
}, },
"faqs.page.answers.Q1_P1": { "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.", "defaultMessage": "The CEJST is a geospatial mapping tool that identifies 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" "description": "Navigate to the FAQs page, this will be an answer, Q1_P1"
}, },
"faqs.page.answers.Q1_P2": { "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": "<link1>Memorandum</link1> on using the CEJST for the Justice40 Initiative",
"description": "Navigate to the FAQs page, this will be an answer, Q1_P3_1"
},
"faqs.page.answers.Q1_P3_2": {
"defaultMessage": "<link1>Instructions</link1> 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.", "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" "description": "Navigate to the FAQs page, this will be an answer, Q1_P2"
}, },
"faqs.page.answers.Q20_P1": { "faqs.page.answers.Q20_P1": {
"defaultMessage": "The tools shapefile can be uploaded into other mapping programs such as Esri.", "defaultMessage": "The tools shapefile can be uploaded into other mapping programs such as Esri.",
@ -1730,16 +1662,24 @@
"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.", "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" "description": "Navigate to the FAQs page, this will be an answer, Q20_P2"
}, },
"faqs.page.answers.Q21": {
"defaultMessage": "These tracts that have been \"grandfathered\" for at least two years. This helps to reduce disruption and to support a smooth transition for agencies, applicants, and the public as new versions of the tool are released. The tools <link1>instructions</link1> have more information about time-limited grandfathering.",
"description": "Navigate to the FAQs page, this will be an answer, Q21"
},
"faqs.page.answers.Q22": {
"defaultMessage": "Because some nationally-consistent datasets on indicators of environmental burden used in the tool do not currently include data from certain U.S. Territories, tracts in these Territories are considered disadvantaged if they meet the low income threshold.",
"description": "Navigate to the FAQs page, this will be an answer, Q22"
},
"faqs.page.answers.Q2_P1": { "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.", "defaultMessage": "The CEJST uses datasets that are indicators of burden related to climate change and the environment to assess communities that are disadvantaged by these burdens. They are also related to health and lack of economic opportunity.",
"description": "Navigate to the FAQs page, this will be an answer, Q2_P1" "description": "Navigate to the FAQs page, this will be an answer, Q2_P1"
}, },
"faqs.page.answers.Q2_P2": { "faqs.page.answers.Q2_P2": {
"defaultMessage": "The tool highlights disadvantaged communities across all 50 states, the District of Columbia, and the U.S. territories. Communities are considered disadvantaged:", "defaultMessage": "The tool highlights disadvantaged communities across all 50 states, the District of Columbia, and the U.S. territories. Communities are shown on the map as disadvantaged:",
"description": "Navigate to the FAQs page, this will be an answer, Q2_P2" "description": "Navigate to the FAQs page, this will be an answer, Q2_P2"
}, },
"faqs.page.answers.Q2_P2_1": { "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", "defaultMessage": "If they are in a census tract that meets the threshold 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" "description": "Navigate to the FAQs page, this will be an answer, Q2_P2_1"
}, },
"faqs.page.answers.Q2_P2_2": { "faqs.page.answers.Q2_P2_2": {
@ -1747,13 +1687,17 @@
"description": "Navigate to the FAQs page, this will be an answer, Q2_P2_2" "description": "Navigate to the FAQs page, this will be an answer, Q2_P2_2"
}, },
"faqs.page.answers.Q2_P3": { "faqs.page.answers.Q2_P3": {
"defaultMessage": "Not all disadvantaged communities can be shown on the map. Some communities 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.", "defaultMessage": "Not all disadvantaged communities can be shown on the map. The map shows point locations for Alaska Native Villages and landless Federally Recognized Tribes in the lower 48 states. Some communities do not live in just one place. This tool focuses on identifying communities that can be geographically defined.",
"description": "Navigate to the FAQs page, this will be an answer, Q2_P3" "description": "Navigate to the FAQs page, this will be an answer, Q2_P3"
}, },
"faqs.page.answers.Q2_P4": { "faqs.page.answers.Q2_P4": {
"defaultMessage": "The tool uses census tracts. Census tracts are small units of geography. Census tract boundaries for <link1>statistical areas</link1> are determined by the U.S. Census Bureau once every ten years. The tool utilizes the census tract boundaries from 2010. This was chosen primarily because many of the data sources in the tool currently use the 2010 census boundaries.", "defaultMessage": "The tool uses census tracts. Census tracts are small units of geography. Census tract boundaries for <link1>statistical areas</link1> are determined by the U.S. Census Bureau once every ten years. The tool utilizes the census tract boundaries from 2010. Tracts that were identified as disadvantaged in the 1.0 version of the tool remain disadvantaged in the 2.0 version of the tool.",
"description": "Navigate to the FAQs page, this will be an answer, Q2_P4" "description": "Navigate to the FAQs page, this will be an answer, Q2_P4"
}, },
"faqs.page.answers.Q2_P5": {
"defaultMessage": "Due to limited data availability, tracts in American Samoa, Guam, the Northern Mariana Islands, and the U.S. Virgin Islands are considered disadvantaged if they meet the low income threshold only.",
"description": "Navigate to the FAQs page, this will be an answer, Q2_P5"
},
"faqs.page.answers.Q3_P1": { "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 displays data about race and age only to provide information when a census tract is selected.", "defaultMessage": "No. The Climate and Economic Justice Screening Tool (CEJST) does not use racial demographics in its methodology. The current version of the tool displays data about race and age only to provide information when a census tract is selected.",
"description": "Navigate to the FAQs page, this will be an answer, Q3_P1" "description": "Navigate to the FAQs page, this will be an answer, Q3_P1"
@ -1767,7 +1711,7 @@
"description": "Navigate to the FAQs page, this will be an answer, Q3_P3" "description": "Navigate to the FAQs page, this will be an answer, Q3_P3"
}, },
"faqs.page.answers.Q4_P1": { "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.", "defaultMessage": "Yes, version {currentVersion} 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" "description": "Navigate to the FAQs page, this will be an answer, Q4_P1"
}, },
"faqs.page.answers.Q4_P2": { "faqs.page.answers.Q4_P2": {
@ -1775,11 +1719,11 @@
"description": "Navigate to the FAQs page, this will be an answer, Q4_P2" "description": "Navigate to the FAQs page, this will be an answer, Q4_P2"
}, },
"faqs.page.answers.Q4_P3": { "faqs.page.answers.Q4_P3": {
"defaultMessage": "<boldtag>American Samoa, Guam, the Northern Mariana Islands, and the U.S. Virgin Islands:</boldtag> For these U.S. territories, the tool uses the following data: unemployment, poverty, low median income, and high school education. These burdens are in the workforce development category.", "defaultMessage": "<boldtag>American Samoa, Guam, the Northern Mariana Islands, and the U.S. Virgin Islands:</boldtag> For these U.S. Territories, the tool uses the following data: unemployment, poverty, low median income, and high school education. These burdens are in the workforce development category. Due to limited data availability, tracts in these U.S. Territories are considered disadvantaged if they meet the low income only.",
"description": "Navigate to the FAQs page, this will be an answer, Q4_P3" "description": "Navigate to the FAQs page, this will be an answer, Q4_P3"
}, },
"faqs.page.answers.Q5_P1": { "faqs.page.answers.Q5_P1": {
"defaultMessage": "To respect Tribal sovereignty and self-government and to fulfill Federal trust and treaty responsibilities to Tribal Nations, land within the boundaries of Federally Recognized tribes are highlighted as disadvantaged on the map. Alaska Native Villages are included as point locations that are smaller than census tracts. The boundaries of census tracts and the lands of Federally Recognized Tribes are different.", "defaultMessage": "To respect Tribal sovereignty and self-government and to fulfill Federal trust and treaty responsibilities to Tribal Nations, land within the boundaries of Federally Recognized Tribes are highlighted as disadvantaged on the map. Alaska Native Villages are included as point locations that are smaller than census tracts. The boundaries of census tracts and the lands of Federally Recognized Tribes are different.",
"description": "Navigate to the FAQs page, this will be an answer, Q5_P1" "description": "Navigate to the FAQs page, this will be an answer, Q5_P1"
}, },
"faqs.page.answers.Q5_P2": { "faqs.page.answers.Q5_P2": {
@ -1787,7 +1731,7 @@
"description": "Navigate to the FAQs page, this will be an answer, Q5_P2" "description": "Navigate to the FAQs page, this will be an answer, Q5_P2"
}, },
"faqs.page.answers.Q5_P2_1": { "faqs.page.answers.Q5_P2_1": {
"defaultMessage": "This decision was made after meaningful and robust consultation with Tribal Nations. This approach is consistent with CEQs <link1>Action Plan</link1> for Consultation and Coordination with Tribal Nations, President Bidens <link3>Memorandum</link3> on Tribal Consultation and Strengthening Nation-to-Nation Consultation, and <link2>Executive Order 13175</link2> on Consultation and Coordination With Indian Tribal Governments.", "defaultMessage": "This decision was made after meaningful and robust consultation with Tribal Nations. This approach is consistent with CEQs <link1>Action Plan</link1> for Consultation and Coordination with Tribal Nations, the <link3>Memorandum</link3> on Tribal Consultation and Strengthening Nation-to-Nation Consultation, and <link2>Executive Order 13175</link2> on Consultation and Coordination With Indian Tribal Governments.",
"description": "Navigate to the FAQs page, this will be an answer, Q5_P2_1" "description": "Navigate to the FAQs page, this will be an answer, Q5_P2_1"
}, },
"faqs.page.answers.Q6_P1": { "faqs.page.answers.Q6_P1": {
@ -1803,57 +1747,13 @@
"description": "Navigate to the FAQs page, this will be an answer, Q6_P3" "description": "Navigate to the FAQs page, this will be an answer, Q6_P3"
}, },
"faqs.page.answers.Q6_P4": { "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 within the boundaries of Federally Recognized Tribes.", "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 contain land within the boundaries of Federally Recognized Tribes.",
"description": "Navigate to the FAQs page, this will be an answer, Q6_P4" "description": "Navigate to the FAQs page, this will be an answer, Q6_P4"
}, },
"faqs.page.answers.Q7": { "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 land within the boundaries of Federally Recognized Tribes, then the parts of the tract that contain the land of Tribes are considered disadvantaged. The tool will display this type of census tract as “partially disadvantaged.”", "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 land within the boundaries of Federally Recognized Tribes, then the parts of the tract that contain the land of Tribes 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" "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": "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": { "faqs.page.coming.soon.text": {
"defaultMessage": "Coming Soon!", "defaultMessage": "Coming Soon!",
"description": "Navigate to the FAQs page, this will be the page coming soon text" "description": "Navigate to the FAQs page, this will be the page coming soon text"
@ -1975,7 +1875,7 @@
"description": "Navigate to the Methodology page. This is the description text for low income" "description": "Navigate to the Methodology page. This is the description text for low income"
}, },
"methodology.page.category.census.tract.note.text": { "methodology.page.category.census.tract.note.text": {
"defaultMessage": "<boldtag>Note: </boldtag>The demographics are included as information only and are not considered as a part of the tool's methodology.", "defaultMessage": "<boldtag>Note: </boldtag>The demographics are included as information only and are not considered as a part of the tools methodology.",
"description": "Navigate to the Methodology page. This is the note text for low life expectancy" "description": "Navigate to the Methodology page. This is the note text for low life expectancy"
}, },
"methodology.page.category.diabetes.description.text": { "methodology.page.category.diabetes.description.text": {
@ -2051,7 +1951,7 @@
"description": "Navigate to the Methodology page. This is the note text for linguistic.iso" "description": "Navigate to the Methodology page. This is the note text for linguistic.iso"
}, },
"methodology.page.category.low.hist.underinvestectancy.description.text": { "methodology.page.category.low.hist.underinvestectancy.description.text": {
"defaultMessage": "Census tracts that experienced historic underinvestment based on redlining maps created by the federal governments Home Owners Loan Corporation (HOLC) between 1935 and 1940. The tool uses the National Community Reinvestment Coalitions <link1>methodology</link1> for converting boundaries in the HOLC maps to census tracts. Census tracts meet the threshold when they have a score of 3.25 or more out of 4.", "defaultMessage": "Census tracts that experienced historic underinvestment based on redlining maps created by the Federal governments Home Owners Loan Corporation (HOLC) between 1935 and 1940. The tool uses the National Community Reinvestment Coalitions <link1>methodology</link1> for converting boundaries in the HOLC maps to census tracts. Census tracts meet the threshold when they have a score of 3.25 or more out of 4.",
"description": "Navigate to the Methodology page. This is the description text for Historic Underinvestment" "description": "Navigate to the Methodology page. This is the description text for Historic Underinvestment"
}, },
"methodology.page.category.low.hist.underinvestectancy.note.text": { "methodology.page.category.low.hist.underinvestectancy.note.text": {
@ -2059,7 +1959,7 @@
"description": "Navigate to the Methodology page. This is the note text for Historic Underinvestment" "description": "Navigate to the Methodology page. This is the note text for Historic Underinvestment"
}, },
"methodology.page.category.low.income.description.text": { "methodology.page.category.low.income.description.text": {
"defaultMessage": "Percent of a census tract's population in households where household income is at or below 200% of the Federal poverty level, not including students enrolled in higher education.", "defaultMessage": "Percent of a census tracts population in households where household income is at or below 200% of the Federal poverty level, not including students enrolled in higher education.",
"description": "Navigate to the Methodology page. This is the description text for low income" "description": "Navigate to the Methodology page. This is the description text for low income"
}, },
"methodology.page.category.low.life.expectancy.description.text": { "methodology.page.category.low.life.expectancy.description.text": {
@ -2122,12 +2022,16 @@
"defaultMessage": "<link1>American Community Survey</link1> from {date15_19}", "defaultMessage": "<link1>American Community Survey</link1> from {date15_19}",
"description": "Navigate to the Methodology page. This is the source link for Census ACS" "description": "Navigate to the Methodology page. This is the source link for Census ACS"
}, },
"methodology.page.category.source.census.link.20": {
"defaultMessage": "<link1>Decennial Census</link1> from {date20}",
"description": "Navigate to the Methodology page. This is the source link for Decennial Census"
},
"methodology.page.category.source.doe.lead.link": { "methodology.page.category.source.doe.lead.link": {
"defaultMessage": "<link1>LEAD Tool</link1> from {date18}", "defaultMessage": "<link1>LEAD Tool</link1> from {date18}",
"description": "Navigate to the Methodology page. This is the source link for DOE FEMA" "description": "Navigate to the Methodology page. This is the source link for DOE FEMA"
}, },
"methodology.page.category.source.dot.epa.link": { "methodology.page.category.source.dot.epa.link": {
"defaultMessage": "<link1>Traffic data</link1> from {date17} as compiled by EPA's EJScreen", "defaultMessage": "<link1>Traffic data</link1> from {date17} as compiled by EPAs EJScreen",
"description": "Navigate to the Methodology page. This is the source link for DOT EPA" "description": "Navigate to the Methodology page. This is the source link for DOT EPA"
}, },
"methodology.page.category.source.epa.cerclis.link": { "methodology.page.category.source.epa.cerclis.link": {
@ -2135,7 +2039,7 @@
"description": "Navigate to the Methodology page. This is the source link for EPA CERCLIS" "description": "Navigate to the Methodology page. This is the source link for EPA CERCLIS"
}, },
"methodology.page.category.source.epa.nata.link": { "methodology.page.category.source.epa.nata.link": {
"defaultMessage": "<link1>National Air Toxics Assessment (NATA)</link1> from {date14} as compiled by EPA's EJScreen", "defaultMessage": "<link1>National Air Toxics Assessment (NATA)</link1> from {date14} as compiled by EPAs EJScreen",
"description": "Navigate to the Methodology page. This is the source link for EPA NATA" "description": "Navigate to the Methodology page. This is the source link for EPA NATA"
}, },
"methodology.page.category.source.epa.oar.link": { "methodology.page.category.source.epa.oar.link": {
@ -2151,7 +2055,7 @@
"description": "Navigate to the Methodology page. This is the source link for EPA RSEI" "description": "Navigate to the Methodology page. This is the source link for EPA RSEI"
}, },
"methodology.page.category.source.epa.tsdf.link": { "methodology.page.category.source.epa.tsdf.link": {
"defaultMessage": "<link1>Treatment, Storage, and Disposal Facilities (TSDF) data</link1> from {date20} calculated from EPA's RCRA database as compiled by EPA's EJScreen", "defaultMessage": "<link1>Treatment, Storage, and Disposal Facilities (TSDF) data</link1> from {date20} calculated from EPAs RCRA database as compiled by EPAs EJScreen",
"description": "Navigate to the Methodology page. This is the source link for EPA TSDF" "description": "Navigate to the Methodology page. This is the source link for EPA TSDF"
}, },
"methodology.page.category.source.fema.link": { "methodology.page.category.source.fema.link": {
@ -2167,7 +2071,7 @@
"description": "Navigate to the Methodology page. This is the source link for CDC Sleep" "description": "Navigate to the Methodology page. This is the source link for CDC Sleep"
}, },
"methodology.page.category.source.holc.link": { "methodology.page.category.source.holc.link": {
"defaultMessage": "<link1>Dataset of formerly redlined areas</link1> using digitized maps from the Home Owners Loan Corporation (HOLC), using {date10} census boundaries", "defaultMessage": "<link1>Dataset of formerly redlined areas</link1> using digitized maps from the Home Owners Loan Corporation (HOLC), using {date10} census boundaries",
"description": "Navigate to the Methodology page. This is the source link for CDC Sleep" "description": "Navigate to the Methodology page. This is the source link for CDC Sleep"
}, },
"methodology.page.category.source.hud.link": { "methodology.page.category.source.hud.link": {
@ -2183,7 +2087,7 @@
"description": "Navigate to the Methodology page. This is the source link for Transportation burdens" "description": "Navigate to the Methodology page. This is the source link for Transportation burdens"
}, },
"methodology.page.category.source.ust.find.link": { "methodology.page.category.source.ust.find.link": {
"defaultMessage": "Calculated from EPAs <link1>UST Finder</link1> from {date21} as compiled by EPA's EJScreen", "defaultMessage": "Calculated from EPAs <link1>UST Finder</link1> from {date21} as compiled by EPAs EJScreen",
"description": "Navigate to the Methodology page. This is the source link for UST Find" "description": "Navigate to the Methodology page. This is the source link for UST Find"
}, },
"methodology.page.category.traffic.vol.description.text": { "methodology.page.category.traffic.vol.description.text": {
@ -2219,7 +2123,7 @@
"description": "Navigate to the Methodology page. This is the description text for exp bld loss rate" "description": "Navigate to the Methodology page. This is the description text for exp bld loss rate"
}, },
"methodology.page.category.workforce.dev.description.text": { "methodology.page.category.workforce.dev.description.text": {
"defaultMessage": "Low median income calculated as a share of the areas median income.", "defaultMessage": "Low median income is calculated as the median income of the tract divided by the income in the Metropolitan Statistical Area, unless the tract is a rural tract. For rural tracts, it is calculated as a percent of the states median income.",
"description": "Navigate to the Methodology page. This is the description text for workforce dev" "description": "Navigate to the Methodology page. This is the description text for workforce dev"
}, },
"methodology.page.dataset.card.availableFor.ALL_ISLDS": { "methodology.page.dataset.card.availableFor.ALL_ISLDS": {
@ -2439,7 +2343,7 @@
"description": "Navigate to the Methodology page. This is the section heading of which datasets are used in cumulative score" "description": "Navigate to the Methodology page. This is the section heading of which datasets are used in cumulative score"
}, },
"methodology.page.datasetContainer.info": { "methodology.page.datasetContainer.info": {
"defaultMessage": "The tool's datasets are public and consistent nationwide. They come from different sources and are high quality. The Council on Environmental Quality (CEQ) chose them based on relevance, availability, and quality. They identify climate, environmental, and other burdens on communities.", "defaultMessage": "The tools datasets are public and consistent nationwide. They come from different sources and are high quality. The Council on Environmental Quality (CEQ) chose them based on relevance, availability, and quality. They identify climate, environmental, and other burdens on communities.",
"description": "Navigate to the Methodology page. This is the description of the dataset section" "description": "Navigate to the Methodology page. This is the description of the dataset section"
}, },
"methodology.page.datasets.all.except.workforce.used.in.text": { "methodology.page.datasets.all.except.workforce.used.in.text": {
@ -2547,9 +2451,25 @@
"description": "Navigate to the methodology page. This is the methodology paragraph 1, bullet 1" "description": "Navigate to the methodology page. This is the methodology paragraph 1, bullet 1"
}, },
"methodology.page.paragraph.1.bullet.2": { "methodology.page.paragraph.1.bullet.2": {
"defaultMessage": "If they are on land within the boundaries of Federally Recognized Tribes", "defaultMessage": "If they are on land within the boundaries of Federally Recognized Tribes.",
"description": "Navigate to the methodology page. This is the methodology paragraph 1, bullet 2" "description": "Navigate to the methodology page. This is the methodology paragraph 1, bullet 2"
}, },
"methodology.page.paragraph.1.bullet.3": {
"defaultMessage": "If the census tract ID was identified as disadvantaged in version 1.0, then the census tract is considered disadvantaged in version 2.0.",
"description": "Navigate to the methodology page. This is the methodology paragraph 1, bullet 3"
},
"methodology.page.paragraph.1.bullet.4": {
"defaultMessage": "If the tract is a new tract in 2020, then the percentage of land that it shared, if any, with a previously disadvantaged tract will be considered disadvantaged.",
"description": "Navigate to the methodology page. This is the methodology paragraph 1, bullet 4"
},
"methodology.page.paragraph.1.bullet.5": {
"defaultMessage": "Additionally, census tracts in certain U.S. Territories are considered disadvantaged if they meet the low income threshold only. This is because these Territories are not included in each of the nationally-consistent datasets on environmental and climate burdens currently used in the tool.",
"description": "Navigate to the methodology page. This is the methodology paragraph 1, bullet 5"
},
"methodology.page.paragraph.2": {
"defaultMessage": "The tool uses datasets as indicators of burdens. The burdens are organized into categories. A community is highlighted as disadvantaged on the CEJST map if it is in a census tract that is (1) at or above the threshold for one or more environmental, climate, or other burdens, and (2) at or above the threshold for an associated socioeconomic burden.",
"description": "Navigate to the methodology page. This is the methodology paragraph 2"
},
"methodology.page.paragraph.3": { "methodology.page.paragraph.3": {
"defaultMessage": "The tool uses datasets as indicators of burdens. The burdens are organized into categories. A community is highlighted as disadvantaged on the CEJST map if it is in a census tract that is (1) at or above the threshold for one or more environmental, climate, or other burdens, and (2) at or above the threshold for an associated socioeconomic burden.", "defaultMessage": "The tool uses datasets as indicators of burdens. The burdens are organized into categories. A community is highlighted as disadvantaged on the CEJST map if it is in a census tract that is (1) at or above the threshold for one or more environmental, climate, or other burdens, and (2) at or above the threshold for an associated socioeconomic burden.",
"description": "Navigate to the methodology page. This is the methodology paragraph 3" "description": "Navigate to the methodology page. This is the methodology paragraph 3"

View file

@ -1,7 +1,7 @@
{ {
"about.page.getInvolved.title": "Participe", "about.page.getInvolved.title": "Participe",
"about.page.how.to.use.para3": "Se considera que una comunidad está desfavorecida si se encuentra dentro de un distrito censal que cumple con la <link1>metodología</link1> de la herramienta o está en tierras dentro de los límites de las tribus reconocidas a nivel federal.", "about.page.how.to.use.para3": "Se considera que una comunidad está desfavorecida si se encuentra dentro de un distrito censal que cumple con la <link1>metodología</link1> de la herramienta o está en tierras dentro de los límites de las tribus reconocidas a nivel federal.",
"about.page.how.to.use.tool.para1": "La herramienta muestra información sobre las cargas que sufren las comunidades. Utiliza conjuntos de datos para identificar indicadores de cargas. La herramienta muestra estas cargas en distritos censales. Estos distritos censales son pequeñas unidades geográficas. Los límites de los distritos censales para <link1>áreas con fines estadísticos</link1> se determinan por medio de la Oficina del Censo de los Estados Unidos cada diez años. La herramienta utiliza los límites de los distritos censales de 2010. Se eligió esta opción porque muchas de las fuentes de datos de la herramienta actualmente usan los límites de dicho censo. La herramienta también muestra las tierras dentro de los límites de las tribus reconocidas a nivel federal y las ubicaciones puntuales de los pueblos nativos de Alaska.", "about.page.how.to.use.tool.para1": "La herramienta muestra información sobre las cargas que sufren las comunidades. Utiliza conjuntos de datos para identificar indicadores de cargas. La herramienta muestra estas cargas en distritos censales. Estos distritos censales son pequeñas unidades geográficas. Los límites de los distritos censales para <link1>áreas con fines estadísticos</link1> se determinan por medio de la Oficina del Censo de los Estados Unidos cada diez años. La herramienta utiliza los límites de los distritos censales de 2020. Se eligió esta opción porque muchas de las fuentes de datos de la herramienta actualmente usan los límites de dicho censo. La herramienta también muestra las tierras dentro de los límites de las tribus reconocidas a nivel federal y las ubicaciones puntuales de los pueblos nativos de Alaska y tribus sin tierras en los 48 estados contiguos.",
"about.page.how.to.use.tool.para2": "La herramienta clasifica la mayoría de las cargas mediante el uso de percentiles. Los percentiles muestran la carga que experimenta cada distrito censal en comparación con otros distritos. Ciertas cargas utilizan porcentajes o un simple sí o no.", "about.page.how.to.use.tool.para2": "La herramienta clasifica la mayoría de las cargas mediante el uso de percentiles. Los percentiles muestran la carga que experimenta cada distrito censal en comparación con otros distritos. Ciertas cargas utilizan porcentajes o un simple sí o no.",
"about.page.how.to.use.tool.title": "Cómo usar la herramienta:", "about.page.how.to.use.tool.title": "Cómo usar la herramienta:",
"about.page.how.you.can.help.heading": "Cómo contribuir para mejorar el mapa.", "about.page.how.you.can.help.heading": "Cómo contribuir para mejorar el mapa.",
@ -15,10 +15,10 @@
"about.page.join.opensource.heading": "Súmese a la comunidad de código abierto.", "about.page.join.opensource.heading": "Súmese a la comunidad de código abierto.",
"about.page.list.item.1": "<link1>Memorándum</link1> sobre el uso del CEJST para la iniciativa Justice40.", "about.page.list.item.1": "<link1>Memorándum</link1> sobre el uso del CEJST para la iniciativa Justice40.",
"about.page.list.item.2": "<link1es>Instrucciones</link1es> para los organismos federales sobre el uso de la CEJST.", "about.page.list.item.2": "<link1es>Instrucciones</link1es> para los organismos federales sobre el uso de la CEJST.",
"about.page.paragraph.1": "En enero de 2021, el presidente Biden emitió la <link1>Orden ejecutiva 14008</link1>. Dicha orden disponía que el Consejo sobre la Calidad del Medio Ambiente (CEQ) elaborase una nueva herramienta. Esta herramienta se denomina Herramienta de evaluación de la justicia climática y económica. La herramienta tiene un mapa interactivo y utiliza conjuntos de datos que son indicadores de cargas en ocho categorías: cambio climático, energía, salud, vivienda, contaminación heredada, transporte, agua y aguas residuales, y formación de la fuerza laboral. La herramienta utiliza esta información para identificar a las comunidades que experimentan estas cargas. Éstas son las comunidades desfavorecidas porque están sobrecargadas y desatendidas.", "about.page.paragraph.1": "En enero de 2021, el presidente Biden emitió la <link1>Orden ejecutiva 14008</link1>. Dicha orden disponía que el Consejo sobre la Calidad del Medio Ambiente (CEQ) elaborase una nueva herramienta. Esta herramienta se denomina Herramienta de evaluación de la justicia climática y económica. La herramienta tiene un mapa interactivo y utiliza conjuntos de datos que son indicadores de cargas en ocho categorías: cambio climático, energía, salud, vivienda, contaminación heredada, transporte, agua y aguas residuales, y formación de la fuerza laboral. La herramienta utiliza esta información para identificar a las comunidades que experimentan estas cargas. Éstas son las comunidades desfavorecidas porque están marginadas por la falta de inversión y sobrecargadas por la contaminación.",
"about.page.paragraph.2": "Los organismos federales utilizarán la herramienta para ayudar a identificar a las comunidades desfavorecidas que se beneficiarán de los programas incluidos en la <link1>Iniciativa Justice40</link1>. La Iniciativa Justice40 pretende hacer llegar el 40% de los beneficios globales de las inversiones en clima, energía no contaminante y áreas relacionadas a las comunidades desfavorecidas.", "about.page.paragraph.2": "Los organismos federales utilizarán la herramienta para ayudar a identificar a las comunidades desfavorecidas que se beneficiarán de los programas incluidos en la <link1>Iniciativa Justice40</link1>. La Iniciativa Justice40 pretende hacer llegar el 40% de los beneficios globales de las inversiones en clima, energía no contaminante y áreas relacionadas a las comunidades desfavorecidas.",
"about.page.paragraph.3": "Los organismos federales también deberán usar lo siguiente:", "about.page.paragraph.3": "Los organismos federales también deberán usar lo siguiente:",
"about.page.paragraph.4": "El CEQ actualizará la herramienta cada año basándose en los comentarios del público, la investigación y la disponibilidad de nuevos datos. La versión actual de la herramienta es la versión {version}. <link1>Suscríbase</link1> para recibir actualizaciones del CEQ.", "about.page.paragraph.4": "El CEQ continuará actualizando la herramienta, después de revisar los comentarios del público, las investigaciones y la disponibilidad de nuevos datos. La versión actual de la herramienta es la versión {version}.",
"about.page.paragraph.5": "Próximamente estará disponible una versión en español del sitio.", "about.page.paragraph.5": "Próximamente estará disponible una versión en español del sitio.",
"about.page.send.feedback.email.link": "Contacto", "about.page.send.feedback.email.link": "Contacto",
"about.page.send.feedback.heading": "Enviar comentarios", "about.page.send.feedback.heading": "Enviar comentarios",
@ -158,7 +158,7 @@
"downloads.page.heading1.text": "Descargas", "downloads.page.heading1.text": "Descargas",
"downloads.page.title.text": "Descargas", "downloads.page.title.text": "Descargas",
"downloads.page.view.text": "Visualización", "downloads.page.view.text": "Visualización",
"explore.map.page.description.1": "Los distritos censales que están sobrecargados y desatendidos se resaltan como desfavorecidos en el mapa. Las tribus reconocidas a nivel federal, incluidos los pueblos nativos de Alaska, también se consideran comunidades desfavorecidas.", "explore.map.page.description.1": "Los distritos censales que están marginadas por la falta de inversión y sobrecargadas por la contaminación se resaltan como desfavorecidos en el mapa. Las tribus reconocidas a nivel federal, incluidos los pueblos nativos de Alaska, también se consideran comunidades desfavorecidas.",
"explore.map.page.description.2": "Al ampliarla y seleccionarla se muestra información acerca de cada uno de los distritos censales.", "explore.map.page.description.2": "Al ampliarla y seleccionarla se muestra información acerca de cada uno de los distritos censales.",
"explore.map.page.explore.data.box.body": "Descargue los datos con documentación y archivo de forma de la página <link1>Descargas</link1>.", "explore.map.page.explore.data.box.body": "Descargue los datos con documentación y archivo de forma de la página <link1>Descargas</link1>.",
"explore.map.page.explore.data.box.title": "Obtención de datos", "explore.map.page.explore.data.box.title": "Obtención de datos",
@ -378,91 +378,65 @@
"explore.map.page.under.map.note.on.tribal.nations.para.1": "Para respetar la soberanía tribal y el autogobierno y cumplir con las responsabilidades del fideicomiso federal y del tratado con las naciones tribales, las tierras dentro de los límites de las tribus reconocidas a nivel federal se designan como desfavorecidas en el mapa. Los pueblos nativos de Alaska se incluyen como ubicaciones puntuales que son más pequeñas que un distrito censal. Los límites de los distritos censales y las tierras de las tribus reconocidas a nivel federal son diferentes.", "explore.map.page.under.map.note.on.tribal.nations.para.1": "Para respetar la soberanía tribal y el autogobierno y cumplir con las responsabilidades del fideicomiso federal y del tratado con las naciones tribales, las tierras dentro de los límites de las tribus reconocidas a nivel federal se designan como desfavorecidas en el mapa. Los pueblos nativos de Alaska se incluyen como ubicaciones puntuales que son más pequeñas que un distrito censal. Los límites de los distritos censales y las tierras de las tribus reconocidas a nivel federal son diferentes.",
"explore.map.page.under.map.note.on.tribal.nations.para.2": "Esta decisión se tomó tras una consulta significativa y sólida con las naciones tribales. Esto coincide con el <link1>Plan de acción</link1> para la consulta y coordinación con las naciones tribales del CEQ, el <link3>Memorando</link3> del presidente Biden sobre la Consulta de las naciones tribales y fortalecimiento de las consultas entre naciones, y la <link2>Orden ejecutiva 13175</link2> sobre Consulta y coordinación con los gobiernos de las tribus indias.", "explore.map.page.under.map.note.on.tribal.nations.para.2": "Esta decisión se tomó tras una consulta significativa y sólida con las naciones tribales. Esto coincide con el <link1>Plan de acción</link1> para la consulta y coordinación con las naciones tribales del CEQ, el <link3>Memorando</link3> del presidente Biden sobre la Consulta de las naciones tribales y fortalecimiento de las consultas entre naciones, y la <link2>Orden ejecutiva 13175</link2> sobre Consulta y coordinación con los gobiernos de las tribus indias.",
"fab.survey.text": "Ayude a mejorar el sitio web y los datos", "fab.survey.text": "Ayude a mejorar el sitio web y los datos",
"faqs.page.Q1": "P: ¿Qué es la Herramienta de evaluación de la justicia climática y económica (CEJST)?", "faqs.page.Q1": "¿Qué es la Herramienta de evaluación de la justicia climática y económica (CEJST)?",
"faqs.page.Q10": "P: ¿Cómo se utilizará esta herramienta para fundamentar las decisiones relativas a las nuevas inversiones realizadas a través de la Ley Bipartidista de Infraestructuras y la Ley para la Reducción de la Inflación?", "faqs.page.Q12": "¿En qué se diferencia la Herramienta de evaluación de la justicia climática y económica (CEJST) de otras herramientas federales de evaluación ambiental, como EJScreen?",
"faqs.page.Q11": "P: ¿Utilizarán las agencias la Herramienta de evaluación de la justicia climática y económica (CEJST) si ya han creado sus propias herramientas o criterios para identificar a las comunidades desfavorecidas?", "faqs.page.Q13": "¿En qué se diferencia esta herramienta de las herramientas de evaluación estatales?",
"faqs.page.Q12": "P: ¿En qué se diferencia la Herramienta de evaluación de la justicia climática y económica (CEJST) de otras herramientas federales de evaluación ambiental, como EJScreen?", "faqs.page.Q14": "¿Cómo se utilizaron las recomendaciones del Consejo Asesor de Justicia Ambiental de la Casa Blanca (WHEJAC, por sus siglas en inglés) para esta herramienta?",
"faqs.page.Q13": "P: ¿En qué se diferencia esta herramienta de las herramientas de evaluación estatales?", "faqs.page.Q15": "¿Puede el público dar comentarios sobre esta herramienta?",
"faqs.page.Q14": "P: ¿Cómo se utilizaron las recomendaciones del Consejo Asesor de Justicia Ambiental de la Casa Blanca (WHEJAC, por sus siglas en inglés) para esta herramienta?", "faqs.page.Q16": "¿Cuándo se lanzó la herramienta?",
"faqs.page.Q15": "P: ¿Puede el público dar comentarios sobre esta herramienta?", "faqs.page.Q17": "¿Cuándo salió la versión oficial de la herramienta?",
"faqs.page.Q17": "P: ¿Cuándo salió la versión oficial de la herramienta?", "faqs.page.Q19": "¿Qué archivos y documentación están disponibles en la herramienta?",
"faqs.page.Q18": " ¿Cómo actualiza al público el Consejo de Calidad del Medio Ambiente (CEQ) sobre la herramienta?", "faqs.page.Q2": "¿Cómo identifica y define la herramienta a las comunidades?",
"faqs.page.Q19": "P: ¿Qué archivos y documentación están disponibles en la herramienta?", "faqs.page.Q20": "¿Cómo funciona el archivo de forma de la herramienta?",
"faqs.page.Q2": "P: ¿Cómo identifica y define la herramienta a las comunidades?", "faqs.page.Q21": "¿Por qué algunos distritos censales están en desventaja porque estaban en desventaja en la versión 1.0 de la herramienta?",
"faqs.page.Q20": "P: ¿Cómo funciona el archivo de forma de la herramienta?", "faqs.page.Q22": "¿Por qué algunos distritos censales están en desventaja en ciertos territorios de EE. UU. porque solo alcanzan el umbral de bajos ingresos?",
"faqs.page.Q3": "P: ¿Se incluye la raza en la metodología de la herramienta?", "faqs.page.Q3": "¿Se incluye la raza en la metodología de la herramienta?",
"faqs.page.Q4": "P: ¿Incluye la Herramienta de evaluación de la justicia climática y económica (CEJST) a los territorios de los Estados Unidos?", "faqs.page.Q4": "¿Incluye la Herramienta de evaluación de la justicia climática y económica (CEJST) a los territorios de los Estados Unidos?",
"faqs.page.Q5": "P: ¿Incluye la herramienta a las naciones tribales?", "faqs.page.Q5": "¿Incluye la herramienta a las naciones tribales?",
"faqs.page.Q6": "P: ¿Por qué algunas zonas del mapa tienen tonos diferentes?", "faqs.page.Q6": "¿Por qué algunas zonas del mapa tienen tonos diferentes?",
"faqs.page.Q7": "P: ¿Por qué la herramienta tiene distritos censales \"parcialmente desfavorecidos\"?", "faqs.page.Q7": "¿Por qué la herramienta tiene distritos censales \"parcialmente desfavorecidos\"?",
"faqs.page.Q8": "P: ¿Cómo se relaciona esta herramienta con la Iniciativa Justice40?", "faqs.page.answers.Q12_P1": "La CEJST usa las lecciones aprendidas de la EJScreen de EPA. EJScreen es una herramienta para cartografiar y evaluar la justicia ambiental. EJScreen muestra información ambiental y demográfica, y combina esa información en índices.",
"faqs.page.Q9": "P: ¿Cómo utilizarán los organismos federales la Herramienta de evaluación de la justicia climática y económica (CEJST) para la Iniciativa Justice40?", "faqs.page.answers.Q12_P2": "Sin embargo, el CEJST ayuda a identificar comunidades desfavorecidas geográficamente definidas que están marginadas por la falta de inversión y sobrecargadas por la contaminación.",
"faqs.page.answers.Q10": "A partir de legislación reciente e histórica, como la Ley Bipartidista de Infraestructuras y la Ley para la Reducción de la Inflación, se crearon nuevos programas o se destinaron fondos a programas ya existentes. Estas inversiones se incluyen en la Iniciativa Justice40 si cumplen con los criterios. Las agencias utilizarán la herramienta para ayudar a identificar a las comunidades desfavorecidas que recibirán el 40% de los beneficios globales de esos programas de Justice40.", "faqs.page.answers.Q12_P3": "<link1>Este gráfico</link1> es útil para comprender en qué se diferencia la CEJST de algunas de las otras herramientas federales de evaluación ambiental.",
"faqs.page.answers.Q11": "El Consejo sobre la Calidad del Medio Ambiente (CEQ), la Oficina de Gestión y Presupuesto (OMB) y la Oficina de Política Climática (CPO) publicaron el 20 de julio de 2021 las Directrices provisionales para la ejecución de la Iniciativa Justice40. En estas se ordenaba a las agencias que crearan definiciones provisionales de las comunidades desfavorecidas. Las agencias utilizaron sus definiciones provisionales durante la fase beta de la herramienta. Las agencias pasarán ahora a utilizar la versión 1.0 de la herramienta para identificar geográficamente a las comunidades desfavorecidas.",
"faqs.page.answers.Q12_P1": "La CEJST usa las lecciones aprendidas de la EJScreen de EPA. EJScreen es una herramienta para cartografiar y evaluar la justicia ambiental. EJScreen muestra información ambiental y demográfica, y combina esa información en índices. La EPA, los organismos federales y los gobiernos estatales y locales seguirán utilizando EJScreen para comprender y analizar las cuestiones ambientales y de justicia ambiental. Por ejemplo, la EPA utiliza <link1> EJScreen </link1> para:",
"faqs.page.answers.Q12_P1_1": "Informar sobre las prácticas de divulgación y participación",
"faqs.page.answers.Q12_P1_2": "Ejecutar aspectos de los siguientes programas:",
"faqs.page.answers.Q12_P1_2_1": "Programas de permisos",
"faqs.page.answers.Q12_P1_2_2": "Programas de aplicación",
"faqs.page.answers.Q12_P1_2_3": "Programas de cumplimiento",
"faqs.page.answers.Q12_P1_2_4": "Programas voluntarios",
"faqs.page.answers.Q12_P1_3": "Elaborar informes retrospectivos del trabajo de la EPA",
"faqs.page.answers.Q12_P1_4": "Mejorar las iniciativas de base geográfica",
"faqs.page.answers.Q12_P2": "Sin embargo, la EPA no utiliza EJScreen para identificar o etiquetar una zona como \"comunidad de justicia ambiental\" ni como fundamento único base para la toma de decisiones de la agencia.",
"faqs.page.answers.Q12_P3": "Por el contrario, la CEJST ayudará a los organismos federales a identificar a las comunidades desfavorecidas que se beneficiarán de los programas incluidos en la Iniciativa Justice40.",
"faqs.page.answers.Q12_P4": "<link1>Este gráfico</link1> es útil para comprender en qué se diferencia la CEJST de algunas de las otras herramientas federales de evaluación ambiental.",
"faqs.page.answers.Q13_P1": "Varios estados disponen de herramientas de evaluación de la justicia ambiental. CalEnviroScreen es una herramienta de detección de la justicia ambiental para California. Otros estados, como Nueva York y Michigan, también disponen de herramientas de detección. La Herramienta de evaluación de la justicia climática y económica (CEJST) incorpora las lecciones aprendidas de estos esfuerzos.", "faqs.page.answers.Q13_P1": "Varios estados disponen de herramientas de evaluación de la justicia ambiental. CalEnviroScreen es una herramienta de detección de la justicia ambiental para California. Otros estados, como Nueva York y Michigan, también disponen de herramientas de detección. La Herramienta de evaluación de la justicia climática y económica (CEJST) incorpora las lecciones aprendidas de estos esfuerzos.",
"faqs.page.answers.Q13_P2": "Existe una diferencia importante entre las herramientas estatales y la CEJST. Las herramientas estatales utilizan datos que quizás no estén disponibles para otros estados. La CEJST sólo utiliza datos que son compatibles a nivel nacional y están a disposición del público.", "faqs.page.answers.Q13_P2": "Existe una diferencia importante entre las herramientas estatales y la CEJST. Las herramientas estatales utilizan datos que quizás no estén disponibles para otros estados. La CEJST sólo utiliza datos que son compatibles a nivel nacional y están a disposición del público.",
"faqs.page.answers.Q14": "El WHEJAC proporcionó recomendaciones sobre la Herramienta de evaluación de la justicia climática y económica (CEJST). La CEJST sigue muchas de estas recomendaciones", "faqs.page.answers.Q14": "El WHEJAC proporcionó <link1>recomendaciones</link1> sobre la Herramienta de evaluación de la justicia climática y económica (CEJST). Las versiones 1.0 y 2.0 de CEJST incluyen componentes que se basaron en muchas de estas recomendaciones.",
"faqs.page.answers.Q15_P1": "Sí El sitio web de la CEJST tiene varias formas para proporcionar comentarios sobre la herramienta.", "faqs.page.answers.Q15_P1": "Sí El sitio web de la CEJST tiene varias formas para proporcionar comentarios sobre la herramienta.",
"faqs.page.answers.Q15_P1_1": "El público encontrará distritos censales conocidos y enviará comentarios sobre esos distritos censales. Esos comentarios se utilizan para \"validar\" la herramienta. Esto ayuda a que la herramienta refleje mejor la realidad de las comunidades.", "faqs.page.answers.Q15_P1_1": "El público encontrará distritos censales conocidos y enviará comentarios sobre esos distritos censales. Esos comentarios se utilizan para \"validar\" la herramienta. Esto ayuda a que la herramienta refleje mejor la realidad de las comunidades.",
"faqs.page.answers.Q15_P1_2": "El público también puede presentar <link1>fuentes de datos</link1> o ideas para su consideración.", "faqs.page.answers.Q15_P1_2": "El público también puede presentar <link1>fuentes de datos</link1> o ideas para su consideración.",
"faqs.page.answers.Q15_P1_3": "El público también puede realizar una <link1>encuesta breve</link1> para ayudar a mejorar la experiencia de uso de la herramienta.", "faqs.page.answers.Q15_P1_3": "El público también puede realizar una <link1>encuesta breve</link1> para ayudar a mejorar la experiencia de uso de la herramienta.",
"faqs.page.answers.Q15_P1_4": "El público también puede enviar un correo electrónico a {general_email_address}", "faqs.page.answers.Q15_P1_4": "El público también puede enviar un correo electrónico a {general_email_address}",
"faqs.page.answers.Q16": "Sí El CEQ tiene previsto publicar una solicitud de información (RFI) sobre la versión 1.0 de la CEJST en 2023. Los comentarios que se reciban en esa RFI servirán de base para la versión 2.0 de la herramienta.", "faqs.page.answers.Q16_P1": "CEQ lanzó una versión beta (o borrador) del CEJST en febrero de 2022 con el apoyo del Servicio Digital de EE. UU. (USDS) y en colaboración con otras agencias y departamentos federales. El CEJST se lanzó en una versión beta para buscar <link1>comentarios</link1> de agencias federales, naciones tribales, gobiernos estatales y locales, miembros del Congreso, partes interesadas en la justicia ambiental y el público. El período de comentarios públicos de 90 días fue <link2>cerrado</link2> el 25 de mayo de 2022. CEQ y el USDS organizaron varios <link3>entrenamientos públicos</link3> sobre la versión beta del CEJST. Todos estos comentarios sobre la versión beta del CEJST ayudaron a informar el lanzamiento de la versión 1.0 del CEJST.",
"faqs.page.answers.Q17_P1": "La herramienta ya se considera oficial porque los organismos federales ya pueden utilizar la versión 1.0 de la Herramienta de evaluación de la justicia climática y económica (CEJST) para ayudar a identificar a las comunidades desfavorecidas. La versión 1.0 se publicó en <link1>noviembre de 2022</link1>. La herramienta ya no está en fase beta.", "faqs.page.answers.Q16_P2": "La versión 1.0 se lanzó en <link1>{version1Release}</link1>. La versión actual, la versión {currentVersion}, se publicó en {currentVersionRelease}.",
"faqs.page.answers.Q17_P2": "La herramienta se perfeccionará con el tiempo. El Consejo sobre la Calidad del Medio Ambiente (CEQ) actualizará la herramienta cada año basándose en los comentarios del público, la investigación y la disponibilidad de nuevos datos.",
"faqs.page.answers.Q18": "<link1>Inscríbase</link1> para recibir actualizaciones sobre la Herramienta de evaluación de la justicia climática y económica (CEJST) y otras noticias sobre justicia ambiental de CEQ.", "faqs.page.answers.Q18": "<link1>Inscríbase</link1> para recibir actualizaciones sobre la Herramienta de evaluación de la justicia climática y económica (CEJST) y otras noticias sobre justicia ambiental de CEQ.",
"faqs.page.answers.Q19": "La Herramienta de evaluación de la justicia climática y económica (CEJST) dispone de <link1>descargas</link1>. Las planillas de cálculo (.xlxs) y (.csv) contienen definiciones y datos de la herramienta. Estos datos pueden utilizarse para el análisis. Los archivos de forma y geojson pueden cargarse en otros programas cartográficos como Esri. Las descargas incluyen información sobre cómo utilizar los archivos.", "faqs.page.answers.Q19": "La Herramienta de evaluación de la justicia climática y económica (CEJST) dispone de <link1>descargas</link1>. Las planillas de cálculo (.xlxs) y (.csv) contienen definiciones y datos de la herramienta. Estos datos pueden utilizarse para el análisis. Los archivos de forma y GeoJSON pueden cargarse en otros programas cartográficos como Esri. Las descargas incluyen información sobre cómo utilizar los archivos. La información de versiones anteriores de la herramienta está disponible en la página <link2>versiones anteriores</link2>.",
"faqs.page.answers.Q1_P1": "La CEJST es un componente esencial del compromiso histórico del gobierno del presidente Biden y la vicepresidenta Harris para propiciar la justicia ambiental. En la <link1>Orden ejecutiva 14008</link1> para Hacer frente a la crisis climática en el país y en el extranjero, el presidente Biden impartió instrucciones al Consejo sobre la Calidad del Medio Ambiente (CEQ) para crear una herramienta de localización geoespacial a fin de identificar comunidades desfavorecidas que enfrentan cargas. La herramienta cuenta con un mapa interactivo y utiliza conjuntos de datos que son indicadores de las cargas.", "faqs.page.answers.Q1_P1": "El CEJST es una herramienta de mapeo geoespacial que identifica comunidades desfavorecidas que enfrentan cargas. La herramienta tiene un mapa interactivo y utiliza conjuntos de datos que son indicadores de cargas.",
"faqs.page.answers.Q1_P2": "Los organismos federales utilizarán la herramienta para la Iniciativa Justice40. Les ayudará a identificar las comunidades desfavorecidas que deben recibir el 40% de los beneficios globales de los programas incluidos en la Iniciativa Justice40. La Iniciativa Justice40 pretende que las comunidades desfavorecidas reciban el 40% de los beneficios globales en materia de clima, energía no contaminante y otros ámbitos relacionados.", "faqs.page.answers.Q1_P2": "El público puede encontrar comunidades de interés y proporcionar comentarios al respecto. Estos comentarios se usarán para mejorar la herramienta.",
"faqs.page.answers.Q1_P3": "Otros enlaces útiles para los organismos federales son:",
"faqs.page.answers.Q1_P3_1": "<link1es>Memorándum</link1es> sobre el uso del CEJST para la Iniciativa Justice40.",
"faqs.page.answers.Q1_P3_2": "<link1es>Instrucciones</link1es> para los organismos federales sobre el uso de la CEJST.",
"faqs.page.answers.Q1_P4": "El público puede encontrar comunidades de interés y proporcionar comentarios al respecto. Estos comentarios se usarán para mejorar la herramienta.",
"faqs.page.answers.Q20_P1": "Los archivos de forma pueden cargarse en otros programas cartográficos como Esri.", "faqs.page.answers.Q20_P1": "Los archivos de forma pueden cargarse en otros programas cartográficos como Esri.",
"faqs.page.answers.Q20_P2": "El formato <link1>archivo de forma</link1> es <link2>un formato de datos vectoriales geoespaciales</link2> para software de sistema de información geográfica (SIG). Puede cargarse en cualquier software que funcione con Esri, ArcGIS o cualquier otro software compatible con SIG. Puede optar por descargar los datos en este formato para poder cargar los datos de la Herramienta de evaluación de la justicia climática y económica (CEJST) en otras herramientas y utilizarlas para combinar los datos de la CEJST con otros conjuntos de datos y fuentes.", "faqs.page.answers.Q20_P2": "El formato <link1>archivo de forma</link1> es <link2>un formato de datos vectoriales geoespaciales</link2> para software de sistema de información geográfica (SIG). Puede cargarse en cualquier software que funcione con Esri, ArcGIS o cualquier otro software compatible con SIG. Puede optar por descargar los datos en este formato para poder cargar los datos de la Herramienta de evaluación de la justicia climática y económica (CEJST) en otras herramientas y utilizarlas para combinar los datos de la CEJST con otros conjuntos de datos y fuentes.",
"faqs.page.answers.Q2_P1": "<link1>La Orden ejecutiva 14008</link1> reconoce que algunas comunidades están en desventaja porque se enfrentan a cargas. La CEJST utiliza conjuntos de datos que son indicadores de cargas. Estas cargas están relacionadas con el cambio climático y el medio ambiente. También están relacionadas con la salud y la falta de oportunidades económicas.", "faqs.page.answers.Q21": "Estos distritos censales que han sido \"protegidos\" durante al menos dos años. Esto ayuda a reducir las interrupciones y respaldar una transición fluida para las agencias, los solicitantes y el público a medida que se lanzan nuevas versiones de la herramienta. Las <link1>instrucciones</link1> de la herramienta tienen más información sobre la protección por tiempo limitado.",
"faqs.page.answers.Q2_P2": "La herramienta destaca las comunidades desfavorecidas de los 50 estados, el Distrito de Columbia y los territorios estadounidenses. Las comunidades se consideran desfavorecidas:", "faqs.page.answers.Q22": "Debido a que algunos conjuntos de datos consistentes a nivel nacional sobre indicadores de carga ambiental utilizados en la herramienta no incluyen actualmente datos de ciertos territorios de EE. UU., los distritos censales en estos territorios se consideran desfavorecidas si alcanzan el umbral de bajos ingresos.",
"faqs.page.answers.Q2_P1": "El CEJST utiliza conjuntos de datos que son indicadores de la carga relacionada con el cambio climático y el medio ambiente para evaluar las comunidades que se encuentran en desventaja por estas cargas. También están relacionados con la salud y la falta de oportunidades económicas.",
"faqs.page.answers.Q2_P2": "La herramienta destaca las comunidades desfavorecidas de los 50 estados, el Distrito de Columbia y los territorios estadounidenses. Las comunidades se muestran en el mapa como desfavorecidas:",
"faqs.page.answers.Q2_P2_1": "Si se encuentran en un distrito censal que cumple con los umbrales de al menos una de las categorías de carga de la herramienta, o", "faqs.page.answers.Q2_P2_1": "Si se encuentran en un distrito censal que cumple con los umbrales de al menos una de las categorías de carga de la herramienta, o",
"faqs.page.answers.Q2_P2_2": "Si están en tierras dentro de los límites de las tribus reconocidas a nivel federal.", "faqs.page.answers.Q2_P2_2": "Si están en tierras dentro de los límites de las tribus reconocidas a nivel federal.",
"faqs.page.answers.Q2_P3": "No se pueden mostrar todas las comunidades desfavorecidas en el mapa. Algunas comunidades no viven en un solo lugar. Las Directrices provisionales para la ejecución de la Iniciativa Justice40 también ordena a los organismos federales que tengan en cuenta a las comunidades geográficamente dispersas a la hora de aplicar los programas incluidos en la Iniciativa Justice40.", "faqs.page.answers.Q2_P3": "No todas las comunidades desfavorecidas se pueden mostrar en el mapa. El mapa muestra la ubicación de los puntos de las aldeas nativas de Alaska y las tribus sin tierra reconocidas federalmente en los 48 estados contiguos. Algunas comunidades no viven en un solo lugar. Esta herramienta se centra en identificar comunidades que pueden definirse geográficamente.",
"faqs.page.answers.Q2_P4": "La herramienta usa distritos censales. Estos distritos censales son pequeñas unidades geográficas. Los límites de los distritos censales para <link1>áreas con fines estadísticos</link1> son determinados por la Oficina del Censo de los EE. UU. cada diez años. La herramienta utiliza los límites de los distritos censales de 2010. Se escogió principalmente porque muchas de las fuentes de datos de la herramienta usan los límites de dicho censo en la actualidad.", "faqs.page.answers.Q2_P4": "La herramienta usa distritos censales. Estos distritos censales son pequeñas unidades geográficas. Los límites de los distritos censales para <link1>áreas con fines estadísticos</link1> son determinados por la Oficina del Censo de los EE. UU. cada diez años. La herramienta utiliza los límites de los distritos censales de 2010. Los distritos censales que fueron identificadas como desfavorecidos en la versión 1.0 de la herramienta siguen estando en desventaja en la versión 2.0 de la herramienta.",
"faqs.page.answers.Q2_P5": "Debido a la limitada disponibilidad de datos, las zonas de Samoa Americana, Guam, las Islas Marianas del Norte y las Islas Vírgenes de los Estados Unidos se consideran desfavorecidas si solo alcanzan el umbral de bajos ingresos.",
"faqs.page.answers.Q3_P1": "No. La Herramienta de evaluación de la justicia climática y económica (CEJST) no utiliza datos demográficos raciales en su metodología. La versión actual de la herramienta muestra datos sobre raza y edad sólo para proporcionar información cuando se selecciona un distrito censal.", "faqs.page.answers.Q3_P1": "No. La Herramienta de evaluación de la justicia climática y económica (CEJST) no utiliza datos demográficos raciales en su metodología. La versión actual de la herramienta muestra datos sobre raza y edad sólo para proporcionar información cuando se selecciona un distrito censal.",
"faqs.page.answers.Q3_P2": "Las comunidades de color sufren de forma desproporcionada las cargas ambientales y sanitarias, conforme se ha documentado ampliamente. Debido a décadas de inversiones insuficientes, también se enfrentan a mayores riesgos derivados del cambio climático.", "faqs.page.answers.Q3_P2": "Las comunidades de color sufren de forma desproporcionada las cargas ambientales y sanitarias, conforme se ha documentado ampliamente. Debido a décadas de inversiones insuficientes, también se enfrentan a mayores riesgos derivados del cambio climático.",
"faqs.page.answers.Q3_P3": "Aunque la CEJST no utiliza la raza en su metodología, la herramienta crea un mapa que intenta reflejar las cargas y realidades concretas a las que se enfrentan las comunidades desfavorecidas. La herramienta muestra las comunidades que tienen cargas ambientales y se enfrentan a injusticias.", "faqs.page.answers.Q3_P3": "Aunque la CEJST no utiliza la raza en su metodología, la herramienta crea un mapa que intenta reflejar las cargas y realidades concretas a las que se enfrentan las comunidades desfavorecidas. La herramienta muestra las comunidades que tienen cargas ambientales y se enfrentan a injusticias.",
"faqs.page.answers.Q4_P1": "Sí, la versión 1.0 de la CEJST tiene algunos datos para todos los territorios, pero no todos los datos están disponibles o se utilizan para todos los territorios de Estados Unidos.", "faqs.page.answers.Q4_P1": "Sí, la versión 1.0 de la CEJST tiene algunos datos para todos los territorios, pero no todos los datos están disponibles o se utilizan para todos los territorios de Estados Unidos.",
"faqs.page.answers.Q4_P2": "<boldtag>Puerto Rico:</boldtag> Los datos utilizados para Puerto Rico proceden de todos los campos pertinentes y disponibles en las categorías de energía, vivienda, contaminación heredada, transporte y formación de la fuerza laboral. Se utilizan los siguientes datos: riesgo previsto de inundaciones, costo de la energía, falta de plomería, pintura con plomo, costo de la vivienda, proximidad a instalaciones de residuos peligrosos, proximidad a sitios del Superfund o de la Lista Nacional de Prioridades (NPL), proximidad a instalaciones del Plan de Manejo de Riesgos (RMP), exposición a partículas diésel, proximidad al tráfico y volumen de este, tanques de almacenamiento subterráneo y descargas, vertimiento de aguas residuales, pobreza, desempleo y educación secundaria o preparatoria. Se eliminó el aislamiento lingüístico para Puerto Rico basándose en los comentarios recibidos durante el periodo beta.", "faqs.page.answers.Q4_P2": "<boldtag>Puerto Rico:</boldtag> Los datos utilizados para Puerto Rico proceden de todos los campos pertinentes y disponibles en las categorías de energía, vivienda, contaminación heredada, transporte y formación de la fuerza laboral. Se utilizan los siguientes datos: riesgo previsto de inundaciones, costo de la energía, falta de plomería, pintura con plomo, costo de la vivienda, proximidad a instalaciones de residuos peligrosos, proximidad a sitios del Superfund o de la Lista Nacional de Prioridades (NPL), proximidad a instalaciones del Plan de Manejo de Riesgos (RMP), exposición a partículas diésel, proximidad al tráfico y volumen de este, tanques de almacenamiento subterráneo y descargas, vertimiento de aguas residuales, pobreza, desempleo y educación secundaria o preparatoria. Se eliminó el aislamiento lingüístico para Puerto Rico basándose en los comentarios recibidos durante el periodo beta.",
"faqs.page.answers.Q4_P3": "<boldtag>Samoa estadounidense, Guam, las Islas Marianas del Norte y las Islas Vírgenes de los Estados Unidos.</boldtag> Para estos territorios de los Estados Unidos, la herramienta utiliza los siguientes datos: desempleo, pobreza, ingresos medios bajos y educación secundaria o preparatoria. Estas cargas están en la categoría de formación de la fuerza laboral.", "faqs.page.answers.Q4_P3": "<boldtag>Samoa estadounidense, Guam, las Islas Marianas del Norte y las Islas Vírgenes de los Estados Unidos.</boldtag> Para estos territorios de los Estados Unidos, la herramienta utiliza los siguientes datos: desempleo, pobreza, ingresos medios bajos y educación secundaria o preparatoria. Estas cargas están en la categoría de formación de la fuerza laboral. Debido a la disponibilidad limitada de datos, las zonas en estos territorios de EE. UU. se consideran desfavorecidas si solo cumplen con los ingresos bajos.",
"faqs.page.answers.Q5_P1": "Para respetar la soberanía tribal y el autogobierno y cumplir con las responsabilidades del fideicomiso federal y del tratado con las naciones tribales, las tierras dentro de los límites de las tribus reconocidas a nivel federal se resaltan como desfavorecidas en el mapa. Los pueblos nativos de Alaska se incluyen como ubicaciones puntuales que son más pequeñas que los distritos censales Los límites de los distritos censales y las tierras de las tribus reconocidas a nivel federal son diferentes.", "faqs.page.answers.Q5_P1": "Para respetar la soberanía tribal y el autogobierno y cumplir con las responsabilidades del fideicomiso federal y del tratado con las naciones tribales, las tierras dentro de los límites de las tribus reconocidas a nivel federal se resaltan como desfavorecidas en el mapa. Los pueblos nativos de Alaska se incluyen como ubicaciones puntuales que son más pequeñas que los distritos censales Los límites de los distritos censales y las tierras de las tribus reconocidas a nivel federal son diferentes.",
"faqs.page.answers.Q5_P2": "Las tribus reconocidas a nivel federal son las reconocidas por la Oficina de Asuntos Indígenas de los Estados Unidos en el <link1>aviso anual</link1> que publica en el Registro Federal:", "faqs.page.answers.Q5_P2": "Las tribus reconocidas a nivel federal son las reconocidas por la Oficina de Asuntos Indígenas de los Estados Unidos en el <link1>aviso anual</link1> que publica en el Registro Federal:",
"faqs.page.answers.Q5_P2_1": "Esta decisión se tomó tras una consulta significativa y sólida con las naciones tribales. Este enfoque coincide con el <link1>Plan de acción para la consulta y coordinación con las naciones tribales del CEQ</link1>, <link3>el Memorando del presidente Biden sobre la Consulta de las naciones tribales y fortalecimiento de las consultas entre naciones</link3>, y la <link2>Orden ejecutiva 13175 sobre Consulta y coordinación con los gobiernos de las tribus indias</link2>.", "faqs.page.answers.Q5_P2_1": "Esta decisión se tomó tras una consulta significativa y sólida con las naciones tribales. Este enfoque coincide con el <link1>Plan de acción para la consulta y coordinación con las naciones tribales del CEQ</link1>, <link3>el Memorando sobre la Consulta de las naciones tribales y fortalecimiento de las consultas entre naciones</link3>, y la <link2>Orden ejecutiva 13175 sobre Consulta y coordinación con los gobiernos de las tribus indias</link2>.",
"faqs.page.answers.Q6_P1": "Algunos distritos censales que contienen tierras dentro de los límites de tribus reconocidas a nivel federal también se consideran desfavorecidas porque cumplen los umbrales de carga para al menos una de las categorías de la herramienta. Cuando esto ocurre, las zonas aparecen más oscuras en el mapa de la herramienta.", "faqs.page.answers.Q6_P1": "Algunos distritos censales que contienen tierras dentro de los límites de tribus reconocidas a nivel federal también se consideran desfavorecidas porque cumplen los umbrales de carga para al menos una de las categorías de la herramienta. Cuando esto ocurre, las zonas aparecen más oscuras en el mapa de la herramienta.",
"faqs.page.answers.Q6_P2": ": Distritos censales desfavorecidos (cumple la metodología del umbral O contiene tierras de las tribus)", "faqs.page.answers.Q6_P2": ": Distritos censales desfavorecidos (cumple la metodología del umbral O contiene tierras de las tribus)",
"faqs.page.answers.Q6_P3": ": Distritos censales desfavorecidos y tierras dentro de los límites de tribus reconocidas a nivel federal (cumple la metodología de umbral Y contiene tierras de las tribus)", "faqs.page.answers.Q6_P3": ": Distritos censales desfavorecidos y tierras dentro de los límites de tribus reconocidas a nivel federal (cumple la metodología de umbral Y contiene tierras de las tribus)",
"faqs.page.answers.Q6_P4": "Cualquier zona que aparezca resaltada se considera desfavorecida, independientemente de que sea un tono claro u oscuro. La herramienta mostrará si todo un distrito censal se considera desfavorecido o sólo las partes que se encuentran dentro de los límites de las tribus reconocidas a nivel federal.", "faqs.page.answers.Q6_P4": "Cualquier zona que aparezca resaltada se considera desfavorecida, independientemente de que sea un tono claro u oscuro. La herramienta mostrará si todo un distrito censal se considera desfavorecido o sólo las partes que se encuentran dentro de los límites de las tribus reconocidas a nivel federal.",
"faqs.page.answers.Q7": "Un distrito censal que no cumple con ninguno de los umbrales de carga de la herramienta no suele considerarse una comunidad desfavorecida. Sin embargo, si dicho distrito censal contiene tierras dentro de los límites de las tribus reconocidas a nivel federal, entonces las partes de dicho distrito que contienen las tierras de las tribus se consideran desfavorecidas. La herramienta mostrará este tipo de distrito censal como \"parcialmente desfavorecido\".", "faqs.page.answers.Q7": "Un distrito censal que no cumple con ninguno de los umbrales de carga de la herramienta no suele considerarse una comunidad desfavorecida. Sin embargo, si dicho distrito censal contiene tierras dentro de los límites de las tribus reconocidas a nivel federal, entonces las partes de dicho distrito que contienen las tierras de las tribus se consideran desfavorecidas. La herramienta mostrará este tipo de distrito censal como \"parcialmente desfavorecido\".",
"faqs.page.answers.Q8_P1": "La administración Biden está impulsando la justicia ambiental en todo el gobierno. La Iniciativa Justice40 es una parte fundamental de este esfuerzo. La Iniciativa Justice40 pretende hacer llegar a las comunidades desfavorecidas el 40% de los beneficios globales de las inversiones en clima, energía no contaminante y otras inversiones relacionadas.",
"faqs.page.answers.Q8_P2": "La CEJST desempeñará un papel importante en la Iniciativa Justice40. Ayudará a proporcionar una definición única y coherente de las comunidades desfavorecidas para los programas incluidos en la Iniciativa Justice40.",
"faqs.page.answers.Q9_P1": "Los organismos federales utilizarán la herramienta para ayudar a identificar a las comunidades desfavorecidas que se beneficiarán de los programas incluidos en la Iniciativa Justice40. La Iniciativa Justice40 pretende hacer llegar el 40% de los beneficios globales de ciertas inversiones relacionadas a las comunidades desfavorecidas.",
"faqs.page.answers.Q9_P2": "Los organismos federales utilizarán esta definición para destinar los beneficios de la inversión de Justice40 en las siguientes áreas:",
"faqs.page.answers.Q9_P2_1": "Clima",
"faqs.page.answers.Q9_P2_2": "Energía no contaminante y eficiencia energética",
"faqs.page.answers.Q9_P2_3": "Transporte no contaminante",
"faqs.page.answers.Q9_P2_4": "Vivienda sostenible y asequible",
"faqs.page.answers.Q9_P2_5": "Capacitación y formación de la fuerza laboral",
"faqs.page.answers.Q9_P2_6": "Reducción y remediación de contaminación heredada",
"faqs.page.answers.Q9_P2_7": "Desarrollo de infraestructura para agua no contaminada y aguas residuales",
"faqs.page.coming.soon.text": "¡Próximamente!", "faqs.page.coming.soon.text": "¡Próximamente!",
"faqs.page.title.text": "Preguntas frecuentes", "faqs.page.title.text": "Preguntas frecuentes",
"indicator.categories.afford.house.title": "Vivienda", "indicator.categories.afford.house.title": "Vivienda",
@ -530,6 +504,7 @@
"methodology.page.category.source.cdc.sleep.link": "<link1>Proyecto de cálculos de esperanza de vida en regiones pequeñas en los Estados Unidos (USALEEP)</link1> de {date10_15}", "methodology.page.category.source.cdc.sleep.link": "<link1>Proyecto de cálculos de esperanza de vida en regiones pequeñas en los Estados Unidos (USALEEP)</link1> de {date10_15}",
"methodology.page.category.source.census.link.10": "<link1>Encuesta sobre la Comunidad Estadounidense</link1> de {date10}", "methodology.page.category.source.census.link.10": "<link1>Encuesta sobre la Comunidad Estadounidense</link1> de {date10}",
"methodology.page.category.source.census.link.15": "<link1>Encuesta sobre la Comunidad Estadounidense</link1> de {date15_19}", "methodology.page.category.source.census.link.15": "<link1>Encuesta sobre la Comunidad Estadounidense</link1> de {date15_19}",
"methodology.page.category.source.census.link.20": "<link1>Censo Decenal</link1> from {date20}",
"methodology.page.category.source.doe.lead.link": "<link1>Herramienta LEAD</link1> de {date18}", "methodology.page.category.source.doe.lead.link": "<link1>Herramienta LEAD</link1> de {date18}",
"methodology.page.category.source.dot.epa.link": "<link1>Datos de tránsito</link1> de {date17} según han sido compilados por la herramienta EJSCREEN de la EPA", "methodology.page.category.source.dot.epa.link": "<link1>Datos de tránsito</link1> de {date17} según han sido compilados por la herramienta EJSCREEN de la EPA",
"methodology.page.category.source.epa.cerclis.link": "<link1>Base de datos CERCLIS</link1> de {date20} según ha sido compilada por la herramienta EJSCREEN de la EPA", "methodology.page.category.source.epa.cerclis.link": "<link1>Base de datos CERCLIS</link1> de {date20} según ha sido compilada por la herramienta EJSCREEN de la EPA",
@ -554,7 +529,7 @@
"methodology.page.category.unemploy.description.text": "Número de personas desempleadas como porcentaje de la fuerza laboral", "methodology.page.category.unemploy.description.text": "Número de personas desempleadas como porcentaje de la fuerza laboral",
"methodology.page.category.waste.water.description.text": "El Modelo de los indicadores ambientales para detección del riesgo (RSEI) representa concentraciones tóxicas en segmentos de flujos de agua a menos de 500 metros de distancia, divididos por distancia en kilómetros.", "methodology.page.category.waste.water.description.text": "El Modelo de los indicadores ambientales para detección del riesgo (RSEI) representa concentraciones tóxicas en segmentos de flujos de agua a menos de 500 metros de distancia, divididos por distancia en kilómetros.",
"methodology.page.category.wildfire.risk.rate.description.text": "Un modelo de 30 metros de resolución que proyecta la exposición a incendios forestales para cualquier ubicación específica en los EE. UU. contiguos, en la actualidad y con el cambio climático futuro. El riesgo de incendio forestal se calcula a partir de entradas asociadas a los combustibles del fuego, el clima, la influencia humana y el movimiento del fuego. El riesgo no tiene en cuenta el valor de la propiedad.", "methodology.page.category.wildfire.risk.rate.description.text": "Un modelo de 30 metros de resolución que proyecta la exposición a incendios forestales para cualquier ubicación específica en los EE. UU. contiguos, en la actualidad y con el cambio climático futuro. El riesgo de incendio forestal se calcula a partir de entradas asociadas a los combustibles del fuego, el clima, la influencia humana y el movimiento del fuego. El riesgo no tiene en cuenta el valor de la propiedad.",
"methodology.page.category.workforce.dev.description.text": "Mediana de bajos ingresos calculada como porcentaje de la mediana del ingreso de la zona", "methodology.page.category.workforce.dev.description.text": "Mediana de bajos ingresos calculada como porcentaje de la mediana del ingreso de la zona dividido por el ingreso en el Área Estadística Metropolitana, a menos que el distrito sea un distrito rural. Para las zonas rurales, se calcula como un porcentaje de la mediana de ingreso medio del estado.",
"methodology.page.dataset.card.availableFor.ALL_ISLDS": "Samoa estadounidense, Guam, Islas Marianas del Norte y las Islas Vírgenes de los Estados Unidos", "methodology.page.dataset.card.availableFor.ALL_ISLDS": "Samoa estadounidense, Guam, Islas Marianas del Norte y las Islas Vírgenes de los Estados Unidos",
"methodology.page.dataset.card.availableFor.AS_NMI": "Samoa estadounidense e Islas Marianas del Norte", "methodology.page.dataset.card.availableFor.AS_NMI": "Samoa estadounidense e Islas Marianas del Norte",
"methodology.page.dataset.card.availableFor.CONUS_DC": "Todos los estados contiguos de los Estados Unidos y el Distrito de Columbia", "methodology.page.dataset.card.availableFor.CONUS_DC": "Todos los estados contiguos de los Estados Unidos y el Distrito de Columbia",
@ -635,8 +610,12 @@
"methodology.page.indicator.categories.work.dev.if": "<boldtag>ESTÁN</boldtag> en el percentil 90 o por encima de este para <link2>aislamiento lingüístico</link2> O <link1>mediana de bajos ingresos</link1> O <link4>pobreza</link4> O <link3>desempleo</link3>", "methodology.page.indicator.categories.work.dev.if": "<boldtag>ESTÁN</boldtag> en el percentil 90 o por encima de este para <link2>aislamiento lingüístico</link2> O <link1>mediana de bajos ingresos</link1> O <link4>pobreza</link4> O <link3>desempleo</link3>",
"methodology.page.indicator.categories.workforce.dev.methodology": "Categoría Formación de la fuerza laboral", "methodology.page.indicator.categories.workforce.dev.methodology": "Categoría Formación de la fuerza laboral",
"methodology.page.paragraph.1": "La herramienta destaca los distritos censales desfavorecidos de los 50 estados, el Distrito de Columbia y los territorios estadounidenses. Las comunidades se consideran desfavorecidas:", "methodology.page.paragraph.1": "La herramienta destaca los distritos censales desfavorecidos de los 50 estados, el Distrito de Columbia y los territorios estadounidenses. Las comunidades se consideran desfavorecidas:",
"methodology.page.paragraph.2": "La herramienta utiliza conjuntos de datos como indicadores de cargas. Las cargas están organizadas en categorías. Una comunidad se destaca como desfavorecida en el mapa CEJST si se encuentra en un distrito censal que está (1) en o por encima del umbral para una o más cargas ambientales, climáticas u otras, y (2) en o por encima del umbral de carga socioeconómica asociada.",
"methodology.page.paragraph.1.bullet.1": "Si se encuentran en un distrito censal que cumple con los umbrales de al menos una de las categorías de carga de la herramienta, o", "methodology.page.paragraph.1.bullet.1": "Si se encuentran en un distrito censal que cumple con los umbrales de al menos una de las categorías de carga de la herramienta, o",
"methodology.page.paragraph.1.bullet.2": "Si están en tierras dentro de los límites de las tribus reconocidas a nivel federal", "methodology.page.paragraph.1.bullet.2": "Si están en tierras dentro de los límites de las tribus reconocidas a nivel federal.",
"methodology.page.paragraph.1.bullet.3": "Si el distrito censal se identificó como desfavorecido en la versión 1.0, entonces el distrito censal se considera desfavorecido en la versión 2.0.",
"methodology.page.paragraph.1.bullet.4": "Si el distrito censal es un distrito nuevo en 2020, entonces el porcentaje de tierra que compartió, si corresponde, con un tramo previamente desfavorecido se considerará desfavorecido.",
"methodology.page.paragraph.1.bullet.5": "Además, los ditritos censales en ciertos territorios de EE. UU. se consideran desfavorecidas si solo alcanzan el umbral de bajos ingresos. Esto se debe a que estos Territorios no están incluidos en cada uno de los conjuntos de datos consistentes a nivel nacional sobre cargas ambientales y climáticas que se utilizan actualmente en la herramienta.",
"methodology.page.paragraph.3": "La herramienta utiliza conjuntos de datos que son indicadores de cargas. Las cargas se organizan en categorías. Una comunidad se destaca como desfavorecida en el mapa de la CEJST si se encuentra en un distrito censal que está (1) en o por encima del umbral para una o más cargas ambientales, climáticas o de otro tipo, y (2) en o por encima del umbral para una carga socioeconómica asociada.", "methodology.page.paragraph.3": "La herramienta utiliza conjuntos de datos que son indicadores de cargas. Las cargas se organizan en categorías. Una comunidad se destaca como desfavorecida en el mapa de la CEJST si se encuentra en un distrito censal que está (1) en o por encima del umbral para una o más cargas ambientales, climáticas o de otro tipo, y (2) en o por encima del umbral para una carga socioeconómica asociada.",
"methodology.page.paragraph.4": "Además, también se considera desfavorecido un distrito censal que esté completamente rodeado de comunidades desfavorecidas y se sitúe en el percentil 50 o por encima de él en cuanto a ingresos bajos.", "methodology.page.paragraph.4": "Además, también se considera desfavorecido un distrito censal que esté completamente rodeado de comunidades desfavorecidas y se sitúe en el percentil 50 o por encima de él en cuanto a ingresos bajos.",
"methodology.page.paragraph.5": "Las tribus reconocidas a nivel federal, incluidos los pueblos nativos de Alaska, también se consideran comunidades desfavorecidas.", "methodology.page.paragraph.5": "Las tribus reconocidas a nivel federal, incluidos los pueblos nativos de Alaska, también se consideran comunidades desfavorecidas.",

View file

@ -1,18 +1,17 @@
import * as React from 'react';
import {Accordion, Grid} from '@trussworks/react-uswds'; import {Accordion, Grid} from '@trussworks/react-uswds';
import {AccordionItemProps} from '@trussworks/react-uswds/lib/components/Accordion/Accordion'; import {AccordionItemProps} from '@trussworks/react-uswds/lib/components/Accordion/Accordion';
import {useIntl} from 'gatsby-plugin-intl'; import {useIntl} from 'gatsby-plugin-intl';
import * as React from 'react';
import {useWindowSize} from 'react-use'; import {useWindowSize} from 'react-use';
import DatasetsButton from '../components/DatasetsButton';
import J40MainGridContainer from '../components/J40MainGridContainer'; import J40MainGridContainer from '../components/J40MainGridContainer';
import Layout from '../components/layout'; import Layout from '../components/layout';
import DatasetsButton from '../components/DatasetsButton';
import SubPageNav from '../components/SubPageNav'; import SubPageNav from '../components/SubPageNav';
import {USWDS_BREAKPOINTS, DATA_SURVEY_LINKS} from '../data/constants'; import {DATA_SURVEY_LINKS, PAGES_ENDPOINTS, USWDS_BREAKPOINTS} 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'; import {SIDE_PANEL_INIT_STATE_ICON_ALT_TEXT} from '../data/copy/explore';
import * as FAQS_COPY from '../data/copy/faqs';
// @ts-ignore // @ts-ignore
import censusDotIcon from '../images/sidePanelIcons/census-tract.svg'; import censusDotIcon from '../images/sidePanelIcons/census-tract.svg';
@ -47,12 +46,6 @@ const FAQPage = ({location}: IFAQPageProps) => {
<> <>
<p key={1}>{FAQS_COPY.FAQ_ANSWERS.Q1_P1}</p> <p key={1}>{FAQS_COPY.FAQ_ANSWERS.Q1_P1}</p>
<p>{FAQS_COPY.FAQ_ANSWERS.Q1_P2}</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>
</> </>
), ),
( (
@ -65,6 +58,7 @@ const FAQPage = ({location}: IFAQPageProps) => {
</ul> </ul>
<p>{FAQS_COPY.FAQ_ANSWERS.Q2_P3}</p> <p>{FAQS_COPY.FAQ_ANSWERS.Q2_P3}</p>
<p>{FAQS_COPY.FAQ_ANSWERS.Q2_P4}</p> <p>{FAQS_COPY.FAQ_ANSWERS.Q2_P4}</p>
<p>{FAQS_COPY.FAQ_ANSWERS.Q2_P5}</p>
</> </>
), ),
( (
@ -115,55 +109,11 @@ const FAQPage = ({location}: IFAQPageProps) => {
<p key={7}>{FAQS_COPY.FAQ_ANSWERS.Q7}</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> <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_P2}</p>
<p>{FAQS_COPY.FAQ_ANSWERS.Q12_P3}</p> <p>{FAQS_COPY.FAQ_ANSWERS.Q12_P3}</p>
<p>{FAQS_COPY.FAQ_ANSWERS.Q12_P4}</p>
</> </>
), ),
( (
@ -190,13 +140,8 @@ const FAQPage = ({location}: IFAQPageProps) => {
), ),
( (
<> <>
<p key={16}>{FAQS_COPY.FAQ_ANSWERS.Q16}</p> <p key={16}>{FAQS_COPY.FAQ_ANSWERS.Q16_P1}</p>
</> <p key={16}>{FAQS_COPY.FAQ_ANSWERS.Q16_P2}</p>
),
(
<>
<p key={17}>{FAQS_COPY.FAQ_ANSWERS.Q17_P1}</p>
<p>{FAQS_COPY.FAQ_ANSWERS.Q17_P2}</p>
</> </>
), ),
( (
@ -215,6 +160,16 @@ const FAQPage = ({location}: IFAQPageProps) => {
<p>{FAQS_COPY.FAQ_ANSWERS.Q20_P2}</p> <p>{FAQS_COPY.FAQ_ANSWERS.Q20_P2}</p>
</> </>
), ),
(
<>
<p key={21}>{FAQS_COPY.FAQ_ANSWERS.Q21}</p>
</>
),
(
<>
<p key={22}>{FAQS_COPY.FAQ_ANSWERS.Q22}</p>
</>
),
]; ];
@ -227,6 +182,7 @@ const FAQPage = ({location}: IFAQPageProps) => {
content: ANSWERS[questionNum], content: ANSWERS[questionNum],
expanded: false, expanded: false,
headingLevel: 'h2', headingLevel: 'h2',
className: '-faq',
}; };
}); });

View file

@ -1,18 +1,17 @@
import * as React from 'react';
import {Grid} from '@trussworks/react-uswds'; import {Grid} from '@trussworks/react-uswds';
import {useIntl} from 'gatsby-plugin-intl'; import {useIntl} from 'gatsby-plugin-intl';
import * as React from 'react';
import {useWindowSize} from 'react-use'; import {useWindowSize} from 'react-use';
import Categories from '../components/Categories'; import Categories from '../components/Categories';
import DatasetContainer from '../components/DatasetContainer'; import DatasetContainer from '../components/DatasetContainer';
import DatasetsButton from '../components/DatasetsButton';
import J40MainGridContainer from '../components/J40MainGridContainer'; import J40MainGridContainer from '../components/J40MainGridContainer';
import Layout from '../components/layout'; import Layout from '../components/layout';
import SubPageNav from '../components/SubPageNav'; import SubPageNav from '../components/SubPageNav';
import DatasetsButton from '../components/DatasetsButton';
import {USWDS_BREAKPOINTS, DATA_SURVEY_LINKS} from '../data/constants'; import {DATA_SURVEY_LINKS, PAGES_ENDPOINTS, USWDS_BREAKPOINTS} from '../data/constants';
import * as METHODOLOGY_COPY from '../data/copy/methodology'; import * as METHODOLOGY_COPY from '../data/copy/methodology';
import {PAGES_ENDPOINTS} from '../data/constants';
interface MethodPageProps { interface MethodPageProps {
location: Location; location: Location;
@ -22,8 +21,9 @@ const IndexPage = ({location}: MethodPageProps) => {
const intl = useIntl(); const intl = useIntl();
const {width} = useWindowSize(); const {width} = useWindowSize();
return ( return (
<Layout location={location} title={intl.formatMessage(METHODOLOGY_COPY.PAGE.TILE)}> <Layout location={location} title={intl.formatMessage(METHODOLOGY_COPY.PAGE.TITLE)}>
<J40MainGridContainer> <J40MainGridContainer>
@ -43,12 +43,11 @@ const IndexPage = ({location}: MethodPageProps) => {
<div> <div>
<ul> <ul>
<li> <li><p>{intl.formatMessage(METHODOLOGY_COPY.PAGE.PARA1_BULLET1)}</p></li>
{intl.formatMessage(METHODOLOGY_COPY.PAGE.PARA1_BULLET1)} <li><p>{intl.formatMessage(METHODOLOGY_COPY.PAGE.PARA1_BULLET2)}</p></li>
</li> <li><p>{intl.formatMessage(METHODOLOGY_COPY.PAGE.PARA1_BULLET3)}</p></li>
<li className={'j40-mt3'}> <li><p>{intl.formatMessage(METHODOLOGY_COPY.PAGE.PARA1_BULLET4)}</p></li>
{intl.formatMessage(METHODOLOGY_COPY.PAGE.PARA1_BULLET2)} <li><p>{intl.formatMessage(METHODOLOGY_COPY.PAGE.PARA1_BULLET5)}</p></li>
</li>
</ul> </ul>
</div> </div>
</section> </section>

View file

@ -140,34 +140,29 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div> </div>
</div> </div>
</section> </section>
</div>
</div>
<div> <div>
<img <div
alt="language icon for selecting language" class="usa-alert usa-alert--info"
src="test-file-stub" data-testid="alert"
/>
<a
class="usa-link"
href="#"
> >
English <div
</a> class="usa-alert__body"
<a
class="usa-link"
href="#"
> >
Español <h1
</a> class="usa-alert__heading"
>
Version 2.0 of the tool is now available
</h1>
<p
class="usa-alert__text"
>
The Council on Environmental Quality (CEQ) made the 2.0 version of the tool available on Dec 19, 2024.
</p>
</div> </div>
</div> </div>
</div> </div>
<div>
<div>
<strong>
This tool has been updated.
</strong>
The 1.0 version of the tool was released on Nov 22, 2022.
</div>
</div>
<div <div
class="grid-container-desktop-lg" class="grid-container-desktop-lg"
data-testid="gridContainer" data-testid="gridContainer"
@ -432,7 +427,6 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
<section> <section>
<p> <p>
In January of 2021, President Biden issued In January of 2021, President Biden issued
<a <a
class="usa-link usa-link--external" class="usa-link usa-link--external"
@ -443,12 +437,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
Executive Order 14008 Executive Order 14008
</a> </a>
. The order directed the Council on Environmental Quality (CEQ) to develop a new tool. This tool is called the Climate and Economic Justice Screening Tool. The tool has an interactive map and uses datasets that are indicators of burdens in eight categories: climate change, energy, health, housing, legacy pollution, transportation, water and wastewater, and workforce development. The tool uses this information to identify communities that are experiencing these burdens. These are the communities that are disadvantaged because they are overburdened and underserved. . The order directed the Council on Environmental Quality (CEQ) to develop a new tool. This tool is called the Climate and Economic Justice Screening Tool. The tool has an interactive map and uses datasets that are indicators of burdens in eight categories: climate change, energy, health, housing, legacy pollution, transportation, water and wastewater, and workforce development. The tool uses this information to identify communities that are experiencing these burdens. These are the communities that are disadvantaged because they are marginalized by underinvestment and overburdened by pollution.
</p> </p>
<p> <p>
Federal agencies will use the tool to help identify disadvantaged communities that will benefit from programs included in the Federal agencies will use the tool to help identify disadvantaged communities that will benefit from programs included in the
<a <a
class="usa-link usa-link--external" class="usa-link usa-link--external"
@ -460,7 +451,6 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
Justice40 Initiative Justice40 Initiative
</a> </a>
. The Justice40 Initiative seeks to deliver 40% of the overall benefits of investments in climate, clean energy, and related areas to disadvantaged communities. . The Justice40 Initiative seeks to deliver 40% of the overall benefits of investments in climate, clean energy, and related areas to disadvantaged communities.
</p> </p>
<div <div
class="j40-p-tag" class="j40-p-tag"
@ -503,17 +493,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div> </div>
<p> <p>
CEQ will update the tool each year based on public feedback, research, and the availability of new data. The current version of the tool is version 2.0. CEQ will continue to update the tool, after reviewing public feedback,
<a research, and the availability of new data. The current version of the
class="usa-link usa-link--external" tool is version 2.0.
data-cy=""
href="https://lp.constantcontactpages.com/su/Vm8pCFj/spring"
rel="noreferrer"
target="_blank"
>
Sign-up
</a>
for updates from CEQ.
</p> </p>
</section> </section>
@ -550,8 +532,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
statistical areas statistical areas
</a> </a>
are determined by the U.S. Census Bureau once every ten years. The tool utilizes the census tract boundaries from 2010. This was chosen because many of the data sources in the tool currently use the 2010 census boundaries. The tool also shows land within the boundaries of Federally Recognized Tribes and point locations for Alaska Native Villages. are determined by the U.S. Census Bureau once every ten years. The tool utilizes the census tract boundaries from 2020. This was chosen because many of the data sources in the tool currently use the 2010 census boundaries. The tool also shows land within the boundaries of Federally Recognized Tribes and point locations for Alaska Native Villages and landless Tribes in the lower 48 states.
</p> </p>
<p> <p>
The tool ranks most of the burdens using percentiles. Percentiles show how much burden each tract experiences compared to other tracts. Certain burdens use percentages or a simple yes/no. The tool ranks most of the burdens using percentiles. Percentiles show how much burden each tract experiences compared to other tracts. Certain burdens use percentages or a simple yes/no.
@ -665,7 +646,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</h3> </h3>
<p> <p>
The tool's data is available for The tools data is available for
<a <a
class="usa-link" class="usa-link"
href="/en/downloads" href="/en/downloads"
@ -979,19 +960,6 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
<a <a
class="usa-link usa-link--external footer-link-first-child" class="usa-link usa-link--external footer-link-first-child"
data-cy="whitehouse-gov"
href="https://www.whitehouse.gov/"
rel="noreferrer"
target="_blank"
>
Whitehouse.gov
</a>
</li>
<li
class="usa-footer__secondary-link"
>
<a
class="usa-link usa-link--external"
data-cy="freedom-of-information-act-(foia)" data-cy="freedom-of-information-act-(foia)"
href="https://www.whitehouse.gov/ceq/foia" href="https://www.whitehouse.gov/ceq/foia"
rel="noreferrer" rel="noreferrer"

View file

@ -140,34 +140,29 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div> </div>
</div> </div>
</section> </section>
</div>
</div>
<div> <div>
<img <div
alt="language icon for selecting language" class="usa-alert usa-alert--info"
src="test-file-stub" data-testid="alert"
/>
<a
class="usa-link"
href="#"
> >
English <div
</a> class="usa-alert__body"
<a
class="usa-link"
href="#"
> >
Español <h1
</a> class="usa-alert__heading"
>
Version 2.0 of the tool is now available
</h1>
<p
class="usa-alert__text"
>
The Council on Environmental Quality (CEQ) made the 2.0 version of the tool available on Dec 19, 2024.
</p>
</div> </div>
</div> </div>
</div> </div>
<div>
<div>
<strong>
This tool has been updated.
</strong>
The 1.0 version of the tool was released on Nov 22, 2022.
</div>
</div>
<div <div
class="grid-container-desktop-lg" class="grid-container-desktop-lg"
data-testid="gridContainer" data-testid="gridContainer"
@ -558,19 +553,6 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
<a <a
class="usa-link usa-link--external footer-link-first-child" class="usa-link usa-link--external footer-link-first-child"
data-cy="whitehouse-gov"
href="https://www.whitehouse.gov/"
rel="noreferrer"
target="_blank"
>
Whitehouse.gov
</a>
</li>
<li
class="usa-footer__secondary-link"
>
<a
class="usa-link usa-link--external"
data-cy="freedom-of-information-act-(foia)" data-cy="freedom-of-information-act-(foia)"
href="https://www.whitehouse.gov/ceq/foia" href="https://www.whitehouse.gov/ceq/foia"
rel="noreferrer" rel="noreferrer"

View file

@ -140,34 +140,29 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div> </div>
</div> </div>
</section> </section>
</div>
</div>
<div> <div>
<img <div
alt="language icon for selecting language" class="usa-alert usa-alert--info"
src="test-file-stub" data-testid="alert"
/>
<a
class="usa-link"
href="#"
> >
English <div
</a> class="usa-alert__body"
<a
class="usa-link"
href="#"
> >
Español <h1
</a> class="usa-alert__heading"
>
Version 2.0 of the tool is now available
</h1>
<p
class="usa-alert__text"
>
The Council on Environmental Quality (CEQ) made the 2.0 version of the tool available on Dec 19, 2024.
</p>
</div> </div>
</div> </div>
</div> </div>
<div>
<div>
<strong>
This tool has been updated.
</strong>
The 1.0 version of the tool was released on Nov 22, 2022.
</div>
</div>
<div <div
class="grid-container-desktop-lg" class="grid-container-desktop-lg"
data-testid="gridContainer" data-testid="gridContainer"
@ -458,7 +453,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
<div> <div>
<div> <div>
Version 2.0 Release update - Nov 22, 2022 Version 2.0 Release update - Dec 19, 2024
</div> </div>
<div> <div>
New & improved New & improved
@ -858,19 +853,6 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
<a <a
class="usa-link usa-link--external footer-link-first-child" class="usa-link usa-link--external footer-link-first-child"
data-cy="whitehouse-gov"
href="https://www.whitehouse.gov/"
rel="noreferrer"
target="_blank"
>
Whitehouse.gov
</a>
</li>
<li
class="usa-footer__secondary-link"
>
<a
class="usa-link usa-link--external"
data-cy="freedom-of-information-act-(foia)" data-cy="freedom-of-information-act-(foia)"
href="https://www.whitehouse.gov/ceq/foia" href="https://www.whitehouse.gov/ceq/foia"
rel="noreferrer" rel="noreferrer"

View file

@ -140,34 +140,29 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div> </div>
</div> </div>
</section> </section>
</div>
</div>
<div> <div>
<img <div
alt="language icon for selecting language" class="usa-alert usa-alert--info"
src="test-file-stub" data-testid="alert"
/>
<a
class="usa-link"
href="#"
> >
English <div
</a> class="usa-alert__body"
<a
class="usa-link"
href="#"
> >
Español <h1
</a> class="usa-alert__heading"
>
Version 2.0 of the tool is now available
</h1>
<p
class="usa-alert__text"
>
The Council on Environmental Quality (CEQ) made the 2.0 version of the tool available on Dec 19, 2024.
</p>
</div> </div>
</div> </div>
</div> </div>
<div>
<div>
<strong>
This tool has been updated.
</strong>
The 1.0 version of the tool was released on Nov 22, 2022.
</div>
</div>
<div <div
class="grid-container-desktop-lg" class="grid-container-desktop-lg"
data-testid="gridContainer" data-testid="gridContainer"
@ -436,7 +431,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
data-testid="accordion" data-testid="accordion"
> >
<h2 <h2
class="usa-accordion__heading" class="usa-accordion__heading -faq"
> >
<button <button
aria-controls="faq-id-0" aria-controls="faq-id-0"
@ -445,66 +440,24 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
data-testid="accordionButton_faq-id-0" data-testid="accordionButton_faq-id-0"
type="button" type="button"
> >
Q: What is the Climate and Economic Justice Screening Tool (CEJST)? What is the Climate and Economic Justice Screening Tool (CEJST)?
</button> </button>
</h2> </h2>
<div <div
class="usa-accordion__content usa-prose" class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-0" data-testid="accordionItem_faq-id-0"
hidden="" hidden=""
id="faq-id-0" id="faq-id-0"
> >
<p> <p>
The CEJST is a critical component of the Biden-Harris Administrations historic commitment to advancing environmental justice. In The CEJST is a geospatial mapping tool that identifies disadvantaged communities that face burdens. The tool has an interactive map and uses datasets that are indicators of burdens.
<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>
<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>
<a
class="usa-link usa-link--external"
data-cy=""
href="https://www.whitehouse.gov/wp-content/uploads/2023/01/M-23-09_Signed_CEQ_CPO.pdf"
rel="noreferrer"
target="_blank"
>
Memorandum
</a>
on using the CEJST for the Justice40 Initiative
</li>
<li>
<a
class="usa-link usa-link--external"
data-cy=""
href="undefined/data-versions/2.0/data/score/downloadable/CEQ-CEJST-Instructions.pdf"
rel="noreferrer"
target="_blank"
>
Instructions
</a>
to Federal agencies on using the CEJST
</li>
</ul>
<p> <p>
The public can find communities of interest and provide feedback. This feedback will be used to improve the tool. The public can find communities of interest and provide feedback. This feedback will be used to improve the tool.
</p> </p>
</div> </div>
<h2 <h2
class="usa-accordion__heading" class="usa-accordion__heading -faq"
> >
<button <button
aria-controls="faq-id-1" aria-controls="faq-id-1"
@ -513,40 +466,31 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
data-testid="accordionButton_faq-id-1" data-testid="accordionButton_faq-id-1"
type="button" type="button"
> >
Q: How does the tool identify and define communities? How does the tool identify and define communities?
</button> </button>
</h2> </h2>
<div <div
class="usa-accordion__content usa-prose" class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-1" data-testid="accordionItem_faq-id-1"
hidden="" hidden=""
id="faq-id-1" id="faq-id-1"
> >
<p> <p>
<a The CEJST uses datasets that are indicators of burden related to climate change and the environment to assess communities that are disadvantaged by these burdens. They are also related to health and lack of economic opportunity.
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>
<p> <p>
The tool highlights disadvantaged communities across all 50 states, the District of Columbia, and the U.S. territories. Communities are considered disadvantaged: The tool highlights disadvantaged communities across all 50 states, the District of Columbia, and the U.S. territories. Communities are shown on the map as disadvantaged:
</p> </p>
<ul> <ul>
<li> <li>
If they are in a census tract that meets the thresholds for at least one of the tools categories of burden, or If they are in a census tract that meets the threshold for at least one of the tools categories of burden, or
</li> </li>
<li> <li>
If they are on land within the boundaries of Federally Recognized Tribes If they are on land within the boundaries of Federally Recognized Tribes
</li> </li>
</ul> </ul>
<p> <p>
Not all disadvantaged communities can be shown on the map. Some communities 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. Not all disadvantaged communities can be shown on the map. The map shows point locations for Alaska Native Villages and landless Federally Recognized Tribes in the lower 48 states. Some communities do not live in just one place. This tool focuses on identifying communities that can be geographically defined.
</p> </p>
<p> <p>
The tool uses census tracts. Census tracts are small units of geography. Census tract boundaries for The tool uses census tracts. Census tracts are small units of geography. Census tract boundaries for
@ -559,11 +503,14 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
statistical areas statistical areas
</a> </a>
are determined by the U.S. Census Bureau once every ten years. The tool utilizes the census tract boundaries from 2010. This was chosen primarily because many of the data sources in the tool currently use the 2010 census boundaries. are determined by the U.S. Census Bureau once every ten years. The tool utilizes the census tract boundaries from 2010. Tracts that were identified as disadvantaged in the 1.0 version of the tool remain disadvantaged in the 2.0 version of the tool.
</p>
<p>
Due to limited data availability, tracts in American Samoa, Guam, the Northern Mariana Islands, and the U.S. Virgin Islands are considered disadvantaged if they meet the low income threshold only.
</p> </p>
</div> </div>
<h2 <h2
class="usa-accordion__heading" class="usa-accordion__heading -faq"
> >
<button <button
aria-controls="faq-id-2" aria-controls="faq-id-2"
@ -572,11 +519,11 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
data-testid="accordionButton_faq-id-2" data-testid="accordionButton_faq-id-2"
type="button" type="button"
> >
Q: Is race included in the tools methodology? Is race included in the tools methodology?
</button> </button>
</h2> </h2>
<div <div
class="usa-accordion__content usa-prose" class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-2" data-testid="accordionItem_faq-id-2"
hidden="" hidden=""
id="faq-id-2" id="faq-id-2"
@ -592,7 +539,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</p> </p>
</div> </div>
<h2 <h2
class="usa-accordion__heading" class="usa-accordion__heading -faq"
> >
<button <button
aria-controls="faq-id-3" aria-controls="faq-id-3"
@ -601,17 +548,17 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
data-testid="accordionButton_faq-id-3" data-testid="accordionButton_faq-id-3"
type="button" type="button"
> >
Q: Does the Climate and Economic Justice Screening Tool (CEJST) include the U.S. territories? Does the tool include the U.S. territories?
</button> </button>
</h2> </h2>
<div <div
class="usa-accordion__content usa-prose" class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-3" data-testid="accordionItem_faq-id-3"
hidden="" hidden=""
id="faq-id-3" id="faq-id-3"
> >
<p> <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. Yes, version 2.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>
<p> <p>
<strong> <strong>
@ -623,11 +570,11 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<strong> <strong>
American Samoa, Guam, the Northern Mariana Islands, and the U.S. Virgin Islands: American Samoa, Guam, the Northern Mariana Islands, and the U.S. Virgin Islands:
</strong> </strong>
For these U.S. territories, the tool uses the following data: unemployment, poverty, low median income, and high school education. These burdens are in the workforce development category. For these U.S. Territories, the tool uses the following data: unemployment, poverty, low median income, and high school education. These burdens are in the workforce development category. Due to limited data availability, tracts in these U.S. Territories are considered disadvantaged if they meet the low income only.
</p> </p>
</div> </div>
<h2 <h2
class="usa-accordion__heading" class="usa-accordion__heading -faq"
> >
<button <button
aria-controls="faq-id-4" aria-controls="faq-id-4"
@ -636,18 +583,18 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
data-testid="accordionButton_faq-id-4" data-testid="accordionButton_faq-id-4"
type="button" type="button"
> >
Q: Does the tool include Tribal Nations? Does the tool include Tribal Nations?
</button> </button>
</h2> </h2>
<div <div
class="usa-accordion__content usa-prose" class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-4" data-testid="accordionItem_faq-id-4"
hidden="" hidden=""
id="faq-id-4" id="faq-id-4"
> >
<p> <p>
To respect Tribal sovereignty and self-government and to fulfill Federal trust and treaty responsibilities to Tribal Nations, land within the boundaries of Federally Recognized tribes are highlighted as disadvantaged on the map. Alaska Native Villages are included as point locations that are smaller than census tracts. The boundaries of census tracts and the lands of Federally Recognized Tribes are different. To respect Tribal sovereignty and self-government and to fulfill Federal trust and treaty responsibilities to Tribal Nations, land within the boundaries of Federally Recognized Tribes are highlighted as disadvantaged on the map. Alaska Native Villages are included as point locations that are smaller than census tracts. The boundaries of census tracts and the lands of Federally Recognized Tribes are different.
</p> </p>
<p> <p>
@ -674,7 +621,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
Action Plan Action Plan
</a> </a>
for Consultation and Coordination with Tribal Nations, President Bidens for Consultation and Coordination with Tribal Nations, the
<a <a
class="usa-link usa-link--external" class="usa-link usa-link--external"
data-cy="" data-cy=""
@ -698,7 +645,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</p> </p>
</div> </div>
<h2 <h2
class="usa-accordion__heading" class="usa-accordion__heading -faq"
> >
<button <button
aria-controls="faq-id-5" aria-controls="faq-id-5"
@ -707,11 +654,11 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
data-testid="accordionButton_faq-id-5" data-testid="accordionButton_faq-id-5"
type="button" type="button"
> >
Q: Why do some areas of the map have different shades? Why do some areas of the map have different shades?
</button> </button>
</h2> </h2>
<div <div
class="usa-accordion__content usa-prose" class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-5" data-testid="accordionItem_faq-id-5"
hidden="" hidden=""
id="faq-id-5" id="faq-id-5"
@ -753,11 +700,11 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div> </div>
</div> </div>
<p> <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 within the boundaries of Federally Recognized Tribes. 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 contain land within the boundaries of Federally Recognized Tribes.
</p> </p>
</div> </div>
<h2 <h2
class="usa-accordion__heading" class="usa-accordion__heading -faq"
> >
<button <button
aria-controls="faq-id-6" aria-controls="faq-id-6"
@ -766,11 +713,11 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
data-testid="accordionButton_faq-id-6" data-testid="accordionButton_faq-id-6"
type="button" type="button"
> >
Q: Why does the tool have “partially disadvantaged” census tracts? Why does the tool have “partially disadvantaged” census tracts?
</button> </button>
</h2> </h2>
<div <div
class="usa-accordion__content usa-prose" class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-6" data-testid="accordionItem_faq-id-6"
hidden="" hidden=""
id="faq-id-6" id="faq-id-6"
@ -780,7 +727,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</p> </p>
</div> </div>
<h2 <h2
class="usa-accordion__heading" class="usa-accordion__heading -faq"
> >
<button <button
aria-controls="faq-id-7" aria-controls="faq-id-7"
@ -789,182 +736,20 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
data-testid="accordionButton_faq-id-7" data-testid="accordionButton_faq-id-7"
type="button" type="button"
> >
Q: How does this tool relate to the Justice40 Initiative? How is the Climate and Economic Justice Screening Tool (CEJST) different from other Federal environmental screening tools, such as EJScreen?
</button> </button>
</h2> </h2>
<div <div
class="usa-accordion__content usa-prose" class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-7" data-testid="accordionItem_faq-id-7"
hidden="" hidden=""
id="faq-id-7" id="faq-id-7"
> >
<p> <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. The CEJST uses lessons learned from the EPA's EJScreen. EJScreen is an environmental justice mapping and screening tool. EJScreen shows some environmental and demographic information and combines that information together into indices.
</p> </p>
<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. In contrast, the CEJST helps to identify geographically defined disadvantaged communities that are marginalized by underinvestment and overburdened by pollution.
</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>
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 tool 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 other Federal environmental screening tools, such as 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 and combines that information together into indices. The EPA, Federal agencies, and state and local governments will continue to use EJScreen to understand and analyze for environmental and EJ issues. 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> </p>
<p> <p>
<a <a
@ -980,23 +765,23 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</p> </p>
</div> </div>
<h2 <h2
class="usa-accordion__heading" class="usa-accordion__heading -faq"
> >
<button <button
aria-controls="faq-id-12" aria-controls="faq-id-8"
aria-expanded="false" aria-expanded="false"
class="usa-accordion__button" class="usa-accordion__button"
data-testid="accordionButton_faq-id-12" data-testid="accordionButton_faq-id-8"
type="button" type="button"
> >
Q: How is this tool different from state screening tools? How is this tool different from state screening tools?
</button> </button>
</h2> </h2>
<div <div
class="usa-accordion__content usa-prose" class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-12" data-testid="accordionItem_faq-id-8"
hidden="" hidden=""
id="faq-id-12" id="faq-id-8"
> >
<p> <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. 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.
@ -1006,46 +791,56 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</p> </p>
</div> </div>
<h2 <h2
class="usa-accordion__heading" class="usa-accordion__heading -faq"
> >
<button <button
aria-controls="faq-id-13" aria-controls="faq-id-9"
aria-expanded="false" aria-expanded="false"
class="usa-accordion__button" class="usa-accordion__button"
data-testid="accordionButton_faq-id-13" data-testid="accordionButton_faq-id-9"
type="button" type="button"
> >
Q: How were the White House Environmental Justice Advisory Council (WHEJAC) recommendations used for this tool? How were the White House Environmental Justice Advisory Councils (WHEJAC) recommendations considered for this tool?
</button> </button>
</h2> </h2>
<div <div
class="usa-accordion__content usa-prose" class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-13" data-testid="accordionItem_faq-id-9"
hidden="" hidden=""
id="faq-id-13" id="faq-id-9"
> >
<p> <p>
The WHEJAC provided recommendations on the Climate and Economic Justice Screening Tool (CEJST). The CEJST follows many of these recommendations. The WHEJAC provided
<a
class="usa-link usa-link--external"
data-cy=""
href="https://www.epa.gov/environmentaljustice/white-house-environmental-justice-advisory-council"
rel="noreferrer"
target="_blank"
>
recommendations
</a>
on the Climate and Economic Justice Screening Tool (CEJST). The CEJST versions 1.0 and 2.0 include components that were informed by many of these recommendations.
</p> </p>
</div> </div>
<h2 <h2
class="usa-accordion__heading" class="usa-accordion__heading -faq"
> >
<button <button
aria-controls="faq-id-14" aria-controls="faq-id-10"
aria-expanded="false" aria-expanded="false"
class="usa-accordion__button" class="usa-accordion__button"
data-testid="accordionButton_faq-id-14" data-testid="accordionButton_faq-id-10"
type="button" type="button"
> >
Q: Can the public provide feedback on this tool? Can the public provide feedback on this tool?
</button> </button>
</h2> </h2>
<div <div
class="usa-accordion__content usa-prose" class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-14" data-testid="accordionItem_faq-id-10"
hidden="" hidden=""
id="faq-id-14" id="faq-id-10"
> >
<p> <p>
Yes. The CEJST website has multiple ways to offer feedback on the tool. Yes. The CEJST website has multiple ways to offer feedback on the tool.
@ -1095,26 +890,26 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</ul> </ul>
</div> </div>
<h2 <h2
class="usa-accordion__heading" class="usa-accordion__heading -faq"
> >
<button <button
aria-controls="faq-id-15" aria-controls="faq-id-11"
aria-expanded="false" aria-expanded="false"
class="usa-accordion__button" class="usa-accordion__button"
data-testid="accordionButton_faq-id-15" data-testid="accordionButton_faq-id-11"
type="button" type="button"
> >
Q: Why was the CEJST initially released in a beta version? When was the CEJST released?
</button> </button>
</h2> </h2>
<div <div
class="usa-accordion__content usa-prose" class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-15" data-testid="accordionItem_faq-id-11"
hidden="" hidden=""
id="faq-id-15" id="faq-id-11"
> >
<p> <p>
CEQ launched a beta or draft version of the CEJST on February 18, 2022 with support from the U.S. Digital Service (USDS), and in collaboration with other Federal agencies and departments. The CEJST was released in a beta version in order to seek CEQ launched a beta—or draft—version of the CEJST in February 2022 with support from the U.S. Digital Service (USDS), and in collaboration with other Federal agencies and departments. The CEJST was released in a beta version in order to seek
<a <a
class="usa-link usa-link--external" class="usa-link usa-link--external"
data-cy="" data-cy=""
@ -1138,7 +933,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<a <a
class="usa-link usa-link--external" class="usa-link usa-link--external"
data-cy="" data-cy=""
href="https://www.whitehouse.gov/ceq/news-updates/2022/04/21/ceq-extends-public-comment-period-on-beta-version-of-the-climate-and-economic-justice-screening-tool/" href="https://www.youtube.com/watch?v=QwHWcXbhw28"
rel="noreferrer" rel="noreferrer"
target="_blank" target="_blank"
> >
@ -1146,28 +941,8 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</a> </a>
sessions on the beta version of the CEJST. All of this feedback on the beta version of the CEJST helped to inform the release of version 1.0 of the CEJST. sessions on the beta version of the CEJST. All of this feedback on the beta version of the CEJST helped to inform the release of version 1.0 of the CEJST.
</p> </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> <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 The 1.0 version was released in
<a <a
class="usa-link usa-link--external" class="usa-link usa-link--external"
data-cy="" data-cy=""
@ -1175,32 +950,29 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
rel="noreferrer" rel="noreferrer"
target="_blank" target="_blank"
> >
November, 2022 November 2022
</a> </a>
. The tool is no longer in beta. . The current version, version 2.0, was released in December 2024.
</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> </p>
</div> </div>
<h2 <h2
class="usa-accordion__heading" class="usa-accordion__heading -faq"
> >
<button <button
aria-controls="faq-id-17" aria-controls="faq-id-12"
aria-expanded="false" aria-expanded="false"
class="usa-accordion__button" class="usa-accordion__button"
data-testid="accordionButton_faq-id-17" data-testid="accordionButton_faq-id-12"
type="button" type="button"
> >
Q. How does the Council on Environmental Quality (CEQ) keep people informed about the tool? How does the Council on Environmental Quality (CEQ) keep people informed about the tool?
</button> </button>
</h2> </h2>
<div <div
class="usa-accordion__content usa-prose" class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-17" data-testid="accordionItem_faq-id-12"
hidden="" hidden=""
id="faq-id-17" id="faq-id-12"
> >
<p> <p>
<a <a
@ -1210,29 +982,29 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
rel="noreferrer" rel="noreferrer"
target="_blank" target="_blank"
> >
Sign-up Sign up
</a> </a>
to receive updates on the Climate and Economic Justice Screening Tool (CEJST) and other environmental justice news from CEQ. to receive updates on the Climate and Economic Justice Screening Tool (CEJST) and other environmental justice news from CEQ.
</p> </p>
</div> </div>
<h2 <h2
class="usa-accordion__heading" class="usa-accordion__heading -faq"
> >
<button <button
aria-controls="faq-id-18" aria-controls="faq-id-13"
aria-expanded="false" aria-expanded="false"
class="usa-accordion__button" class="usa-accordion__button"
data-testid="accordionButton_faq-id-18" data-testid="accordionButton_faq-id-13"
type="button" type="button"
> >
Q: What files and documentation are available from the tool? What files and documentation are available from the tool?
</button> </button>
</h2> </h2>
<div <div
class="usa-accordion__content usa-prose" class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-18" data-testid="accordionItem_faq-id-13"
hidden="" hidden=""
id="faq-id-18" id="faq-id-13"
> >
<p> <p>
The Climate and Economic Justice Screening Tool (CEJST) has The Climate and Economic Justice Screening Tool (CEJST) has
@ -1242,27 +1014,34 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
downloads downloads
</a> </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. for the current version available. Spreadsheets (.xlxs) and (.csv) contain the tools definitions and data. These 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. Information from previous versions of the tool is available on the
<a
class="usa-link"
href="/en/previous-versions"
>
previous versions
</a>
page.
</p> </p>
</div> </div>
<h2 <h2
class="usa-accordion__heading" class="usa-accordion__heading -faq"
> >
<button <button
aria-controls="faq-id-19" aria-controls="faq-id-14"
aria-expanded="false" aria-expanded="false"
class="usa-accordion__button" class="usa-accordion__button"
data-testid="accordionButton_faq-id-19" data-testid="accordionButton_faq-id-14"
type="button" type="button"
> >
Q: How does the tools shapefile work? How do the tools shapefiles work?
</button> </button>
</h2> </h2>
<div <div
class="usa-accordion__content usa-prose" class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-19" data-testid="accordionItem_faq-id-14"
hidden="" hidden=""
id="faq-id-19" id="faq-id-14"
> >
<p> <p>
The tools shapefile can be uploaded into other mapping programs such as Esri. The tools shapefile can be uploaded into other mapping programs such as Esri.
@ -1291,6 +1070,62 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
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. 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> </p>
</div> </div>
<h2
class="usa-accordion__heading -faq"
>
<button
aria-controls="faq-id-15"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-15"
type="button"
>
Why are some tracts disadvantaged because they were disadvantaged in version 1.0 of the tool?
</button>
</h2>
<div
class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-15"
hidden=""
id="faq-id-15"
>
<p>
These tracts that have been "grandfathered" for at least two years. This helps to reduce disruption and to support a smooth transition for agencies, applicants, and the public as new versions of the tool are released. The tools
<a
class="usa-link usa-link--external"
data-cy=""
href="undefined/data-versions/2.0/data/score/downloadable/CEQ-CEJST-Instructions.pdf"
rel="noreferrer"
target="_blank"
>
instructions
</a>
have more information about time-limited grandfathering.
</p>
</div>
<h2
class="usa-accordion__heading -faq"
>
<button
aria-controls="faq-id-16"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-16"
type="button"
>
Why are some tracts disadvantaged in certain U.S. Territories because they only meet the low income threshold?
</button>
</h2>
<div
class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-16"
hidden=""
id="faq-id-16"
>
<p>
Because some nationally-consistent datasets on indicators of environmental burden used in the tool do not currently include data from certain U.S. Territories, tracts in these Territories are considered disadvantaged if they meet the low income threshold.
</p>
</div>
</div> </div>
</section> </section>
</div> </div>
@ -1392,19 +1227,6 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
<a <a
class="usa-link usa-link--external footer-link-first-child" class="usa-link usa-link--external footer-link-first-child"
data-cy="whitehouse-gov"
href="https://www.whitehouse.gov/"
rel="noreferrer"
target="_blank"
>
Whitehouse.gov
</a>
</li>
<li
class="usa-footer__secondary-link"
>
<a
class="usa-link usa-link--external"
data-cy="freedom-of-information-act-(foia)" data-cy="freedom-of-information-act-(foia)"
href="https://www.whitehouse.gov/ceq/foia" href="https://www.whitehouse.gov/ceq/foia"
rel="noreferrer" rel="noreferrer"

View file

@ -140,34 +140,29 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div> </div>
</div> </div>
</section> </section>
</div>
</div>
<div> <div>
<img <div
alt="language icon for selecting language" class="usa-alert usa-alert--info"
src="test-file-stub" data-testid="alert"
/>
<a
class="usa-link"
href="#"
> >
English <div
</a> class="usa-alert__body"
<a
class="usa-link"
href="#"
> >
Español <h1
</a> class="usa-alert__heading"
>
Version 2.0 of the tool is now available
</h1>
<p
class="usa-alert__text"
>
The Council on Environmental Quality (CEQ) made the 2.0 version of the tool available on Dec 19, 2024.
</p>
</div> </div>
</div> </div>
</div> </div>
<div>
<div>
<strong>
This tool has been updated.
</strong>
The 1.0 version of the tool was released on Nov 22, 2022.
</div>
</div>
<div <div
class="grid-container-desktop-lg" class="grid-container-desktop-lg"
data-testid="gridContainer" data-testid="gridContainer"
@ -437,16 +432,39 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div> <div>
<ul> <ul>
<li> <li>
<p>
If they are in census tracts that meet the thresholds for at least one of the tools categories of burden, or If they are in census tracts that meet the thresholds for at least one of the tools categories of burden, or
</p>
</li> </li>
<li <li>
class="j40-mt3" <p>
>
If they are on land within the boundaries of Federally Recognized Tribes If they are on land within the boundaries of Federally Recognized Tribes.
</p>
</li>
<li>
<p>
If the census tract ID was identified as disadvantaged in version 1.0, then the census tract is considered disadvantaged in version 2.0.
</p>
</li>
<li>
<p>
If the tract is a new tract in 2020, then the percentage of land that it shared, if any, with a previously disadvantaged tract will be considered disadvantaged.
</p>
</li>
<li>
<p>
Additionally, census tracts in certain U.S. Territories are considered disadvantaged if they meet the low income threshold only. This is because these Territories are not included in each of the nationally-consistent datasets on environmental and climate burdens currently used in the tool.
</p>
</li> </li>
</ul> </ul>
</div> </div>
@ -1054,7 +1072,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
<p> <p>
The tool's datasets are public and consistent nationwide. They come from different sources and are high quality. The Council on Environmental Quality (CEQ) chose them based on relevance, availability, and quality. They identify climate, environmental, and other burdens on communities. The tools datasets are public and consistent nationwide. They come from different sources and are high quality. The Council on Environmental Quality (CEQ) chose them based on relevance, availability, and quality. They identify climate, environmental, and other burdens on communities.
</p> </p>
<p> <p>
@ -1102,15 +1120,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div <div
id="census-tract-info" id="census-tract-info"
> >
<div> <div
<div> class=""
<span
class="usa-tag"
data-testid="tag"
> >
NEW
</span>
</div>
<h3> <h3>
Census tract information and demographics Census tract information and demographics
</h3> </h3>
@ -1127,7 +1139,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<strong> <strong>
Note: Note:
</strong> </strong>
The demographics are included as information only and are not considered as a part of the tool's methodology. The demographics are included as information only and are not considered as a part of the tools methodology.
</p> </p>
</div> </div>
@ -1179,7 +1191,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div> </div>
<div> <div>
Percent of a census tract's population in households where household income is at or below Percent of a census tracts population in households where household income is at or below
200% of the Federal poverty level, not including students enrolled in higher education. 200% of the Federal poverty level, not including students enrolled in higher education.
</div> </div>
@ -1387,15 +1399,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div <div
id="flood-risk" id="flood-risk"
> >
<div> <div
<div> class=""
<span
class="usa-tag"
data-testid="tag"
> >
NEW
</span>
</div>
<h3> <h3>
Projected flood risk Projected flood risk
</h3> </h3>
@ -1444,15 +1450,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div <div
id="wildfire-risk" id="wildfire-risk"
> >
<div> <div
<div> class=""
<span
class="usa-tag"
data-testid="tag"
> >
NEW
</span>
</div>
<h3> <h3>
Projected wildfire risk Projected wildfire risk
</h3> </h3>
@ -1819,22 +1819,16 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div <div
id="hist-underinv" id="hist-underinv"
> >
<div> <div
<div> class=""
<span
class="usa-tag"
data-testid="tag"
> >
NEW
</span>
</div>
<h3> <h3>
Historic underinvestment Historic underinvestment
</h3> </h3>
</div> </div>
<div> <div>
Census tracts that experienced historic underinvestment based on redlining maps created by the federal governments Home Owners Loan Corporation (HOLC) between 1935 and 1940. The tool uses the National Community Reinvestment Coalitions Census tracts that experienced historic underinvestment based on redlining maps created by the Federal governments Home Owners Loan Corporation (HOLC) between 1935 and 1940. The tool uses the National Community Reinvestment Coalitions
<a <a
class="usa-link usa-link--external" class="usa-link usa-link--external"
data-cy="" data-cy=""
@ -1888,7 +1882,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
Dataset of formerly redlined areas Dataset of formerly redlined areas
</a> </a>
using digitized maps from the Home Owners Loan Corporation (HOLC), using 2010 census boundaries using digitized maps from the Home Owners Loan Corporation (HOLC), using 2010 census boundaries
</li> </li>
<li> <li>
<span> <span>
@ -1952,15 +1946,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div <div
id="green-space" id="green-space"
> >
<div> <div
<div> class=""
<span
class="usa-tag"
data-testid="tag"
> >
NEW
</span>
</div>
<h3> <h3>
Lack of green space Lack of green space
</h3> </h3>
@ -2042,15 +2030,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div <div
id="indoor-plumb" id="indoor-plumb"
> >
<div> <div
<div> class=""
<span
class="usa-tag"
data-testid="tag"
> >
NEW
</span>
</div>
<h3> <h3>
Lack of indoor plumbing Lack of indoor plumbing
</h3> </h3>
@ -2150,15 +2132,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div <div
id="mine-land" id="mine-land"
> >
<div> <div
<div> class=""
<span
class="usa-tag"
data-testid="tag"
> >
NEW
</span>
</div>
<h3> <h3>
Abandoned mine land Abandoned mine land
</h3> </h3>
@ -2207,15 +2183,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div <div
id="fuds" id="fuds"
> >
<div> <div
<div> class=""
<span
class="usa-tag"
data-testid="tag"
> >
NEW
</span>
</div>
<h3> <h3>
Formerly Used Defense Sites Formerly Used Defense Sites
</h3> </h3>
@ -2304,8 +2274,8 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
Treatment, Storage, and Disposal Facilities (TSDF) data Treatment, Storage, and Disposal Facilities (TSDF) data
</a> </a>
from 2020 calculated from EPA's RCRA database as compiled from 2020 calculated from EPAs RCRA database as compiled
by EPA's EJScreen by EPAs EJScreen
</li> </li>
<li> <li>
@ -2459,7 +2429,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
National Air Toxics Assessment (NATA) National Air Toxics Assessment (NATA)
</a> </a>
from 2014 as compiled by EPA's EJScreen from 2014 as compiled by EPAs EJScreen
</li> </li>
<li> <li>
<span> <span>
@ -2472,15 +2442,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div <div
id="trans-barrier" id="trans-barrier"
> >
<div> <div
<div> class=""
<span
class="usa-tag"
data-testid="tag"
> >
NEW
</span>
</div>
<h3> <h3>
Transportation barriers Transportation barriers
</h3> </h3>
@ -2578,7 +2542,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
Traffic data Traffic data
</a> </a>
from 2017 as compiled by EPA's EJScreen from 2017 as compiled by EPAs EJScreen
</li> </li>
<li> <li>
<span> <span>
@ -2591,15 +2555,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div <div
id="leaky-uwt" id="leaky-uwt"
> >
<div> <div
<div> class=""
<span
class="usa-tag"
data-testid="tag"
> >
NEW
</span>
</div>
<h3> <h3>
Underground storage tanks and releases Underground storage tanks and releases
</h3> </h3>
@ -2636,7 +2594,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
UST Finder UST Finder
</a> </a>
from 2021 as compiled by EPA's EJScreen from 2021 as compiled by EPAs EJScreen
</li> </li>
<li> <li>
@ -2773,7 +2731,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div> </div>
<div> <div>
Low median income calculated as a share of the areas median income. Low median income is calculated as the median income of the tract divided by the income in the Metropolitan Statistical Area, unless the tract is a rural tract. For rural tracts, it is calculated as a percent of the states median income.
</div> </div>
<div> <div>
@ -2828,13 +2786,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<a <a
class="usa-link usa-link--external" class="usa-link usa-link--external"
data-cy="" data-cy=""
href="https://www.census.gov/data/developers/data-sets/acs-5year/2010.html" href="https://www.census.gov/data/developers/data-sets/decennial-census.2020.html"
rel="noreferrer" rel="noreferrer"
target="_blank" target="_blank"
> >
American Community Survey Decennial Census
</a> </a>
from 2010 from 2020
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</li> </li>
<li> <li>
<span> <span>
@ -2901,13 +2865,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<a <a
class="usa-link usa-link--external" class="usa-link usa-link--external"
data-cy="" data-cy=""
href="https://www.census.gov/data/developers/data-sets/acs-5year/2010.html" href="https://www.census.gov/data/developers/data-sets/decennial-census.2020.html"
rel="noreferrer" rel="noreferrer"
target="_blank" target="_blank"
> >
American Community Survey Decennial Census
</a> </a>
from 2010 from 2020
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</li> </li>
<li> <li>
<span> <span>
@ -2974,13 +2944,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<a <a
class="usa-link usa-link--external" class="usa-link usa-link--external"
data-cy="" data-cy=""
href="https://www.census.gov/data/developers/data-sets/acs-5year/2010.html" href="https://www.census.gov/data/developers/data-sets/decennial-census.2020.html"
rel="noreferrer" rel="noreferrer"
target="_blank" target="_blank"
> >
American Community Survey Decennial Census
</a> </a>
from 2010 from 2020
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</li> </li>
<li> <li>
<span> <span>
@ -3047,13 +3023,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<a <a
class="usa-link usa-link--external" class="usa-link usa-link--external"
data-cy="" data-cy=""
href="https://www.census.gov/data/developers/data-sets/acs-5year/2010.html" href="https://www.census.gov/data/developers/data-sets/decennial-census.2020.html"
rel="noreferrer" rel="noreferrer"
target="_blank" target="_blank"
> >
American Community Survey Decennial Census
</a> </a>
from 2010 from 2020
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</li> </li>
<li> <li>
<span> <span>
@ -3067,15 +3049,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div <div
id="tribal-lands" id="tribal-lands"
> >
<div> <div
<div> class=""
<span
class="usa-tag"
data-testid="tag"
> >
NEW
</span>
</div>
<h3> <h3>
Tribes Tribes
</h3> </h3>
@ -3239,19 +3215,6 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
<a <a
class="usa-link usa-link--external footer-link-first-child" class="usa-link usa-link--external footer-link-first-child"
data-cy="whitehouse-gov"
href="https://www.whitehouse.gov/"
rel="noreferrer"
target="_blank"
>
Whitehouse.gov
</a>
</li>
<li
class="usa-footer__secondary-link"
>
<a
class="usa-link usa-link--external"
data-cy="freedom-of-information-act-(foia)" data-cy="freedom-of-information-act-(foia)"
href="https://www.whitehouse.gov/ceq/foia" href="https://www.whitehouse.gov/ceq/foia"
rel="noreferrer" rel="noreferrer"

View file

@ -140,34 +140,29 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div> </div>
</div> </div>
</section> </section>
</div>
</div>
<div> <div>
<img <div
alt="language icon for selecting language" class="usa-alert usa-alert--info"
src="test-file-stub" data-testid="alert"
/>
<a
class="usa-link"
href="#"
> >
English <div
</a> class="usa-alert__body"
<a
class="usa-link"
href="#"
> >
Español <h1
</a> class="usa-alert__heading"
>
Version 2.0 of the tool is now available
</h1>
<p
class="usa-alert__text"
>
The Council on Environmental Quality (CEQ) made the 2.0 version of the tool available on Dec 19, 2024.
</p>
</div> </div>
</div> </div>
</div> </div>
<div>
<div>
<strong>
This tool has been updated.
</strong>
The 1.0 version of the tool was released on Nov 22, 2022.
</div>
</div>
<div <div
class="grid-container-desktop-lg" class="grid-container-desktop-lg"
data-testid="gridContainer" data-testid="gridContainer"
@ -1299,19 +1294,6 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
<a <a
class="usa-link usa-link--external footer-link-first-child" class="usa-link usa-link--external footer-link-first-child"
data-cy="whitehouse-gov"
href="https://www.whitehouse.gov/"
rel="noreferrer"
target="_blank"
>
Whitehouse.gov
</a>
</li>
<li
class="usa-footer__secondary-link"
>
<a
class="usa-link usa-link--external"
data-cy="freedom-of-information-act-(foia)" data-cy="freedom-of-information-act-(foia)"
href="https://www.whitehouse.gov/ceq/foia" href="https://www.whitehouse.gov/ceq/foia"
rel="noreferrer" rel="noreferrer"

View file

@ -140,34 +140,29 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div> </div>
</div> </div>
</section> </section>
</div>
</div>
<div> <div>
<img <div
alt="language icon for selecting language" class="usa-alert usa-alert--info"
src="test-file-stub" data-testid="alert"
/>
<a
class="usa-link"
href="#"
> >
English <div
</a> class="usa-alert__body"
<a
class="usa-link"
href="#"
> >
Español <h1
</a> class="usa-alert__heading"
>
Version 2.0 of the tool is now available
</h1>
<p
class="usa-alert__text"
>
The Council on Environmental Quality (CEQ) made the 2.0 version of the tool available on Dec 19, 2024.
</p>
</div> </div>
</div> </div>
</div> </div>
<div>
<div>
<strong>
This tool has been updated.
</strong>
The 1.0 version of the tool was released on Nov 22, 2022.
</div>
</div>
<div <div
class="grid-container-desktop-lg" class="grid-container-desktop-lg"
data-testid="gridContainer" data-testid="gridContainer"
@ -498,19 +493,6 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
> >
<a <a
class="usa-link usa-link--external footer-link-first-child" class="usa-link usa-link--external footer-link-first-child"
data-cy="whitehouse-gov"
href="https://www.whitehouse.gov/"
rel="noreferrer"
target="_blank"
>
Whitehouse.gov
</a>
</li>
<li
class="usa-footer__secondary-link"
>
<a
class="usa-link usa-link--external"
data-cy="freedom-of-information-act-(foia)" data-cy="freedom-of-information-act-(foia)"
href="https://www.whitehouse.gov/ceq/foia" href="https://www.whitehouse.gov/ceq/foia"
rel="noreferrer" rel="noreferrer"

View file

@ -410,7 +410,7 @@ a.mapboxgl-ctrl-logo {
* ACCORDION STYLES * ACCORDION STYLES
****************************** ******************************
*/ */
.usa-accordion__content { .-AreaDetail .usa-accordion__content {
padding-bottom: 0; padding-bottom: 0;
} }

View file

@ -71,6 +71,12 @@ fields:
- score_name: Definition N (communities) (average of neighbors) - score_name: Definition N (communities) (average of neighbors)
label: Share of neighbors that are identified as disadvantaged label: Share of neighbors that are identified as disadvantaged
format: percentage format: percentage
- score_name: Definition N community, including adjacency index tracts v1.0
label: Identified as disadvantaged in v1.0
format: bool
- score_name: Grandfathered Definition N (communities) from v1.0
label: Identified as disadvantaged solely due to status in v1.0 (grandfathered)
format: bool
- score_name: Total population - score_name: Total population
label: Total population label: Total population
format: float format: float
@ -381,19 +387,19 @@ fields:
label: Percent of residents who are not currently enrolled in higher ed label: Percent of residents who are not currently enrolled in higher ed
format: percentage format: percentage
- score_name: Unemployment (percent) in 2009 (island areas) and 2010 (states and PR) - score_name: Unemployment (percent) in 2009 (island areas) and 2010 (states and PR)
label: Unemployment (percent) in 2009 (island areas) and 2010 (states and PR) label: Unemployment (percent) in 2019 (island areas) and 2010 (states and PR)
format: percentage format: percentage
- score_name: Percentage households below 100% of federal poverty line in 2009 (island areas) and 2010 (states and PR) - score_name: Percentage households below 100% of federal poverty line in 2009 (island areas) and 2010 (states and PR)
label: Percentage households below 100% of federal poverty line in 2009 (island areas) and 2010 (states and PR) label: Percentage households below 100% of federal poverty line in 2019 (island areas) and 2010 (states and PR)
format: percentage format: percentage
- score_name: Greater than or equal to the 90th percentile for unemployment and has low HS education in 2009 (island areas)? - score_name: Greater than or equal to the 90th percentile for unemployment and has low HS education in 2009 (island areas)?
label: Greater than or equal to the 90th percentile for unemployment and has low HS education in 2009 (island areas)? label: Greater than or equal to the 90th percentile for unemployment and has low HS education in 2019 (island areas)?
format: bool format: bool
- score_name: Greater than or equal to the 90th percentile for households at or below 100% federal poverty level and has low HS education in 2009 (island areas)? - score_name: Greater than or equal to the 90th percentile for households at or below 100% federal poverty level and has low HS education in 2009 (island areas)?
label: Greater than or equal to the 90th percentile for households at or below 100% federal poverty level and has low HS education in 2009 (island areas)? label: Greater than or equal to the 90th percentile for households at or below 100% federal poverty level and has low HS education in 2019 (island areas)?
format: bool format: bool
- score_name: Greater than or equal to the 90th percentile for low median household income as a percent of area median income and has low HS education in 2009 (island areas)? - score_name: Greater than or equal to the 90th percentile for low median household income as a percent of area median income and has low HS education in 2009 (island areas)?
label: Greater than or equal to the 90th percentile for low median household income as a percent of area median income and has low HS education in 2009 (island areas)? label: Greater than or equal to the 90th percentile for low median household income as a percent of area median income and has low HS education in 2019 (island areas)?
format: bool format: bool
- score_name: Number of Tribal areas within Census tract for Alaska - score_name: Number of Tribal areas within Census tract for Alaska
label: Number of Tribal areas within Census tract for Alaska label: Number of Tribal areas within Census tract for Alaska

View file

@ -75,6 +75,12 @@ sheets:
- score_name: Definition N (communities) (average of neighbors) - score_name: Definition N (communities) (average of neighbors)
label: Share of neighbors that are identified as disadvantaged label: Share of neighbors that are identified as disadvantaged
format: percentage format: percentage
- score_name: Definition N community, including adjacency index tracts v1.0
label: Identified as disadvantaged in v1.0
format: bool
- score_name: Grandfathered Definition N (communities) from v1.0
label: Identified as disadvantaged solely due to status in v1.0 (grandfathered)
format: bool
- score_name: Total population - score_name: Total population
label: Total population label: Total population
format: float format: float
@ -385,19 +391,19 @@ sheets:
label: Percent of residents who are not currently enrolled in higher ed label: Percent of residents who are not currently enrolled in higher ed
format: percentage format: percentage
- score_name: Unemployment (percent) in 2009 (island areas) and 2010 (states and PR) - score_name: Unemployment (percent) in 2009 (island areas) and 2010 (states and PR)
label: Unemployment (percent) in 2009 (island areas) and 2010 (states and PR) label: Unemployment (percent) in 2019 (island areas) and 2010 (states and PR)
format: percentage format: percentage
- score_name: Percentage households below 100% of federal poverty line in 2009 (island areas) and 2010 (states and PR) - score_name: Percentage households below 100% of federal poverty line in 2009 (island areas) and 2010 (states and PR)
label: Percentage households below 100% of federal poverty line in 2009 (island areas) and 2010 (states and PR) label: Percentage households below 100% of federal poverty line in 2019 (island areas) and 2010 (states and PR)
format: percentage format: percentage
- score_name: Greater than or equal to the 90th percentile for unemployment and has low HS education in 2009 (island areas)? - score_name: Greater than or equal to the 90th percentile for unemployment and has low HS education in 2009 (island areas)?
label: Greater than or equal to the 90th percentile for unemployment and has low HS education in 2009 (island areas)? label: Greater than or equal to the 90th percentile for unemployment and has low HS education in 2019 (island areas)?
format: bool format: bool
- score_name: Greater than or equal to the 90th percentile for households at or below 100% federal poverty level and has low HS education in 2009 (island areas)? - score_name: Greater than or equal to the 90th percentile for households at or below 100% federal poverty level and has low HS education in 2009 (island areas)?
label: Greater than or equal to the 90th percentile for households at or below 100% federal poverty level and has low HS education in 2009 (island areas)? label: Greater than or equal to the 90th percentile for households at or below 100% federal poverty level and has low HS education in 2019 (island areas)?
format: bool format: bool
- score_name: Greater than or equal to the 90th percentile for low median household income as a percent of area median income and has low HS education in 2009 (island areas)? - score_name: Greater than or equal to the 90th percentile for low median household income as a percent of area median income and has low HS education in 2009 (island areas)?
label: Greater than or equal to the 90th percentile for low median household income as a percent of area median income and has low HS education in 2009 (island areas)? label: Greater than or equal to the 90th percentile for low median household income as a percent of area median income and has low HS education in 2019 (island areas)?
format: bool format: bool
- score_name: Number of Tribal areas within Census tract for Alaska - score_name: Number of Tribal areas within Census tract for Alaska
label: Number of Tribal areas within Census tract for Alaska label: Number of Tribal areas within Census tract for Alaska

File diff suppressed because one or more lines are too long