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: Site ping test
name: Ping Check
on:
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
schedule:
@ -13,21 +12,24 @@ on:
required: true
default: 'warning'
tags:
description: 'Ping test'
description: 'Ping Check'
jobs:
sitePingCheck:
name: Slack Notification
check_site_uptime:
runs-on: ubuntu-latest
environment: Staging
name: Ping the site
steps:
- uses: actions/checkout@v2
# https://github.com/marketplace/actions/ping-my-site
- uses: Leocardoso94/is-my-site-up@v1.2
- name: Check the site
id: ping
uses: Jtalk/url-health-check-action@v4
with:
site: "https://d2zjid6n5ja2pt.cloudfront.net/justice40-tool/main/en/"
# https://www.ravsam.in/blog/send-slack-notification-when-github-actions-fails/
- uses: ravsamhq/notify-slack-action@v1
url: ${{ secrets.SITE_URL }}
- name: Failure Notification
uses: ravsamhq/notify-slack-action@2.5.0
if: ${{ failure() }}
with:
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:
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 */
// 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 React from "react";
@ -21,7 +21,6 @@ import * as styles from "./areaDetail.module.scss";
// @ts-ignore
import IslandCopy from "../IslandCopy/IslandCopy";
import launchIcon from "/node_modules/uswds/dist/img/usa-icons/launch.svg";
interface IAreaDetailProps {
properties: constants.J40Properties;
@ -1231,19 +1230,14 @@ const AreaDetail = ({properties}: IAreaDetailProps) => {
<div className={styles.buttonText}>
{EXPLORE_COPY.COMMUNITY.SEND_FEEDBACK.TITLE}
</div>
<img
className={styles.buttonImage}
src={launchIcon}
alt={intl.formatMessage(
EXPLORE_COPY.COMMUNITY.SEND_FEEDBACK.IMG_ICON.ALT_TAG,
)}
/>
<Icon.Launch aria-label={intl.formatMessage(EXPLORE_COPY.COMMUNITY.SEND_FEEDBACK.IMG_ICON.ALT_TAG)} />
</div>
</Button>
</a>
{/* All category accordions in this component */}
{<Accordion multiselectable={true} items={categoryItems} />}
{<Accordion multiselectable={true} items={categoryItems} className="-AreaDetail" />}
{/* Methodology version */}
<div className={styles.versionInfo}>

View file

@ -66,8 +66,8 @@ $sidePanelLabelFontColor: #171716;
.sendFeedbackBtn{
@include u-text("blue-70v");
@include u-bg("yellow-20v");
height: 40px;
height: 40px;
&:hover {
@include u-bg("yellow-20");
@include u-text("gray-90");
@ -79,13 +79,6 @@ $sidePanelLabelFontColor: #171716;
.buttonText{
@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%);
}
}
}
}
@ -104,7 +97,7 @@ $sidePanelLabelFontColor: #171716;
.censusText {
font-size: medium;
}
}
}
.categoryHeader {
@ -119,7 +112,7 @@ $sidePanelLabelFontColor: #171716;
.categorySpacer {
@include typeset('sans', '2xs', 2);
@include u-text('bold');
@include u-text('bold');
margin-left: -20px;
@include u-padding-top(1);

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

@ -40,8 +40,8 @@ exports[`rendering of the Categories checks if component renders 1`] = `
>
statistical areas
</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.
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.
</p>
</div>

View file

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

View file

@ -5,15 +5,9 @@ exports[`rendering of indicator dataset card checks if component renders 1`] = `
<div
id="census-tract-info"
>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<div
class=""
>
<h3>
Census tract information and demographics
</h3>
@ -30,7 +24,7 @@ exports[`rendering of indicator dataset card checks if component renders 1`] = `
<strong>
Note:
</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>
</div>

View file

@ -33,7 +33,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
<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>
@ -81,15 +81,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="census-tract-info"
>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<div
class=""
>
<h3>
Census tract information and demographics
</h3>
@ -106,7 +100,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<strong>
Note:
</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>
</div>
@ -158,7 +152,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</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.
</div>
@ -210,7 +204,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div>
<div>
Expected agricultural value at risk from losses due to fourteen types of natural hazards. These hazards have some link to climate change. They are: avalanche, coastal flooding, cold wave, drought, hail, heat wave, hurricane, ice storm, landslide, riverine flooding, strong wind, tornado, wildfire, and winter weather. The rate is calculated by dividing the agricultural value at risk by the total agricultural value.
Expected agricultural value at risk from losses due to fourteen types of natural hazards. These hazards have some link to climate change. They are: avalanche, coastal flooding, cold wave, drought, hail, heat wave, hurricane, ice storm, landslide, riverine flooding, strong wind, tornado, wildfire, and winter weather. The rate is calculated by dividing the agricultural value at risk by the total agricultural value.
</div>
<ul>
@ -366,15 +360,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="flood-risk"
>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<div
class=""
>
<h3>
Projected flood risk
</h3>
@ -423,15 +411,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="wildfire-risk"
>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<div
class=""
>
<h3>
Projected wildfire risk
</h3>
@ -798,22 +780,16 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="hist-underinv"
>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<div
class=""
>
<h3>
Historic underinvestment
</h3>
</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
class="usa-link usa-link--external"
data-cy=""
@ -867,7 +843,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
Dataset of formerly redlined areas
</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>
<span>
@ -931,15 +907,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="green-space"
>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<div
class=""
>
<h3>
Lack of green space
</h3>
@ -1021,15 +991,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="indoor-plumb"
>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<div
class=""
>
<h3>
Lack of indoor plumbing
</h3>
@ -1129,15 +1093,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="mine-land"
>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<div
class=""
>
<h3>
Abandoned mine land
</h3>
@ -1186,15 +1144,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="fuds"
>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<div
class=""
>
<h3>
Formerly Used Defense Sites
</h3>
@ -1283,8 +1235,8 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
Treatment, Storage, and Disposal Facilities (TSDF) data
</a>
from 2020 calculated from EPA's RCRA database as compiled
by EPA's EJScreen
from 2020 calculated from EPAs RCRA database as compiled
by EPAs EJScreen
</li>
<li>
@ -1438,7 +1390,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
National Air Toxics Assessment (NATA)
</a>
from 2014 as compiled by EPA's EJScreen
from 2014 as compiled by EPAs EJScreen
</li>
<li>
<span>
@ -1451,15 +1403,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="trans-barrier"
>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<div
class=""
>
<h3>
Transportation barriers
</h3>
@ -1557,7 +1503,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
Traffic data
</a>
from 2017 as compiled by EPA's EJScreen
from 2017 as compiled by EPAs EJScreen
</li>
<li>
<span>
@ -1570,15 +1516,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="leaky-uwt"
>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<div
class=""
>
<h3>
Underground storage tanks and releases
</h3>
@ -1615,7 +1555,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
UST Finder
</a>
from 2021 as compiled by EPA's EJScreen
from 2021 as compiled by EPAs EJScreen
</li>
<li>
@ -1752,7 +1692,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</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>
@ -1807,13 +1747,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<a
class="usa-link usa-link--external"
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"
target="_blank"
>
American Community Survey
Decennial Census
</a>
from 2010
from 2020
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</li>
<li>
<span>
@ -1880,13 +1826,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<a
class="usa-link usa-link--external"
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"
target="_blank"
>
American Community Survey
Decennial Census
</a>
from 2010
from 2020
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</li>
<li>
<span>
@ -1953,13 +1905,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<a
class="usa-link usa-link--external"
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"
target="_blank"
>
American Community Survey
Decennial Census
</a>
from 2010
from 2020
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</li>
<li>
<span>
@ -2026,13 +1984,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<a
class="usa-link usa-link--external"
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"
target="_blank"
>
American Community Survey
Decennial Census
</a>
from 2010
from 2020
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</li>
<li>
<span>
@ -2046,15 +2010,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="tribal-lands"
>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<div
class=""
>
<h3>
Tribes
</h3>

View file

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

View file

@ -135,24 +135,6 @@ exports[`rendering of the GovernmentBanner checks if component renders 1`] = `
</div>
</div>
</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>
</DocumentFragment>

View file

@ -46,7 +46,7 @@ exports[`rendering of the HowYouCanHelp checks if various text fields are visibl
</ul>
<p>
The Council on Environmental Quality plans to issue a Request for Information in 2023. This will give the public time to use the tool before providing comments.
The Council on Environmental Quality plans to issue a Request for Information in 2023. This will give the public time to use the tool before providing comments.
</p>
</div>

View file

@ -1,10 +1,10 @@
import React from 'react';
import {
Address,
Logo,
NavList,
} from '@trussworks/react-uswds';
import {NavList} from '@trussworks/react-uswds';
import {useIntl} from 'gatsby-plugin-intl';
import React from 'react';
import {hyphenizeString} from '../../../cypress/integration/common/helpers';
import J40MainGridContainer from '../J40MainGridContainer';
@ -12,9 +12,9 @@ import LinkTypeWrapper from '../LinkTypeWrapper';
import SurveyButton from '../SurveyButton';
// @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 * as COMMON_COPY from '../../data/copy/common';
import whitehouseIcon from '../../images/eop-seal.svg';
const J40Footer = () => {
const intl = useIntl();
@ -46,14 +46,6 @@ const J40Footer = () => {
intl.formatMessage(COMMON_COPY.FOOTER.MORE_INFO),
<LinkTypeWrapper
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)}
internal={false}
url={'https://www.whitehouse.gov/ceq/foia'}

View file

@ -93,19 +93,6 @@ exports[`J40Footer renders correctly 1`] = `
>
<a
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)"
href="https://www.whitehouse.gov/ceq/foia"
rel="noreferrer"

View file

@ -1,25 +1,25 @@
import React, {useEffect, useState} from 'react';
import {Link, useIntl} from 'gatsby-plugin-intl';
import {
Grid,
// Alert,
Header,
Menu,
NavDropDownButton,
NavMenuButton,
PrimaryNav,
Grid,
NavDropDownButton,
Menu,
} from '@trussworks/react-uswds';
import BetaBanner from '../BetaBanner';
import J40MainGridContainer from '../J40MainGridContainer';
import GovernmentBanner from '../GovernmentBanner';
import Language from '../Language';
import {Link, useIntl} from 'gatsby-plugin-intl';
import React, {useEffect, useState} from 'react';
import {useWindowSize} from 'react-use';
import GovernmentBanner from '../GovernmentBanner';
import J40MainGridContainer from '../J40MainGridContainer';
import Language from '../Language';
// @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 * 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 {
@ -247,7 +247,7 @@ const J40Header = ({location}:IJ40Header) => {
{/* Banners */}
<GovernmentBanner />
<BetaBanner/>
<UpdateBanner/>
{/* Logo and Navigation */}
<J40MainGridContainer>

View file

@ -140,32 +140,27 @@ exports[`rendering of the J40Header checks if component renders 1`] = `
</div>
</div>
</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>
<strong>
This tool has been updated.
</strong>
The 1.0 version of the tool was released on Nov 22, 2022.
<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>
<div

View file

@ -91,6 +91,7 @@ const J40Map = ({location}: IJ40Interface) => {
const [transitionInProgress, setTransitionInProgress] = useState<boolean>(false);
const [geolocationInProgress, setGeolocationInProgress] = useState<boolean>(false);
const [isMobileMapState, setIsMobileMapState] = useState<boolean>(false);
const [selectTractId, setSelectTractId] = useState<string | undefined>(undefined);
const {width: windowWidth} = useWindowSize();
/**
@ -123,11 +124,7 @@ const J40Map = ({location}: IJ40Interface) => {
const [minLng, minLat, maxLng, maxLat] = bbox(feature);
// Set the selectedFeature ID
if (feature.id !== selectedFeatureId) {
setSelectedFeature(feature);
} else {
setSelectedFeature(undefined);
}
setSelectedFeature(feature);
// Go to the newly selected feature (as long as it's not an Alaska Point)
goToPlace([
@ -250,7 +247,7 @@ const J40Map = ({location}: IJ40Interface) => {
* @param {LngLatBoundsLike} bounds
* @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 {longitude, latitude, zoom} = newViewPort.fitBounds(
bounds as [[number, number], [number, number]], {
@ -281,6 +278,9 @@ const J40Map = ({location}: IJ40Interface) => {
transitionInterpolator: new FlyToInterpolator(),
transitionEasing: d3.easeCubic,
});
// Set the tract ID to be selected if any.
setSelectTractId(selectTractId);
};
const onTransitionStart = () => {
@ -289,6 +289,25 @@ const J40Map = ({location}: IJ40Interface) => {
const onTransitionEnd = () => {
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 = () => {
@ -393,8 +412,7 @@ const J40Map = ({location}: IJ40Interface) => {
{/* This is the first overlayed row on the map: Search and Geolocation */}
<div className={styles.mapHeaderRow}>
<MapSearch goToPlace={goToPlace} mapRef={mapRef} selectFeatureOnMap={selectFeatureOnMap}
selectedFeatureId={selectedFeatureId}/>
<MapSearch goToPlace={goToPlace}/>
{/* Geolocate Icon */}
<div className={styles.geolocateBox}>

View file

@ -4,8 +4,6 @@ import {LngLatBoundsLike} from 'maplibre-gl';
import {useIntl} from 'gatsby-plugin-intl';
import {Search} from '@trussworks/react-uswds';
import {useWindowSize} from 'react-use';
import {RefObject} from 'react';
import {MapRef} from 'react-map-gl';
import * as JsSearch from 'js-search';
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';
interface IMapSearch {
goToPlace(bounds: LngLatBoundsLike):void;
mapRef:RefObject<MapRef>;
selectFeatureOnMap: (feature: any) => void;
selectedFeatureId: string;
goToPlace(bounds: LngLatBoundsLike, isTerritory: boolean, selectTractId: string | undefined):void;
}
interface ISearchTractRecord {
@ -27,7 +22,7 @@ interface ISearchTractRecord {
INTPTLON10: string;
}
const MapSearch = ({goToPlace, mapRef, selectFeatureOnMap, selectedFeatureId}:IMapSearch) => {
const MapSearch = ({goToPlace}:IMapSearch) => {
// State to hold if the search results are empty or not:
const [isSearchResultsNull, setIsSearchResultsNull] = useState(false);
const intl = useIntl();
@ -85,33 +80,15 @@ const MapSearch = ({goToPlace, mapRef, selectFeatureOnMap, selectedFeatureId}:IM
const searchForTract = async (tract: string) => {
// We create a bounding box just to get the tract in the view box.
// The size is not important.
const BOUNDING_BOX_SIZE_DD = 0.1;
/**
* 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);
}
};
const BOUNDING_BOX_SIZE_DD = 0.2;
// Convert 10 digit tracts to 11.
const searchTerm = tract.length == 10 ? '0' + tract : tract;
// If the search is for the same tract then do nothing.
if (selectedFeatureId == searchTerm) return;
const normalizedTractId = tract.length == 10 ? '0' + tract : tract;
setIsSearchResultsNull(true);
if (tractSearch) {
const result = tractSearch.search(searchTerm);
const result = tractSearch.search(normalizedTractId);
if (result.length > 0) {
const searchTractRecord = result[0] as ISearchTractRecord;
const lat = Number(searchTractRecord.INTPTLAT10);
@ -126,21 +103,7 @@ const MapSearch = ({goToPlace, mapRef, selectFeatureOnMap, selectedFeatureId}:IM
setIsSearchResultsNull(false);
// Now move the map and select the tract.
goToPlace([[Number(longMin), Number(latMin)], [Number(longMax), Number(latMax)]]);
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]);
}
});
});
goToPlace([[Number(longMin), Number(latMin)], [Number(longMax), Number(latMax)]], false, normalizedTractId);
}
}
};
@ -173,7 +136,7 @@ const MapSearch = ({goToPlace, mapRef, selectFeatureOnMap, selectedFeatureId}:IM
if (searchResults && searchResults.length > 0) {
setIsSearchResultsNull(false);
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 {
setIsSearchResultsNull(true);
}

View file

@ -5,8 +5,8 @@ exports[`rendering of the MethodologyFormula checks if component renders 1`] = `
<section>
<p>
Under the current formula, a census tract will be identified as disadvantaged in one or more
categories of criteria:
Under the current formula, a census tract will be identified as disadvantaged in one or more
categories of criteria:
</p>
<p>

View file

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

View file

@ -26,7 +26,7 @@ exports[`rendering of ReleaseUpdate Component checks if component renders 1`] =
>
<div>
<div>
Version 2.0 Release update - Nov 22, 2022
Version 2.0 Release update - Dec 19, 2024
</div>
<div>
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 */
import {FormattedMessage} from 'gatsby-plugin-intl';
import React from 'react';
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 {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 FAQS_LINK = 'https://www.whitehouse.gov/wp-content/uploads/2022/02/CEQ-CEJST-QandA.pdf';
export const FED_RECOGNIZED_INDIAN_ENTITIES = `https://www.federalregister.gov/documents/2022/01/28/2022-01789/indian-entities-recognized-by-and-eligible-to-receive-services-from-the-united-states-bureau-of`;
export const EJSCREEN = 'https://www.epa.gov/ejscreen/how-does-epa-use-ejscreen';
export const 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_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:
<FormattedMessage
id={'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'}
values={{
link1: linkFn(EXEC_ORDER_LINK, false, true),
@ -48,9 +46,7 @@ export const CONTENT = {
PARA2:
<FormattedMessage
id={'about.page.paragraph.2'}
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.
`}
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.`}
description={'Navigate to the About page. This is the paragraph 2'}
values={{
link1: linkFn(EXEC_ORDER_LINK, false, true),
@ -92,12 +88,13 @@ export const CONTENT = {
<FormattedMessage
id={'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.
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'}
values={{
version: VERSION_NUMBER,
link1: linkFn('https://lp.constantcontactpages.com/su/Vm8pCFj/spring', false, true),
}}
/>,
PARA5:
@ -112,7 +109,7 @@ export const CONTENT = {
<FormattedMessage
id={'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.
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'}
values={{
@ -123,8 +120,7 @@ export const CONTENT = {
<FormattedMessage
id={'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.
`}
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'}
values={{
link1: linkFn('https://www.census.gov/programs-surveys/acs/geography-acs/geography-boundaries-by-year.html', false, true),
@ -279,7 +275,7 @@ export const HOW_YOU_CAN_HELP_LIST_ITEMS = {
PARA1: <FormattedMessage
id={'about.page.how.you.can.help.para.1'}
defaultMessage={`
The Council on Environmental Quality plans to issue a Request for Information in 2023. This will give the public time to use the tool before providing comments.
The Council on Environmental Quality plans to issue a Request for Information in 2023. This will give the public time to use the tool before providing comments.
`}
description={`Navigate to the about page. You will see How you can help list item 3`}
/>,

View file

@ -1,10 +1,10 @@
/* eslint-disable max-len */
/* eslint-disable react/display-name */
import React from 'react';
import {FormattedDate, FormattedMessage} from 'gatsby-plugin-intl';
import React from 'react';
import {defineMessages} from 'react-intl';
import LinkTypeWrapper from '../../components/LinkTypeWrapper';
import DownloadLink from '../../components/DownloadLink';
import LinkTypeWrapper from '../../components/LinkTypeWrapper';
import {GITHUB_LINK} from '../../constants';
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 METH_2_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_1_0_RELEASE_DATE = new Date(2022, 10, 22, 11, 59, 59); // Nov 22 2022
export const METH_2_0_RELEASE_DATE = new Date(2024, 11, 19, 11, 59, 59); // Dec 19 2024
// Beta Banner
export const BETA_BANNER_CONTENT = <FormattedMessage
id={'common.pages.alerts.banner.beta.content'}
defaultMessage={`<bold1>This tool has been updated.</bold1> The 1.0 version of the tool was released on {relDate}.`}
description={`Alert body that appears on landing page.`}
// Update Banner
export const UPDATE_BANNER_HEADING_LARGE = <FormattedMessage
id={'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'}
/>;
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={{
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
value={METH_2_0_RELEASE_DATE}
year="numeric"
@ -53,7 +73,7 @@ export const TSD = defineMessages({
URL: {
id: 'common.pages.tsd.url',
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
id={'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.
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'}
/>;

View file

@ -1,14 +1,15 @@
/* eslint-disable max-len */
import {defineMessages, FormattedDate, FormattedMessage} from 'gatsby-plugin-intl';
import React from 'react';
import {defineMessages, FormattedMessage} from 'gatsby-plugin-intl';
import LinkTypeWrapper from '../../components/LinkTypeWrapper';
import {EJSCREEN, EXEC_ORDER_LINK, FED_RECOGNIZED_INDIAN_ENTITIES, CEJST_INSTRUCT, CEJST_MEMO, CEJST_INSTRUCT_ES, CEJST_MEMO_ES} from './about';
import {boldFn, linkFn, FEEDBACK_EMAIL} from './common';
import {PAGES_ENDPOINTS, DATA_SURVEY_LINKS, SITE_SATISFACTION_SURVEY_LINKS} from '../constants';
import {EXPLORE_PAGE_LINKS} from './explore';
import {DATA_SURVEY_LINKS, PAGES_ENDPOINTS, SITE_SATISFACTION_SURVEY_LINKS} from '../constants';
import {CEJST_INSTRUCT, EXEC_ORDER_LINK, FED_RECOGNIZED_INDIAN_ENTITIES, WHEJAC_RECOMMENDATIONS} from './about';
import {boldFn, FEEDBACK_EMAIL, linkFn, METH_1_0_RELEASE_DATE, METH_2_0_RELEASE_DATE} from './common';
import {DOWNLOAD_FILES} from './downloads';
import {EXPLORE_PAGE_LINKS} from './explore';
import {VERSION_NUMBER} from './methodology';
export const PAGE_INTRO = defineMessages({
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 = [
<FormattedMessage
id={ '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'}
/>,
<FormattedMessage
id={ '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'}
/>,
<FormattedMessage
id={ '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'}
/>,
<FormattedMessage
id={ 'faqs.page.Q4'}
key={ 'faqs.page.Q4'}
defaultMessage={ 'Q: Does the Climate and Economic Justice Screening Tool (CEJST) include the U.S. territories? '}
defaultMessage={ 'Does the tool include the U.S. territories? '}
description={ 'Navigate to the FAQs page, this will be Q4'}
/>,
<FormattedMessage
id={ 'faqs.page.Q5'}
key={ 'faqs.page.Q5'}
defaultMessage={ 'Q: Does the tool include Tribal Nations?'}
defaultMessage={ 'Does the tool include Tribal Nations?'}
description={ 'Navigate to the FAQs page, this will be Q5'}
/>,
<FormattedMessage
id={ 'faqs.page.Q6'}
key={ 'faqs.page.Q6'}
defaultMessage={ 'Q: Why do some areas of the map have different shades?'}
defaultMessage={ 'Why do some areas of the map have different shades?'}
description={ 'Navigate to the FAQs page, this will be Q6'}
/>,
<FormattedMessage
id={ 'faqs.page.Q7'}
key={ 'faqs.page.Q7'}
defaultMessage={ 'Q: Why does the tool have “partially disadvantaged” census tracts?'}
defaultMessage={ 'Why does the tool have “partially disadvantaged” census tracts?'}
description={ 'Navigate to the FAQs page, this will be Q7'}
/>,
<FormattedMessage
id={ 'faqs.page.Q8'}
key={ 'faqs.page.Q8'}
defaultMessage={ 'Q: How does this tool relate to the Justice40 Initiative?'}
description={ 'Navigate to the FAQs page, this will be Q8'}
/>,
<FormattedMessage
id={ 'faqs.page.Q9'}
key={ 'faqs.page.Q9'}
defaultMessage={ 'Q: How will Federal agencies use the Climate and Economic Justice Screening Tool (CEJST) for the Justice40 Initiative? '}
description={ 'Navigate to the FAQs page, this will be Q9'}
/>,
<FormattedMessage
id={ 'faqs.page.Q10'}
key={ 'faqs.page.Q10'}
defaultMessage={ 'Q: How will this tool be used to inform decisions relating to new investments made through the Bipartisan Infrastructure Law and the Inflation Reduction Act?'}
description={ 'Navigate to the FAQs page, this will be Q10'}
/>,
<FormattedMessage
id={ 'faqs.page.Q11'}
key={ 'faqs.page.Q11'}
defaultMessage={ 'Q: Will agencies use the Climate and Economic Justice Screening Tool (CEJST) if they have already created their own tools or criteria to identify disadvantaged communities?'}
description={ 'Navigate to the FAQs page, this will be Q11'}
/>,
<FormattedMessage
id={ 'faqs.page.Q12'}
key={ 'faqs.page.Q12'}
defaultMessage={ 'Q: How is the Climate and Economic Justice Screening Tool (CEJST) different from 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'}
/>,
<FormattedMessage
id={ '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'}
/>,
<FormattedMessage
id={ 'faqs.page.Q14'}
key={ 'faqs.page.Q14'}
defaultMessage={ 'Q: How were the White House Environmental Justice Advisory Council (WHEJAC) recommendations used for this tool?'}
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'}
/>,
<FormattedMessage
id={ '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'}
/>,
<FormattedMessage
id={ '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'}
/>,
<FormattedMessage
id={ 'faqs.page.Q17'}
key={ 'faqs.page.Q17'}
defaultMessage={ 'Q: When did the official version of the tool come out?'}
description={ 'Navigate to the FAQs page, this will be Q17'}
/>,
<FormattedMessage
id={ 'faqs.page.Q18'}
key={ 'faqs.page.Q18'}
defaultMessage={ 'Q. How does the Council on Environmental Quality (CEQ) keep people informed about the tool?'}
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'}
/>,
<FormattedMessage
id={ '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'}
/>,
<FormattedMessage
id={ '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'}
/>,
<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 = {
Q1_P1: <FormattedMessage
id={ 'faqs.page.answers.Q1_P1'}
defaultMessage={ 'The CEJST is a critical component of the Biden-Harris Administrations historic commitment to advancing environmental justice. In <link1>Executive Order 14008</link1> on Tackling the Climate Crisis at Home and Abroad, President Biden directed the White House Council on Environmental Quality (CEQ) to develop a geospatial mapping tool to identify disadvantaged communities that face burdens. The tool has an interactive map and uses datasets that are indicators of burdens.'}
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'}
values={{
link1: linkFn(EXEC_ORDER_LINK, false, true),
@ -260,54 +140,22 @@ export const FAQ_ANSWERS = {
/>,
Q1_P2: <FormattedMessage
id={ 'faqs.page.answers.Q1_P2'}
defaultMessage={ 'Federal agencies will use the tool for the Justice40 Initiative. It will help them identify disadvantaged communities that should receive 40% of the overall benefits of programs included in the Justice40 Initiative. The Justice40 Initiative seeks to deliver 40% of the overall benefits in climate, clean energy, and other related areas to disadvantaged communities.'}
description={ 'Navigate to the FAQs page, this will be an answer, Q1_P2'}
/>,
Q1_P3: <FormattedMessage
id={ 'faqs.page.answers.Q1_P3'}
defaultMessage={ 'Other useful links for Federal agencies:'}
description={ 'Navigate to the FAQs page, this will be an answer, Q1_P3'}
/>,
Q1_P3_1: <FormattedMessage
id={ 'faqs.page.answers.Q1_P3_1'}
defaultMessage={ '<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.'}
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
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'}
values={{
link1: linkFn(EXEC_ORDER_LINK, false, true),
}}
/>,
Q2_P2: <FormattedMessage
id={ 'faqs.page.answers.Q2_P2'}
defaultMessage={ 'The tool highlights disadvantaged communities across all 50 states, the District of Columbia, and the U.S. territories. 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'}
/>,
Q2_P2_1: <FormattedMessage
id={ 'faqs.page.answers.Q2_P2_1'}
defaultMessage={ 'If they are in a census tract that meets the thresholds for at least one of the tools categories of burden, or'}
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'}
/>,
Q2_P2_2: <FormattedMessage
@ -317,17 +165,22 @@ export const FAQ_ANSWERS = {
/>,
Q2_P3: <FormattedMessage
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'}
/>,
Q2_P4: <FormattedMessage
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'}
values={{
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
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.'}
@ -345,8 +198,11 @@ export const FAQ_ANSWERS = {
/>,
Q4_P1: <FormattedMessage
id={ 'faqs.page.answers.Q4_P1'}
defaultMessage={ 'Yes, the version 1.0 of the CEJST has some data for all the territories but not all the CEJST data are available or used for all U.S. territories. '}
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'}
values={{
currentVersion: VERSION_NUMBER,
}}
/>,
Q4_P2: <FormattedMessage
id={ 'faqs.page.answers.Q4_P2'}
@ -358,7 +214,7 @@ export const FAQ_ANSWERS = {
/>,
Q4_P3: <FormattedMessage
id={ 'faqs.page.answers.Q4_P3'}
defaultMessage={ '<boldtag>American Samoa, Guam, the Northern Mariana Islands, and the U.S. Virgin Islands:</boldtag> 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'}
values={{
boldtag: boldFn,
@ -367,7 +223,7 @@ export const FAQ_ANSWERS = {
Q5_P1: <FormattedMessage
id={ 'faqs.page.answers.Q5_P1'}
defaultMessage={`
To respect Tribal sovereignty and self-government and to fulfill Federal trust and treaty responsibilities to Tribal Nations, 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'}
/>,
@ -381,7 +237,7 @@ export const FAQ_ANSWERS = {
/>,
Q5_P2_1: <FormattedMessage
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'}
values={{
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
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'}
/>,
Q7: <FormattedMessage
@ -415,143 +271,27 @@ 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.”`}
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
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'}
values={{
link1: linkFn(EJSCREEN, false, true),
}}
/>,
Q12_P1_1: <FormattedMessage
id={ 'faqs.page.answers.Q12_P1_1'}
defaultMessage={ `Inform outreach and engagement practices`}
description={ 'Navigate to the FAQs page, this will be an answer, Q12_P1_1'}
/>,
Q12_P1_2: <FormattedMessage
id={ 'faqs.page.answers.Q12_P1_2'}
defaultMessage={ `Implement aspects of the following programs:`}
description={ 'Navigate to the FAQs page, this will be an answer, Q12_P1_2'}
/>,
Q12_P1_2_1: <FormattedMessage
id={ 'faqs.page.answers.Q12_P1_2_1'}
defaultMessage={ `Permitting programs`}
description={ 'Navigate to the FAQs page, this will be an answer, Q12_P1_2_1'}
/>,
Q12_P1_2_2: <FormattedMessage
id={ 'faqs.page.answers.Q12_P1_2_2'}
defaultMessage={ `Enforcement programs`}
description={ 'Navigate to the FAQs page, this will be an answer, Q12_P1_2_2'}
/>,
Q12_P1_2_3: <FormattedMessage
id={ 'faqs.page.answers.Q12_P1_2_3'}
defaultMessage={ `Compliance programs`}
description={ 'Navigate to the FAQs page, this will be an answer, Q12_P1_2_3'}
/>,
Q12_P1_2_4: <FormattedMessage
id={ 'faqs.page.answers.Q12_P1_2_4'}
defaultMessage={ `Voluntary programs`}
description={ 'Navigate to the FAQs page, this will be an answer, Q12_P1_2_4'}
/>,
Q12_P1_3: <FormattedMessage
id={ 'faqs.page.answers.Q12_P1_3'}
defaultMessage={ `Develop retrospective reports of EPA work`}
description={ 'Navigate to the FAQs page, this will be an answer, Q12_P1_3'}
/>,
Q12_P1_4: <FormattedMessage
id={ 'faqs.page.answers.Q12_P1_4'}
defaultMessage={ `Enhance geographically based initiatives`}
description={ 'Navigate to the FAQs page, this will be an answer, Q12_P1_4'}
/>,
Q12_P2: <FormattedMessage
id={ 'faqs.page.answers.Q12_P2'}
defaultMessage={ `However, EPA does not use EJScreen to identify or label an area as an "EJ community" or as the sole basis for agency-decision-making.`}
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'}
/>,
Q12_P3: <FormattedMessage
id={ 'faqs.page.answers.Q12_P3'}
defaultMessage={ `In contrast, the CEJST will help Federal agencies to identify disadvantaged communities that will benefit from programs included in the Justice40 Initiative.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q12_P3'}
/>,
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.`}
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={{
link1: linkFn(DOWNLOAD_FILES.NARWAL.COMP_CHART.URL, false, true),
}}
/>,
Q13_P1: <FormattedMessage
id={ 'faqs.page.answers.Q13_P1'}
defaultMessage={ `Several states that have environmental justice screening tools. CalEnviroScreen is an environmental justice screening tool for California. Other states, like New York and Michigan have screening tools as well. The Climate and Economic Justice Screening Tool (CEJST) incorporates lessons learned from these efforts.`}
defaultMessage={ `Several states that have environmental justice screening tools. CalEnviroScreen is an environmental justice screening tool for California. Other states, like New York and Michigan have screening tools as well. The Climate and Economic Justice Screening Tool (CEJST) incorporates lessons learned from these efforts.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q13_P1'}
/>,
Q13_P2: <FormattedMessage
@ -561,8 +301,11 @@ export const FAQ_ANSWERS = {
/>,
Q14: <FormattedMessage
id={ 'faqs.page.answers.Q14'}
defaultMessage={ `The WHEJAC provided recommendations on the Climate and Economic Justice Screening Tool (CEJST). The CEJST follows many of these recommendations.`}
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'}
values={{
link1: linkFn(WHEJAC_RECOMMENDATIONS, false, true),
}}
/>,
Q15_P1: <FormattedMessage
id={ 'faqs.page.answers.Q15_P1'}
@ -604,9 +347,9 @@ export const FAQ_ANSWERS = {
/>,
}}
/>,
Q16: <FormattedMessage
Q16_P1: <FormattedMessage
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'}
values={{
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),
}}
/>,
Q17_P1: <FormattedMessage
id={ 'faqs.page.answers.Q17_P1'}
defaultMessage={ `The tool is now considered official because Federal agencies can now use version 1.0 of the Climate and Economic Justice Screening Tool (CEJST) to help identify disadvantaged communities. The 1.0 version was released in <link1>November, 2022</link1>. The tool is no longer in beta.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q17_P1'}
Q16_P2: <FormattedMessage
id={ 'faqs.page.answers.Q16_P2'}
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, Q16_P2'}
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),
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
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'}
values={{
link1: linkFn(`https://lp.constantcontactpages.com/su/Vm8pCFj/spring`, false, true),
@ -637,10 +384,11 @@ export const FAQ_ANSWERS = {
/>,
Q19: <FormattedMessage
id={ 'faqs.page.answers.Q19'}
defaultMessage={ `The Climate and Economic Justice Screening Tool (CEJST) has <link1>downloads</link1> available. Spreadsheets (.xlxs) and (.csv) contain the tools definitions and data. This data can be used for analysis. Shapefiles and geojson files can be uploaded into other mapping programs such as Esri. The downloads include information on how to use the files.`}
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'}
values={{
link1: linkFn(PAGES_ENDPOINTS.DOWNLOADS, true, false),
link2: linkFn(PAGES_ENDPOINTS.PREVIOUS_VERSIONS, true, false),
}}
/>,
Q20_P1: <FormattedMessage
@ -657,4 +405,17 @@ export const FAQ_ANSWERS = {
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 */
import {FormattedMessage} from 'gatsby-plugin-intl';
import React from 'react';
import {defineMessages} from 'react-intl';
import {FormattedMessage} from 'gatsby-plugin-intl';
import {boldFn, linkFn, simpleLink} from './common';
export const VERSION_NUMBER = (2.0).toFixed(1);
export const PAGE = defineMessages({
TILE: {
TITLE: {
id: 'methodology.page.title.text',
defaultMessage: 'Methodology & data',
description: 'Navigate to the methodology page. This is the methodology page title text',
@ -34,10 +34,39 @@ export const PAGE = defineMessages({
PARA1_BULLET2: {
id: 'methodology.page.paragraph.1.bullet.2',
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',
},
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: {
id: 'methodology.page.sub.heading.1',
defaultMessage: `
@ -80,8 +109,8 @@ export const FORMULA = {
INTRO: <FormattedMessage
id={'methodology.page.formula.intro'}
defaultMessage={`
Under the current formula, a census tract will be identified as disadvantaged in one or more
categories of criteria:
Under the current formula, a census tract will be identified as disadvantaged in one or more
categories of criteria:
`}
description={'Navigate to the methodology page. This is the methodology page introducing the formula'}
/>,
@ -98,8 +127,8 @@ export const FORMULA = {
PARA6: <FormattedMessage
id={'methodology.page.paragraph.6'}
defaultMessage={`
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.
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.
`}
description={'Navigate to the methodology page. This is the methodology paragraph 4'}
values={{
@ -399,7 +428,7 @@ export const DATASETS = defineMessages({
INFO: {
id: '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.
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',
},
@ -587,6 +616,15 @@ export const SOURCE_LINKS = {
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
id={'methodology.page.category.source.fema.link'}
defaultMessage={`<link1>National Risk Index</link1> from {date14_21}`}
@ -617,7 +655,7 @@ export const SOURCE_LINKS = {
/>,
EPA_NATA: <FormattedMessage
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'}
values={{
link1: linkFn('https://www.epa.gov/ejscreen/download-ejscreen-data', false, true),
@ -626,7 +664,7 @@ export const SOURCE_LINKS = {
/>,
DOT_EPA: <FormattedMessage
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'}
values={{
link1: linkFn('https://www.epa.gov/ejscreen/download-ejscreen-data', false, true),
@ -645,8 +683,8 @@ export const SOURCE_LINKS = {
EPA_TSDF: <FormattedMessage
id={'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
<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'}
values={{
@ -710,7 +748,7 @@ export const SOURCE_LINKS = {
/>,
HOLC: <FormattedMessage
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'}
values={{
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
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'}
values={{
@ -828,6 +866,7 @@ export interface IIndicators {
responsibleParty: JSX.Element,
sources: {
source: JSX.Element,
isNew?: boolean,
availableFor: { // Todo remove this and replace with MessageDescriptor when ticket #2000 is fixed
id: string,
description: string,
@ -836,7 +875,7 @@ export interface IIndicators {
}[]
};
export const INDICATORS = [
export const INDICATORS: IIndicators[] = [
// All categories:
{
domID: 'census-tract-info',
@ -845,7 +884,6 @@ export const INDICATORS = [
defaultMessage={`Census tract information and demographics`}
description={'Navigate to the Methodology page. This is the title text for the census tract dataset'}
/>,
isNew: true,
description: <FormattedMessage
id={'methodology.page.category.census.tract.description.text'}
defaultMessage={`
@ -856,7 +894,7 @@ export const INDICATORS = [
note: <FormattedMessage
id={'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.
<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'}
values={{
@ -882,7 +920,7 @@ export const INDICATORS = [
description: <FormattedMessage
id={'methodology.page.category.low.income.description.text'}
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.
`}
description={'Navigate to the Methodology page. This is the description text for low income'}
@ -908,7 +946,7 @@ export const INDICATORS = [
description: <FormattedMessage
id={'methodology.page.category.exp.agr.loss.rate.description.text'}
defaultMessage={`
Expected agricultural value at risk from losses due to fourteen types of natural hazards. These hazards have some link to climate change. They are: avalanche, coastal flooding, cold wave, drought, hail, heat wave, hurricane, ice storm, landslide, riverine flooding, strong wind, tornado, wildfire, and winter weather. The rate is calculated by dividing the agricultural value at risk by the total agricultural value.
Expected agricultural value at risk from losses due to fourteen types of natural hazards. These hazards have some link to climate change. They are: avalanche, coastal flooding, cold wave, drought, hail, heat wave, hurricane, ice storm, landslide, riverine flooding, strong wind, tornado, wildfire, and winter weather. The rate is calculated by dividing the agricultural value at risk by the total agricultural value.
`}
description={'Navigate to the Methodology page. This is the description text for exp agr loss rate'}
/>,
@ -985,7 +1023,6 @@ export const INDICATORS = [
defaultMessage={`Projected flood risk`}
description={'Navigate to the Methodology page. This is the title text for the NEW Projected flood risk'}
/>,
isNew: true,
description: <FormattedMessage
id={'methodology.page.category.flood.risk.rate.description.text'}
defaultMessage={`
@ -1009,7 +1046,6 @@ export const INDICATORS = [
defaultMessage={`Projected wildfire risk`}
description={'Navigate to the Methodology page. This is the title text for the NEW Projected wildfire risk'}
/>,
isNew: true,
description: <FormattedMessage
id={'methodology.page.category.wildfire.risk.rate.description.text'}
defaultMessage={`
@ -1187,11 +1223,10 @@ export const INDICATORS = [
defaultMessage={`Historic underinvestment`}
description={'Navigate to the Methodology page. This is the title text for the Historic Underinvestment'}
/>,
isNew: true,
description: <FormattedMessage
id={'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.
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'}
values={{
@ -1247,7 +1282,6 @@ export const INDICATORS = [
defaultMessage={`Lack of green space`}
description={'Navigate to the Methodology page. This is the title text for the house burden dataset'}
/>,
isNew: true,
description: <FormattedMessage
id={'methodology.page.category.green.space.description.text'}
defaultMessage={`
@ -1272,7 +1306,6 @@ export const INDICATORS = [
defaultMessage={`Lack of indoor plumbing`}
description={'Navigate to the Methodology page. This is the title text for the indoor plumbing'}
/>,
isNew: true,
description: <FormattedMessage
id={'methodology.page.category.indoor.plumb.description.text'}
defaultMessage={`
@ -1321,7 +1354,6 @@ export const INDICATORS = [
defaultMessage={`Abandoned mine land`}
description={'Navigate to the Methodology page. This is the title text for the Abandoned mine lands'}
/>,
isNew: true,
description: <FormattedMessage
id={'methodology.page.category.mine.land.description.text'}
defaultMessage={`
@ -1345,7 +1377,6 @@ export const INDICATORS = [
defaultMessage={`Formerly Used Defense Sites`}
description={'Navigate to the Methodology page. This is the title text for the Formerly Used Defense Sites'}
/>,
isNew: true,
description: <FormattedMessage
id={'methodology.page.category.fuds.description.text'}
defaultMessage={`
@ -1463,7 +1494,6 @@ export const INDICATORS = [
defaultMessage={`Transportation barriers`}
description={'Navigate to the Methodology page. This is the title text for the Transportation barriers'}
/>,
isNew: true,
description: <FormattedMessage
id={'methodology.page.category.trans.barrier.description.text'}
defaultMessage={`
@ -1522,7 +1552,6 @@ export const INDICATORS = [
defaultMessage={`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
id={'methodology.page.category.leaky.uwt.description.text'}
defaultMessage={`
@ -1608,7 +1637,7 @@ export const INDICATORS = [
description: <FormattedMessage
id={'methodology.page.category.workforce.dev.description.text'}
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'}
/>,
@ -1630,7 +1659,8 @@ export const INDICATORS = [
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,
},
],
@ -1657,7 +1687,8 @@ export const INDICATORS = [
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,
},
],
@ -1684,7 +1715,8 @@ export const INDICATORS = [
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,
},
],
@ -1711,7 +1743,8 @@ export const INDICATORS = [
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,
},
],
@ -1726,7 +1759,6 @@ export const INDICATORS = [
defaultMessage={`Tribes`}
description={'Navigate to the Methodology page. This is the title text for the Tribal lands'}
/>,
isNew: true,
description: <FormattedMessage
id={'methodology.page.category.tribal.lands.description.text'}
defaultMessage={`

View file

@ -8,7 +8,7 @@
"description": "Navigate to the About page. This is the paragraph 4"
},
"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"
},
"about.page.how.to.use.tool.para2": {
@ -64,7 +64,7 @@
"description": "Navigate to the About page. This is the list item 2"
},
"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"
},
"about.page.paragraph.2": {
@ -76,7 +76,7 @@
"description": "Navigate to the About page. This is the paragraph 3"
},
"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"
},
"about.page.paragraph.5": {
@ -104,7 +104,7 @@
"description": "Navigate to the About page. This is the sub heading of Using the data"
},
"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"
},
"about.page.use.data.tutorial": {
@ -127,9 +127,17 @@
"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."
},
"common.pages.alerts.banner.beta.content": {
"defaultMessage": "<bold1>This tool has been updated.</bold1> The 1.0 version of the tool was released on {relDate}.",
"description": "Alert body that appears on landing page."
"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."
},
"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": {
"defaultMessage": "Additional documentation now available",
@ -256,7 +264,7 @@
},
"common.pages.tsd.url": {
"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": {
"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"
},
"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"
},
"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"
},
"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"
},
"faqs.page.Q10": {
"defaultMessage": "Q: How will this tool be used to inform decisions relating to new investments made through the Bipartisan Infrastructure Law and the Inflation Reduction Act?",
"description": "Navigate to the FAQs page, this will be Q10"
},
"faqs.page.Q11": {
"defaultMessage": "Q: Will agencies use the Climate and Economic Justice Screening Tool (CEJST) if they have already created their own tools or criteria to identify disadvantaged communities?",
"description": "Navigate to the FAQs page, this will be Q11"
},
"faqs.page.Q12": {
"defaultMessage": "Q: How is the Climate and Economic Justice Screening Tool (CEJST) different from 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"
},
"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"
},
"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"
},
"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"
},
"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"
},
"faqs.page.Q17": {
"defaultMessage": "Q: When did the official version of the tool come out?",
"description": "Navigate to the FAQs page, this will be Q17"
},
"faqs.page.Q18": {
"defaultMessage": "Q. How does the Council on Environmental Quality (CEQ) keep people informed about the tool?",
"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"
},
"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"
},
"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"
},
"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"
},
"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": {
"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"
},
"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"
},
"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"
},
"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"
},
"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"
},
"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": {
"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"
},
"faqs.page.answers.Q12_P1_1": {
"defaultMessage": "Inform outreach and engagement practices",
"description": "Navigate to the FAQs page, this will be an answer, Q12_P1_1"
},
"faqs.page.answers.Q12_P1_2": {
"defaultMessage": "Implement aspects of the following programs:",
"description": "Navigate to the FAQs page, this will be an answer, Q12_P1_2"
},
"faqs.page.answers.Q12_P1_2_1": {
"defaultMessage": "Permitting programs",
"description": "Navigate to the FAQs page, this will be an answer, Q12_P1_2_1"
},
"faqs.page.answers.Q12_P1_2_2": {
"defaultMessage": "Enforcement programs",
"description": "Navigate to the FAQs page, this will be an answer, Q12_P1_2_2"
},
"faqs.page.answers.Q12_P1_2_3": {
"defaultMessage": "Compliance programs",
"description": "Navigate to the FAQs page, this will be an answer, Q12_P1_2_3"
},
"faqs.page.answers.Q12_P1_2_4": {
"defaultMessage": "Voluntary programs",
"description": "Navigate to the FAQs page, this will be an answer, Q12_P1_2_4"
},
"faqs.page.answers.Q12_P1_3": {
"defaultMessage": "Develop retrospective reports of EPA work",
"description": "Navigate to the FAQs page, this will be an answer, Q12_P1_3"
},
"faqs.page.answers.Q12_P1_4": {
"defaultMessage": "Enhance geographically based initiatives",
"description": "Navigate to the FAQs page, this will be an answer, Q12_P1_4"
},
"faqs.page.answers.Q12_P2": {
"defaultMessage": "However, EPA does not use EJScreen to identify or label an area as an \"EJ community\" or as the sole basis for agency-decision-making.",
"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"
},
"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.",
"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": {
"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"
},
"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"
},
"faqs.page.answers.Q15_P1": {
@ -1679,48 +1631,28 @@
"description": "Navigate to the FAQs page, this will be an answer, Q15_P1_4"
},
"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"
},
"faqs.page.answers.Q17_P1": {
"defaultMessage": "The tool is now considered official because Federal agencies can now use version 1.0 of the Climate and Economic Justice Screening Tool (CEJST) to help identify disadvantaged communities. The 1.0 version was released in <link1>November, 2022</link1>. The tool is no longer in beta.",
"description": "Navigate to the FAQs page, this will be an answer, Q17_P1"
},
"faqs.page.answers.Q17_P2": {
"defaultMessage": "The tool will be improved over time. The Council on Environmental Quality (CEQ) will update the tool each year based on public feedback, research, and the availability of new data.",
"description": "Navigate to the FAQs page, this will be an answer, Q17_P2"
"faqs.page.answers.Q16_P2": {
"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, Q16_P2"
},
"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"
},
"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"
},
"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"
},
"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.",
"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": {
"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.",
"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": {
"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"
},
"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"
},
"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"
},
"faqs.page.answers.Q2_P2_2": {
@ -1747,13 +1687,17 @@
"description": "Navigate to the FAQs page, this will be an answer, Q2_P2_2"
},
"faqs.page.answers.Q2_P3": {
"defaultMessage": "Not all disadvantaged communities can be shown on the map. Some communities 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"
},
"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"
},
"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": {
"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"
@ -1767,7 +1711,7 @@
"description": "Navigate to the FAQs page, this will be an answer, Q3_P3"
},
"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"
},
"faqs.page.answers.Q4_P2": {
@ -1775,11 +1719,11 @@
"description": "Navigate to the FAQs page, this will be an answer, Q4_P2"
},
"faqs.page.answers.Q4_P3": {
"defaultMessage": "<boldtag>American Samoa, Guam, the Northern Mariana Islands, and the U.S. Virgin Islands:</boldtag> 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"
},
"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"
},
"faqs.page.answers.Q5_P2": {
@ -1787,7 +1731,7 @@
"description": "Navigate to the FAQs page, this will be an answer, Q5_P2"
},
"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"
},
"faqs.page.answers.Q6_P1": {
@ -1803,57 +1747,13 @@
"description": "Navigate to the FAQs page, this will be an answer, Q6_P3"
},
"faqs.page.answers.Q6_P4": {
"defaultMessage": "Any area that is highlighted is considered disadvantaged, regardless of whether it is a light shade or dark shade. The tool will show if a whole census tract is considered disadvantaged or just the parts that are 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"
},
"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.”",
"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": {
"defaultMessage": "Coming Soon!",
"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"
},
"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"
},
"methodology.page.category.diabetes.description.text": {
@ -2051,7 +1951,7 @@
"description": "Navigate to the Methodology page. This is the note text for linguistic.iso"
},
"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"
},
"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"
},
"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"
},
"methodology.page.category.low.life.expectancy.description.text": {
@ -2122,12 +2022,16 @@
"defaultMessage": "<link1>American Community Survey</link1> from {date15_19}",
"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": {
"defaultMessage": "<link1>LEAD Tool</link1> from {date18}",
"description": "Navigate to the Methodology page. This is the source link for DOE FEMA"
},
"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"
},
"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"
},
"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"
},
"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"
},
"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"
},
"methodology.page.category.source.fema.link": {
@ -2167,7 +2071,7 @@
"description": "Navigate to the Methodology page. This is the source link for CDC Sleep"
},
"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"
},
"methodology.page.category.source.hud.link": {
@ -2183,7 +2087,7 @@
"description": "Navigate to the Methodology page. This is the source link for Transportation burdens"
},
"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"
},
"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"
},
"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"
},
"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"
},
"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"
},
"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"
},
"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"
},
"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": {
"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"

View file

@ -1,7 +1,7 @@
{
"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.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.title": "Cómo usar la herramienta:",
"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.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.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.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.send.feedback.email.link": "Contacto",
"about.page.send.feedback.heading": "Enviar comentarios",
@ -158,7 +158,7 @@
"downloads.page.heading1.text": "Descargas",
"downloads.page.title.text": "Descargas",
"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.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",
@ -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.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",
"faqs.page.Q1": "P: ¿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.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.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.Q13": "P: ¿En qué se diferencia esta herramienta de las herramientas de evaluación estatales?",
"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.Q15": "P: ¿Puede el público dar comentarios sobre esta herramienta?",
"faqs.page.Q17": "P: ¿Cuándo salió la versión oficial de la herramienta?",
"faqs.page.Q18": " ¿Cómo actualiza al público el Consejo de Calidad del Medio Ambiente (CEQ) sobre la herramienta?",
"faqs.page.Q19": "P: ¿Qué archivos y documentación están disponibles en la herramienta?",
"faqs.page.Q2": "P: ¿Cómo identifica y define la herramienta a las comunidades?",
"faqs.page.Q20": "P: ¿Cómo funciona el archivo de forma de la herramienta?",
"faqs.page.Q3": "P: ¿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.Q5": "P: ¿Incluye la herramienta a las naciones tribales?",
"faqs.page.Q6": "P: ¿Por qué algunas zonas del mapa tienen tonos diferentes?",
"faqs.page.Q7": "P: ¿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.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.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.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.Q1": "¿Qué es la Herramienta de evaluación de la justicia climática y económica (CEJST)?",
"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.Q13": "¿En qué se diferencia esta herramienta de las herramientas de evaluación estatales?",
"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.Q15": "¿Puede el público dar comentarios sobre esta herramienta?",
"faqs.page.Q16": "¿Cuándo se lanzó la herramienta?",
"faqs.page.Q17": "¿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.Q2": "¿Cómo identifica y define la herramienta a las comunidades?",
"faqs.page.Q20": "¿Cómo funciona el archivo de forma de la herramienta?",
"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.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": "¿Se incluye la raza en la metodología de la herramienta?",
"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": "¿Incluye la herramienta a las naciones tribales?",
"faqs.page.Q6": "¿Por qué algunas zonas del mapa tienen tonos diferentes?",
"faqs.page.Q7": "¿Por qué la herramienta tiene distritos censales \"parcialmente desfavorecidos\"?",
"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.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.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.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.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_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_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.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.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.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.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.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.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.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_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_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.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": "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": "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_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.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.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.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_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_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_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. 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_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.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_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_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_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_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.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.title.text": "Preguntas frecuentes",
"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.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.20": "<link1>Censo Decenal</link1> from {date20}",
"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.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.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.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.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",
@ -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.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.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.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.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.",

View file

@ -1,18 +1,17 @@
import * as React from 'react';
import {Accordion, Grid} from '@trussworks/react-uswds';
import {AccordionItemProps} from '@trussworks/react-uswds/lib/components/Accordion/Accordion';
import {useIntl} from 'gatsby-plugin-intl';
import * as React from 'react';
import {useWindowSize} from 'react-use';
import DatasetsButton from '../components/DatasetsButton';
import J40MainGridContainer from '../components/J40MainGridContainer';
import Layout from '../components/layout';
import DatasetsButton from '../components/DatasetsButton';
import SubPageNav from '../components/SubPageNav';
import {USWDS_BREAKPOINTS, DATA_SURVEY_LINKS} from '../data/constants';
import * as FAQS_COPY from '../data/copy/faqs';
import {PAGES_ENDPOINTS} from '../data/constants';
import {DATA_SURVEY_LINKS, PAGES_ENDPOINTS, USWDS_BREAKPOINTS} from '../data/constants';
import {SIDE_PANEL_INIT_STATE_ICON_ALT_TEXT} from '../data/copy/explore';
import * as FAQS_COPY from '../data/copy/faqs';
// @ts-ignore
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>{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>
<p>{FAQS_COPY.FAQ_ANSWERS.Q2_P3}</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={8}>{FAQS_COPY.FAQ_ANSWERS.Q8_P1}</p>
<p>{FAQS_COPY.FAQ_ANSWERS.Q8_P2}</p>
</>
),
(
<>
<p key={9}>{FAQS_COPY.FAQ_ANSWERS.Q9_P1}</p>
<p>{FAQS_COPY.FAQ_ANSWERS.Q9_P2}</p>
<ul>
<li>{FAQS_COPY.FAQ_ANSWERS.Q9_P2_1}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q9_P2_2}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q9_P2_3}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q9_P2_4}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q9_P2_5}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q9_P2_6}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q9_P2_7}</li>
</ul>
</>
),
(
<>
<p key={10}>{FAQS_COPY.FAQ_ANSWERS.Q10}</p>
</>
),
(
<>
<p key={11}>{FAQS_COPY.FAQ_ANSWERS.Q11}</p>
</>
),
(
<>
<p key={12}>{FAQS_COPY.FAQ_ANSWERS.Q12_P1}</p>
<ul>
<li>{FAQS_COPY.FAQ_ANSWERS.Q12_P1_1}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q12_P1_2}</li>
<ul>
<li>{FAQS_COPY.FAQ_ANSWERS.Q12_P1_2_1}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q12_P1_2_2}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q12_P1_2_3}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q12_P1_2_4}</li>
</ul>
<li>{FAQS_COPY.FAQ_ANSWERS.Q12_P1_3}</li>
<li>{FAQS_COPY.FAQ_ANSWERS.Q12_P1_4}</li>
</ul>
<p>{FAQS_COPY.FAQ_ANSWERS.Q12_P2}</p>
<p>{FAQS_COPY.FAQ_ANSWERS.Q12_P3}</p>
<p>{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={17}>{FAQS_COPY.FAQ_ANSWERS.Q17_P1}</p>
<p>{FAQS_COPY.FAQ_ANSWERS.Q17_P2}</p>
<p key={16}>{FAQS_COPY.FAQ_ANSWERS.Q16_P1}</p>
<p key={16}>{FAQS_COPY.FAQ_ANSWERS.Q16_P2}</p>
</>
),
(
@ -215,6 +160,16 @@ const FAQPage = ({location}: IFAQPageProps) => {
<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],
expanded: false,
headingLevel: 'h2',
className: '-faq',
};
});

View file

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

View file

@ -140,32 +140,27 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div>
</div>
</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>
<strong>
This tool has been updated.
</strong>
The 1.0 version of the tool was released on Nov 22, 2022.
<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>
<div
@ -432,8 +427,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
<section>
<p>
In January of 2021, President Biden issued
In January of 2021, President Biden issued
<a
class="usa-link usa-link--external"
data-cy=""
@ -443,13 +437,10 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
Executive Order 14008
</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>
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
class="usa-link usa-link--external"
data-cy=""
@ -460,7 +451,6 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
Justice40 Initiative
</a>
. The Justice40 Initiative seeks to deliver 40% of the overall benefits of investments in climate, clean energy, and related areas to disadvantaged communities.
</p>
<div
class="j40-p-tag"
@ -503,17 +493,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div>
<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.
<a
class="usa-link usa-link--external"
data-cy=""
href="https://lp.constantcontactpages.com/su/Vm8pCFj/spring"
rel="noreferrer"
target="_blank"
>
Sign-up
</a>
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 2.0.
</p>
</section>
@ -550,8 +532,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
statistical areas
</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>
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,14 +646,14 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</h3>
<p>
The tool's data is available for
The tools data is available for
<a
class="usa-link"
href="/en/downloads"
>
download
</a>
. This data can be used to filter by state or county.
. This data can be used to filter by state or county.
</p>
<div
@ -881,7 +862,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</ul>
<p>
The Council on Environmental Quality plans to issue a Request for Information in 2023. This will give the public time to use the tool before providing comments.
The Council on Environmental Quality plans to issue a Request for Information in 2023. This will give the public time to use the tool before providing comments.
</p>
</div>
@ -979,19 +960,6 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
<a
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)"
href="https://www.whitehouse.gov/ceq/foia"
rel="noreferrer"

View file

@ -140,32 +140,27 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div>
</div>
</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>
<strong>
This tool has been updated.
</strong>
The 1.0 version of the tool was released on Nov 22, 2022.
<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>
<div
@ -558,19 +553,6 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
<a
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)"
href="https://www.whitehouse.gov/ceq/foia"
rel="noreferrer"

View file

@ -140,32 +140,27 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div>
</div>
</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>
<strong>
This tool has been updated.
</strong>
The 1.0 version of the tool was released on Nov 22, 2022.
<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>
<div
@ -458,7 +453,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
<div>
<div>
Version 2.0 Release update - Nov 22, 2022
Version 2.0 Release update - Dec 19, 2024
</div>
<div>
New & improved
@ -858,19 +853,6 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
<a
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)"
href="https://www.whitehouse.gov/ceq/foia"
rel="noreferrer"

View file

@ -140,32 +140,27 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div>
</div>
</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>
<strong>
This tool has been updated.
</strong>
The 1.0 version of the tool was released on Nov 22, 2022.
<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>
<div
@ -436,7 +431,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
data-testid="accordion"
>
<h2
class="usa-accordion__heading"
class="usa-accordion__heading -faq"
>
<button
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"
type="button"
>
Q: What is the Climate and Economic Justice Screening Tool (CEJST)?
What is the Climate and Economic Justice Screening Tool (CEJST)?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-0"
hidden=""
id="faq-id-0"
>
<p>
The CEJST is a critical component of the Biden-Harris Administrations historic commitment to advancing environmental justice. In
<a
class="usa-link usa-link--external"
data-cy=""
href="https://www.federalregister.gov/documents/2021/02/01/2021-02177/tackling-the-climate-crisis-at-home-and-abroad#:~:text=Sec.%20223.%20Justice40,40-percent%20goal."
rel="noreferrer"
target="_blank"
>
Executive Order 14008
</a>
on Tackling the Climate Crisis at Home and Abroad, President Biden directed the White House Council on Environmental Quality (CEQ) to develop a geospatial mapping tool to identify disadvantaged communities that face burdens. The tool has an interactive map and uses datasets that are indicators of burdens.
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.
</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>
The public can find communities of interest and provide feedback. This feedback will be used to improve the tool.
</p>
</div>
<h2
class="usa-accordion__heading"
class="usa-accordion__heading -faq"
>
<button
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"
type="button"
>
Q: How does the tool identify and define communities?
How does the tool identify and define communities?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-1"
hidden=""
id="faq-id-1"
>
<p>
<a
class="usa-link usa-link--external"
data-cy=""
href="https://www.federalregister.gov/documents/2021/02/01/2021-02177/tackling-the-climate-crisis-at-home-and-abroad#:~:text=Sec.%20223.%20Justice40,40-percent%20goal."
rel="noreferrer"
target="_blank"
>
Executive Order 14008
</a>
recognizes that some communities are disadvantaged because they face burdens. The CEJST uses datasets that are indicators of burden. These burdens are related to climate change and the environment. They are also related to health and lack of economic opportunity.
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.
</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>
<ul>
<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>
If they are on land within the boundaries of Federally Recognized Tribes
</li>
</ul>
<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>
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
</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>
</div>
<h2
class="usa-accordion__heading"
class="usa-accordion__heading -faq"
>
<button
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"
type="button"
>
Q: Is race included in the tools methodology?
Is race included in the tools methodology?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-2"
hidden=""
id="faq-id-2"
@ -592,7 +539,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</p>
</div>
<h2
class="usa-accordion__heading"
class="usa-accordion__heading -faq"
>
<button
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"
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>
</h2>
<div
class="usa-accordion__content usa-prose"
class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-3"
hidden=""
id="faq-id-3"
>
<p>
Yes, the version 1.0 of the CEJST has some data for all the territories but not all the CEJST data are available or used for all U.S. territories.
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>
<strong>
@ -623,11 +570,11 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<strong>
American Samoa, Guam, the Northern Mariana Islands, and the U.S. Virgin Islands:
</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>
</div>
<h2
class="usa-accordion__heading"
class="usa-accordion__heading -faq"
>
<button
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"
type="button"
>
Q: Does the tool include Tribal Nations?
Does the tool include Tribal Nations?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-4"
hidden=""
id="faq-id-4"
>
<p>
To respect Tribal sovereignty and self-government and to fulfill Federal trust and treaty responsibilities to Tribal Nations, 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>
@ -674,7 +621,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
Action Plan
</a>
for Consultation and Coordination with Tribal Nations, President Bidens
for Consultation and Coordination with Tribal Nations, the
<a
class="usa-link usa-link--external"
data-cy=""
@ -698,7 +645,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</p>
</div>
<h2
class="usa-accordion__heading"
class="usa-accordion__heading -faq"
>
<button
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"
type="button"
>
Q: Why do some areas of the map have different shades?
Why do some areas of the map have different shades?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-5"
hidden=""
id="faq-id-5"
@ -753,11 +700,11 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div>
</div>
<p>
Any area that is highlighted is considered disadvantaged, regardless of whether it is a light shade or dark shade. The tool will show if a whole census tract is considered disadvantaged or just the parts that are 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>
</div>
<h2
class="usa-accordion__heading"
class="usa-accordion__heading -faq"
>
<button
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"
type="button"
>
Q: Why does the tool have “partially disadvantaged” census tracts?
Why does the tool have “partially disadvantaged” census tracts?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-6"
hidden=""
id="faq-id-6"
@ -780,7 +727,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</p>
</div>
<h2
class="usa-accordion__heading"
class="usa-accordion__heading -faq"
>
<button
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"
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>
</h2>
<div
class="usa-accordion__content usa-prose"
class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-7"
hidden=""
id="faq-id-7"
>
<p>
The Biden administration is advancing environmental justice across the whole-of-government. The Justice40 Initiative is a critical part of this effort. The Justice40 Initiative seeks to deliver 40% of the overall benefits of climate, clean energy, and related investments to disadvantaged communities.
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>
The CEJST will play an important role in the Justice40 Initiative. It will help to provide a single, consistent definition of disadvantaged communities for programs included in the Justice40 Initiative.
</p>
</div>
<h2
class="usa-accordion__heading"
>
<button
aria-controls="faq-id-8"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-8"
type="button"
>
Q: How will Federal agencies use the Climate and Economic Justice Screening Tool (CEJST) for the Justice40 Initiative?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-8"
hidden=""
id="faq-id-8"
>
<p>
Federal agencies will use the tool to help identify disadvantaged communities that will benefit from programs included in the Justice40 Initiative. The Justice40 Initiative seeks to deliver 40% of the overall benefits of certain investments to disadvantaged communities.
</p>
<p>
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.
In contrast, the CEJST helps to identify geographically defined disadvantaged communities that are marginalized by underinvestment and overburdened by pollution.
</p>
<p>
<a
@ -980,72 +765,82 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</p>
</div>
<h2
class="usa-accordion__heading"
class="usa-accordion__heading -faq"
>
<button
aria-controls="faq-id-12"
aria-controls="faq-id-8"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-12"
data-testid="accordionButton_faq-id-8"
type="button"
>
Q: How is this tool different from state screening tools?
How is this tool different from state screening tools?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-12"
class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-8"
hidden=""
id="faq-id-12"
id="faq-id-8"
>
<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.
</p>
<p>
There is an important difference between state-based tools and the CEJST. State tools use data that may not be available for other states. The CEJST only uses data that are nationally-consistent and publicly-available.
</p>
</div>
<h2
class="usa-accordion__heading"
class="usa-accordion__heading -faq"
>
<button
aria-controls="faq-id-13"
aria-controls="faq-id-9"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-13"
data-testid="accordionButton_faq-id-9"
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>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-13"
class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-9"
hidden=""
id="faq-id-13"
id="faq-id-9"
>
<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>
</div>
<h2
class="usa-accordion__heading"
class="usa-accordion__heading -faq"
>
<button
aria-controls="faq-id-14"
aria-controls="faq-id-10"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-14"
data-testid="accordionButton_faq-id-10"
type="button"
>
Q: Can the public provide feedback on this tool?
Can the public provide feedback on this tool?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-14"
class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-10"
hidden=""
id="faq-id-14"
id="faq-id-10"
>
<p>
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>
</div>
<h2
class="usa-accordion__heading"
class="usa-accordion__heading -faq"
>
<button
aria-controls="faq-id-15"
aria-controls="faq-id-11"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-15"
data-testid="accordionButton_faq-id-11"
type="button"
>
Q: Why was the CEJST initially released in a beta version?
When was the CEJST released?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-15"
class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-11"
hidden=""
id="faq-id-15"
id="faq-id-11"
>
<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
class="usa-link usa-link--external"
data-cy=""
@ -1138,7 +933,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<a
class="usa-link usa-link--external"
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"
target="_blank"
>
@ -1146,28 +941,8 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</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.
</p>
</div>
<h2
class="usa-accordion__heading"
>
<button
aria-controls="faq-id-16"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-16"
type="button"
>
Q: When did the official version of the tool come out?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-16"
hidden=""
id="faq-id-16"
>
<p>
The tool is now considered official because Federal agencies can now use version 1.0 of the Climate and Economic Justice Screening Tool (CEJST) to help identify disadvantaged communities. The 1.0 version was released in
The 1.0 version was released in
<a
class="usa-link usa-link--external"
data-cy=""
@ -1175,32 +950,29 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
rel="noreferrer"
target="_blank"
>
November, 2022
November 2022
</a>
. The tool is no longer in beta.
</p>
<p>
The tool will be improved over time. The Council on Environmental Quality (CEQ) will update the tool each year based on public feedback, research, and the availability of new data.
. The current version, version 2.0, was released in December 2024.
</p>
</div>
<h2
class="usa-accordion__heading"
class="usa-accordion__heading -faq"
>
<button
aria-controls="faq-id-17"
aria-controls="faq-id-12"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-17"
data-testid="accordionButton_faq-id-12"
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>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-17"
class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-12"
hidden=""
id="faq-id-17"
id="faq-id-12"
>
<p>
<a
@ -1210,29 +982,29 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
rel="noreferrer"
target="_blank"
>
Sign-up
Sign up
</a>
to receive updates on the Climate and Economic Justice Screening Tool (CEJST) and other environmental justice news from CEQ.
</p>
</div>
<h2
class="usa-accordion__heading"
class="usa-accordion__heading -faq"
>
<button
aria-controls="faq-id-18"
aria-controls="faq-id-13"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-18"
data-testid="accordionButton_faq-id-13"
type="button"
>
Q: What files and documentation are available from the tool?
What files and documentation are available from the tool?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-18"
class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-13"
hidden=""
id="faq-id-18"
id="faq-id-13"
>
<p>
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
</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>
</div>
<h2
class="usa-accordion__heading"
class="usa-accordion__heading -faq"
>
<button
aria-controls="faq-id-19"
aria-controls="faq-id-14"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-19"
data-testid="accordionButton_faq-id-14"
type="button"
>
Q: How does the tools shapefile work?
How do the tools shapefiles work?
</button>
</h2>
<div
class="usa-accordion__content usa-prose"
data-testid="accordionItem_faq-id-19"
class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-14"
hidden=""
id="faq-id-19"
id="faq-id-14"
>
<p>
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.
</p>
</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>
</section>
</div>
@ -1392,19 +1227,6 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
<a
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)"
href="https://www.whitehouse.gov/ceq/foia"
rel="noreferrer"

View file

@ -140,32 +140,27 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div>
</div>
</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>
<strong>
This tool has been updated.
</strong>
The 1.0 version of the tool was released on Nov 22, 2022.
<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>
<div
@ -437,16 +432,39 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div>
<ul>
<li>
<p>
If they are in census tracts that meet the thresholds for at least one of the tools categories of burden, or
</p>
</li>
<li
class="j40-mt3"
>
If they are on land within the boundaries of Federally Recognized Tribes
<li>
<p>
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>
</ul>
</div>
@ -496,8 +514,8 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
statistical areas
</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.
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.
</p>
</div>
@ -1054,7 +1072,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
<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>
@ -1102,15 +1120,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="census-tract-info"
>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<div
class=""
>
<h3>
Census tract information and demographics
</h3>
@ -1127,7 +1139,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<strong>
Note:
</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>
</div>
@ -1179,7 +1191,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</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.
</div>
@ -1231,7 +1243,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div>
<div>
Expected agricultural value at risk from losses due to fourteen types of natural hazards. These hazards have some link to climate change. They are: avalanche, coastal flooding, cold wave, drought, hail, heat wave, hurricane, ice storm, landslide, riverine flooding, strong wind, tornado, wildfire, and winter weather. The rate is calculated by dividing the agricultural value at risk by the total agricultural value.
Expected agricultural value at risk from losses due to fourteen types of natural hazards. These hazards have some link to climate change. They are: avalanche, coastal flooding, cold wave, drought, hail, heat wave, hurricane, ice storm, landslide, riverine flooding, strong wind, tornado, wildfire, and winter weather. The rate is calculated by dividing the agricultural value at risk by the total agricultural value.
</div>
<ul>
@ -1387,15 +1399,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="flood-risk"
>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<div
class=""
>
<h3>
Projected flood risk
</h3>
@ -1444,15 +1450,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="wildfire-risk"
>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<div
class=""
>
<h3>
Projected wildfire risk
</h3>
@ -1819,22 +1819,16 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="hist-underinv"
>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<div
class=""
>
<h3>
Historic underinvestment
</h3>
</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
class="usa-link usa-link--external"
data-cy=""
@ -1888,7 +1882,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
Dataset of formerly redlined areas
</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>
<span>
@ -1952,15 +1946,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="green-space"
>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<div
class=""
>
<h3>
Lack of green space
</h3>
@ -2042,15 +2030,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="indoor-plumb"
>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<div
class=""
>
<h3>
Lack of indoor plumbing
</h3>
@ -2150,15 +2132,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="mine-land"
>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<div
class=""
>
<h3>
Abandoned mine land
</h3>
@ -2207,15 +2183,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="fuds"
>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<div
class=""
>
<h3>
Formerly Used Defense Sites
</h3>
@ -2304,8 +2274,8 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
Treatment, Storage, and Disposal Facilities (TSDF) data
</a>
from 2020 calculated from EPA's RCRA database as compiled
by EPA's EJScreen
from 2020 calculated from EPAs RCRA database as compiled
by EPAs EJScreen
</li>
<li>
@ -2459,7 +2429,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
National Air Toxics Assessment (NATA)
</a>
from 2014 as compiled by EPA's EJScreen
from 2014 as compiled by EPAs EJScreen
</li>
<li>
<span>
@ -2472,15 +2442,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="trans-barrier"
>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<div
class=""
>
<h3>
Transportation barriers
</h3>
@ -2578,7 +2542,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
Traffic data
</a>
from 2017 as compiled by EPA's EJScreen
from 2017 as compiled by EPAs EJScreen
</li>
<li>
<span>
@ -2591,15 +2555,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="leaky-uwt"
>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<div
class=""
>
<h3>
Underground storage tanks and releases
</h3>
@ -2636,7 +2594,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
UST Finder
</a>
from 2021 as compiled by EPA's EJScreen
from 2021 as compiled by EPAs EJScreen
</li>
<li>
@ -2773,7 +2731,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</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>
@ -2828,13 +2786,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<a
class="usa-link usa-link--external"
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"
target="_blank"
>
American Community Survey
Decennial Census
</a>
from 2010
from 2020
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</li>
<li>
<span>
@ -2901,13 +2865,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<a
class="usa-link usa-link--external"
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"
target="_blank"
>
American Community Survey
Decennial Census
</a>
from 2010
from 2020
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</li>
<li>
<span>
@ -2974,13 +2944,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<a
class="usa-link usa-link--external"
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"
target="_blank"
>
American Community Survey
Decennial Census
</a>
from 2010
from 2020
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</li>
<li>
<span>
@ -3047,13 +3023,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<a
class="usa-link usa-link--external"
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"
target="_blank"
>
American Community Survey
Decennial Census
</a>
from 2010
from 2020
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</li>
<li>
<span>
@ -3067,15 +3049,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<div
id="tribal-lands"
>
<div>
<div>
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</div>
<div
class=""
>
<h3>
Tribes
</h3>
@ -3239,19 +3215,6 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
<a
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)"
href="https://www.whitehouse.gov/ceq/foia"
rel="noreferrer"

View file

@ -140,32 +140,27 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div>
</div>
</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>
<strong>
This tool has been updated.
</strong>
The 1.0 version of the tool was released on Nov 22, 2022.
<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>
<div
@ -1299,19 +1294,6 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
<a
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)"
href="https://www.whitehouse.gov/ceq/foia"
rel="noreferrer"

View file

@ -140,32 +140,27 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</div>
</div>
</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>
<strong>
This tool has been updated.
</strong>
The 1.0 version of the tool was released on Nov 22, 2022.
<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>
<div
@ -498,19 +493,6 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
<a
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)"
href="https://www.whitehouse.gov/ceq/foia"
rel="noreferrer"

View file

@ -16,10 +16,10 @@ There are 3 things that should be included in this file:
@import "../../node_modules/uswds";
// 3. Include or point to your project's custom Sass
/*
/*
Instead of having a separate file for these styles, all styles are being placed here.
Ideally, this file should only hold styles for when we need to override the USWDS component
Ideally, this file should only hold styles for when we need to override the USWDS component
or the Trusswork component. J40 component styles should be contained in it's own component styles.
- GLOBAL STYLES
@ -38,10 +38,10 @@ There are 3 things that should be included in this file:
/*
/*
******************************
* GLOBAL STYLES
******************************
******************************
*/
$primary-color: #112f4e; // Used for header font color - selection color is #005EA2
@ -51,8 +51,8 @@ $disadvantaged-color-side-panel: #1a4480;
// The j40-element mixin is used to create any font element. E.g. <h1>, <p> tags, etc.
// Arguments to the mixins must be tokens from USWDS
@mixin j40-element($font-size, $line-height, $font-weight, $margin-top, $margin-bottom: 0) {
@include typeset('sans', $font-size, $line-height);
@include u-text($font-weight);
@include typeset('sans', $font-size, $line-height);
@include u-text($font-weight);
@include u-margin-top($margin-top);
@include u-margin-bottom($margin-bottom);
}
@ -99,7 +99,7 @@ p.flush {
}
.j40-mt-0 {
@include u-margin-top(0);
@include u-margin-top(0);
}
.j40-footer-ceq-font {
@ -107,10 +107,10 @@ p.flush {
}
/*
/*
******************************
* HEADER STYLES
******************************
******************************
*/
li.usa-nav__primary-item {
@ -143,16 +143,16 @@ li.usa-nav__primary-item a:hover::after{
color: #1b1b1b;
}
/*
/*
******************************
* MAIN CONTENT STYLES
******************************
******************************
*/
/* this is used by J40MainGridContainer to show a blue background */
.j40-main-grid-blue-bk {
@include u-bg('blue-cool-5');
@include u-bg('blue-cool-5');
// This style is to remove the margin collapse occuring
@include u-border-top(1px);
@include u-border-top('solid');
@ -200,26 +200,26 @@ li[class*='datasetCard-module'] .usa-link--external::after {
/*
/*
******************************
* FOOTER STYLES
******************************
*/
******************************
*/
.j40-footer {
@include u-margin-top(4);
.usa-footer__primary-section.pb2{
@include u-padding-bottom(2);
}
.j40-footer-address {
.usa-footer__contact-info {
@include typeset('sans', 4, 5);
@include u-text('normal');
@include typeset('sans', 4, 5);
@include u-text('normal');
@include u-display('inline-block');
}
}
.footer-link-first-child{
@include u-display('inline-block');
@include u-margin-top(1.5)
@ -232,10 +232,10 @@ li[class*='datasetCard-module'] .usa-link--external::after {
}
/*
/*
******************************
* MAP STYLES
******************************
******************************
*/
// Maplibre overrides
@ -243,7 +243,7 @@ li[class*='datasetCard-module'] .usa-link--external::after {
/**
Geolocate Icon Styling:
Geolocate Icon Styling:
In mobile, the icon has 4 states; default, locating (class = *-waiting), locked (class = *-active) and panning (class = *-background).
These overides change the active and background classes
@ -253,7 +253,7 @@ We are using #0076d6 or hsl(207, 100%, 42%) for all colors in relation to Geoloc
The reason the Icon was changed was to match the other overlayed icons - such as territory shortcuts. These other icons don't have multiple states embedded in them. This new color scheme creates ambiguity among two states, namely (off and locked) as they have the same exact style.
*/
.mapboxgl-ctrl {
button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active {
button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active {
.mapboxgl-ctrl-icon {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='hsl(207, 100%, 42%)'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 005.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 009 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 003.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0011 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 110 7 3.5 3.5 0 110-7z'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E") !important;
}
@ -271,7 +271,7 @@ The reason the Icon was changed was to match the other overlayed icons - such as
Beacon - the beacon's color (*-location-dot) and proximity animation (::before), inner radius (::after) was changed and . The reason the beacon was changed was to increase the contrast between the beacon and the census tract layers
*/
.mapboxgl-user-location-dot, .mapboxgl-user-location-dot::before {
background-color: #0076d6 !important;
background-color: #0076d6 !important;
}
.mapboxgl-user-location-dot::after {
@ -400,17 +400,17 @@ Beacon - the beacon's color (*-location-dot) and proximity animation (::before),
//As per Mikel Maron's (MapBox advocate) suggestion to use svg data URI override:
a.mapboxgl-ctrl-logo {
a.mapboxgl-ctrl-logo {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='88' height='23' viewBox='0 0 88 23' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd'%3E %3Cdefs%3E %3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E %3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E %3C/defs%3E %3Cmask id='clip'%3E %3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/mask%3E %3Cg id='outline' opacity='0.3' stroke='%23000' stroke-width='3'%3E %3Ccircle mask='url(/studio-manual/assets/%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E %3Cuse xlink:href='%23text' mask='url(/studio-manual/assets/%23clip)'/%3E %3C/g%3E %3Cg id='fill' opacity='0.9' fill='%23fff'%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/g%3E %3C/svg%3E") !important;
};
/*
/*
******************************
* ACCORDION STYLES
******************************
******************************
*/
.usa-accordion__content {
.-AreaDetail .usa-accordion__content {
padding-bottom: 0;
}
@ -427,10 +427,10 @@ button.usa-accordion__button[aria-expanded=true]:has(div[class*="disCategoryCont
background-image: url("../images/sidePanelIcons/accordion-minus.svg");
}
/*
/*
******************************
* DEMOGRAPHICS STYLES
******************************
******************************
*/
[class*="demographicsContainer"]{
@ -449,21 +449,21 @@ button.usa-accordion__button[aria-expanded=true]:has(div[class*="disCategoryCont
}
}
/*
/*
***************************************
* PUBLIC EVENT STYLES
***************************************
*/
***************************************
*/
.usa-collection__body{
width: 0;
}
/*
/*
******************************
* ABOUT CARD STYLES
******************************
******************************
*/
/* about card - based on datasetCard... Todo: need to combine */
@ -505,19 +505,19 @@ button.usa-accordion__button[aria-expanded=true]:has(div[class*="disCategoryCont
}
}
/*
/*
******************************
* SUMMARY BOX STYLES
******************************
******************************
*/
.usa-summary-box__heading {
@include u-margin-bottom(2);
}
/*
/*
******************************
* PREVIOUS VERSIONS STYLES
******************************
******************************
*/
.previous-versions-container {
@ -528,10 +528,10 @@ button.usa-accordion__button[aria-expanded=true]:has(div[class*="disCategoryCont
font-family: "Source Sans Pro Web", "Helvetica Neue", "Helvetica", "Roboto", "Arial", "sans-serif" !important;
}
/*
/*
******************************
* FAQs PAGE STYLES
******************************
******************************
*/
.faqs-dot-alignment{

View file

@ -71,6 +71,12 @@ fields:
- score_name: Definition N (communities) (average of neighbors)
label: Share of neighbors that are identified as disadvantaged
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
label: Total population
format: float
@ -381,19 +387,19 @@ fields:
label: Percent of residents who are not currently enrolled in higher ed
format: percentage
- 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
- 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
- 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
- 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
- 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
- score_name: 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)
label: Share of neighbors that are identified as disadvantaged
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
label: Total population
format: float
@ -385,19 +391,19 @@ sheets:
label: Percent of residents who are not currently enrolled in higher ed
format: percentage
- 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
- 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
- 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
- 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
- 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
- score_name: 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