Updates to FAQs, About, Downloads and Methodology pages

This commit is contained in:
Ryon Coleman 2024-12-19 10:41:17 -05:00 committed by Carlos Felix
parent fd587c5b99
commit bb36bf3f5a
31 changed files with 599 additions and 1008 deletions

View file

@ -75,6 +75,10 @@ const DatasetCard = ({datasetCardProps}: IDatasetCardProps) => {
 
<Tag className={styles.newTag}>{intl.formatMessage(METHODOLOGY_COPY.DATASET_CARD_LABELS.NEW)}</Tag>
</>)}
{dataSource.isUpdated && (<>
&ensp;
<Tag className={styles.newTag}>{intl.formatMessage(METHODOLOGY_COPY.DATASET_CARD_LABELS.UPDATED)}</Tag>
</>)}
</li>
{/* Dataset Available for */}

View file

@ -190,6 +190,34 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</span>
All U.S. states, the District of Columbia, and Puerto Rico
</li>
<li>
<span>
Source:
</span>
<a
class="usa-link usa-link--external"
data-cy=""
href="https://www.census.gov/data/developers/data-sets/decennial-census.2020.html"
rel="noreferrer"
target="_blank"
>
Decennial Census
</a>
from 2020
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</li>
<li>
<span>
Available for:
</span>
American Samoa, Guam, the Northern Mariana Islands, and the U.S. Virgin Islands
</li>
</ul>
</div>
<div
@ -1758,7 +1786,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
class="usa-tag"
data-testid="tag"
>
NEW
UPDATED
</span>
</li>
<li>
@ -1837,7 +1865,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
class="usa-tag"
data-testid="tag"
>
NEW
UPDATED
</span>
</li>
<li>
@ -1916,7 +1944,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
class="usa-tag"
data-testid="tag"
>
NEW
UPDATED
</span>
</li>
<li>
@ -1995,7 +2023,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
class="usa-tag"
data-testid="tag"
>
NEW
UPDATED
</span>
</li>
<li>

View file

@ -23,9 +23,6 @@ const HowYouCanHelp = () => {
{ABOUT_COPY.HOW_YOU_CAN_HELP_LIST_ITEMS.LIST_ITEM_4}
</li>
</ul>
<p>
{ABOUT_COPY.HOW_YOU_CAN_HELP_LIST_ITEMS.PARA1}
</p>
</div>
);
};

View file

@ -44,11 +44,6 @@ exports[`rendering of the HowYouCanHelp checks if various text fields are visibl
.
</li>
</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.
</p>
</div>
</DocumentFragment>
`;

View file

@ -13,6 +13,7 @@ import SurveyButton from '../SurveyButton';
// @ts-ignore
import {GITHUB_LINK, GITHUB_LINK_ES} from '../../constants';
import {PAGES_ENDPOINTS} from '../../data/constants';
import * as COMMON_COPY from '../../data/copy/common';
import whitehouseIcon from '../../images/eop-seal.svg';
@ -48,7 +49,7 @@ const J40Footer = () => {
<LinkTypeWrapper
linkText={intl.formatMessage(COMMON_COPY.FOOTER.PRIVACY)}
internal={true}
url={intl.formatMessage(COMMON_COPY.FOOTER.PRIVACY_LINK)}
url={PAGES_ENDPOINTS.PRIVACY}
openUrlNewTab={false}
key={'privacylink'}
dataCy={hyphenizeString(COMMON_COPY.FOOTER.PRIVACY.defaultMessage)}

View file

@ -5,6 +5,7 @@
.releaseUpdateContainer{
@include u-margin-top(2);
@include u-padding(3);
@include u-line-height('sans', 4);
border: 2px solid #9A9B99;
border-radius: 2px;

View file

@ -1,8 +1,8 @@
import React, {useState} from 'react';
import {useIntl} from 'gatsby-plugin-intl';
import React, {useState} from 'react';
import * as styles from './ReleaseUpdate.module.scss';
import * as DOWNLOAD_COPY from '../../data/copy/downloads';
import * as styles from './ReleaseUpdate.module.scss';
// @ts-ignore
import expandIcon from '/node_modules/uswds/dist/img/usa-icons/expand_more.svg';
@ -17,7 +17,6 @@ interface IJ40AccordionItem {
children: React.ReactElement
}
/**
* This function will create the custom Accordion item. This will be used
* for the race and age demographic UI elements
@ -81,20 +80,29 @@ const ReleaseUpdate = ({ }: IReleaseUpdateProps) => {
</div>
<div>
<ul>
<li>{DOWNLOAD_COPY.RELEASE_2_0.SCORING_SUBSECTION}</li>
<ul>
<li>{DOWNLOAD_COPY.RELEASE_2_0.SCORING_CONTENT_1}</li>
<li>{DOWNLOAD_COPY.RELEASE_2_0.SCORING_CONTENT_2}</li>
<li>{DOWNLOAD_COPY.RELEASE_2_0.SCORING_CONTENT_3}</li>
<li>{DOWNLOAD_COPY.RELEASE_2_0.SCORING_CONTENT_4}</li>
<li>{DOWNLOAD_COPY.RELEASE_2_0.SCORING_CONTENT_5}</li>
<li>{DOWNLOAD_COPY.RELEASE_2_0.SCORING_CONTENT_6}</li>
</ul>
<li>{DOWNLOAD_COPY.RELEASE_2_0.UI_SUBSECTION}</li>
<ul>
<li>{DOWNLOAD_COPY.RELEASE_2_0.UI_CONTENT_1}</li>
<li>{DOWNLOAD_COPY.RELEASE_2_0.UI_CONTENT_2}</li>
</ul>
{DOWNLOAD_COPY.RELEASE_2_0.NEW_IMPROVED_CONTENT.map((item, i) => (
<li key={i}>{item}</li>
))}
</ul>
</div>
<div className={styles.releaseSectionTitle}>
{DOWNLOAD_COPY.RELEASE_2_0.TECHNICAL_FIXES_SECTION}
</div>
<div>
<ul>
{DOWNLOAD_COPY.RELEASE_2_0.TECHNICAL_FIXES_CONTENT.map((item, i) => (
<li key={i}>{item}</li>
))}
</ul>
</div>
<div className={styles.releaseSectionTitle}>
{DOWNLOAD_COPY.RELEASE_2_0.UI_SECTION}
</div>
<div>
<ul>
{DOWNLOAD_COPY.RELEASE_2_0.UI_CONTENT.map((item, i) => (
<li key={i}>{item}</li>
))}
</ul>
</div>
</div>

View file

@ -30,54 +30,59 @@ exports[`rendering of ReleaseUpdate Component checks if component renders 1`] =
Version 2.0 Release update - Dec 19, 2024
</div>
<div>
New & improved
New & Improved
</div>
<div>
<ul>
<li>
Scoring improvements
Added the low income burden to American Samoa, Guam, the Mariana Islands, and the U.S. Virgin
Islands
</li>
<ul>
<li>
Updated to use Census Decennial 2020 data for the U.S. territories
of Guam, Virgin Islands, Northern Mariana Islands, and American Samoa
</li>
<li>
U.S. territories of Guam, Virgin Islands, Northern Mariana Islands,
and American Samoa qualify as disadvantaged communities based on a low-income
threshold at or above the 65th percentile, in addition to any existing qualification
pathways
</li>
<li>
Apply a donut hole disadvantaged community qualification to U.S.
territories of Guam, Virgin Islands, Northern Mariana Islands, American Samoa,
and Puerto Rico based on adjacency to already qualifying disadvantaged community
tracts and meeting a 50th percentile low-income threshold
</li>
<li>
Improved donut hole disadvantaged community qualification by
adding tracts that are fully surrounded and have water boundaries
</li>
<li>
The poverty percentage calculation excludes college students,
ensuring it reflects the economic conditions of the non-college population
</li>
<li>
Grandfathering of Census tracts that were designated as
disadvantaged communities in version 1.0 of this tool
</li>
</ul>
<li>
User interface improvements
Tracts in these territories that are completely surrounded by disadvantaged tracts and exceed
an adjusted low income threshold are now considered disadvantaged
</li>
<li>
Additionally, census tracts in these four Territories are now considered disadvantaged if they
meet the low income threshold only, because these Territories are not included in the nationally-consistent
datasets on environmental and climate burdens used in the tool
</li>
<li>
Updated the data in the workforce development category to the Census Decennial 2020 data for
the U.S. territories of Guam, Virgin Islands, Northern Mariana Islands, and American Samoa
</li>
<li>
Made improvements to the low income burden to better identify college students before they are
excluded from that burdens percentile
</li>
<li>
Census tracts that were disadvantaged under version 1.0 continue to be considered as
disadvantaged in version 2.0
</li>
</ul>
</div>
<div>
Technical Fixes
</div>
<div>
<ul>
<li>
For tracts that have water boundaries, e.g. coastal or island tracts, the water boundaries are
now excluded from the calculation to determine if a tract is 100% surrounded by disadvantaged census tracts
</li>
</ul>
</div>
<div>
User Interface Improvements
</div>
<div>
<ul>
<li>
Added the ability to search by census tract ID
</li>
<li>
The basemap has been updated to use a free, open source map
</li>
<ul>
<li>
Users can now search on the map by Census tract ID
</li>
<li>
Show island and territory low-income percentiles in the sidebar
</li>
</ul>
</ul>
</div>
</div>

View file

@ -139,7 +139,7 @@ exports[`rendering of TractDemographics component does it render a tract in Alas
</div>
<div>
<span>
Elderly over 65
Adults over 65
</span>
<span>
12%
@ -289,7 +289,7 @@ exports[`rendering of TractDemographics component does it render a tract in Amer
</div>
<div>
<span>
Elderly over 65
Adults over 65
</span>
<span>
--
@ -439,7 +439,7 @@ exports[`rendering of TractDemographics component does it render a tract in NYC
</div>
<div>
<span>
Elderly over 65
Adults over 65
</span>
<span>
6%

View file

@ -19,11 +19,6 @@ export const CEJST_INSTRUCT_ES = process.env.GATSBY_CDN_TILES_BASE_URL +`/data-v
export const CEJST_MEMO = `https://www.whitehouse.gov/wp-content/uploads/2023/01/M-23-09_Signed_CEQ_CPO.pdf`;
export const CEJST_MEMO_ES = process.env.GATSBY_CDN_TILES_BASE_URL +`/data-versions/2.0/data/score/downloadable/M-23-09_Signed_CEQ_CPO_es.pdf`;
export const USE_MAP_TUTORIAL_LINK = process.env.GATSBY_CDN_TILES_BASE_URL +`/data-versions/2.0/data/score/downloadable/Using-the-CEJST-Tutorial.pdf`;
export const USE_MAP_TUTORIAL_LINK_ES = process.env.GATSBY_CDN_TILES_BASE_URL +`/data-versions/2.0/data/score/downloadable/Using-the-CEJST-Tutorial-es.pdf`;
export const USE_DATA_TUTORIAL_LINK = process.env.GATSBY_CDN_TILES_BASE_URL +`/data-versions/2.0/data/score/downloadable/Using-the-CEJST-Spreadsheet-Tutorial.pdf`;
export const USE_DATA_TUTORIAL_LINK_ES = process.env.GATSBY_CDN_TILES_BASE_URL +`/data-versions/2.0/data/score/downloadable/Using-the-CEJST-Spreadsheet-Tutorial-es.pdf`;
export const PAGE = defineMessages({
TITLE: {
id: 'about.page.title.text',
@ -36,7 +31,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 marginalized by underinvestment and overburdened by pollution.`}
defaultMessage={`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),
@ -46,50 +41,9 @@ 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.`}
description={'Navigate to the About page. This is the paragraph 2'}
values={{
link1: linkFn(EXEC_ORDER_LINK, false, true),
italictag: italicFn,
}}
/>,
PARA3:
<FormattedMessage
id={'about.page.paragraph.3'}
defaultMessage={`
Federal agencies should also use the following:
`}
description={'Navigate to the About page. This is the paragraph 3'}
/>,
LI1:
<FormattedMessage
id={'about.page.list.item.1'}
defaultMessage={`
<link1>Memorandum</link1> on Using the CEJST for the Justice40 Initiative
`}
description={'Navigate to the About page. This is the list item 1'}
values={{
link1: linkFn(CEJST_MEMO, false, true),
}}
/>,
LI2:
<FormattedMessage
id={'about.page.list.item.2'}
defaultMessage={`
<link1>Instructions</link1> to Federal agencies on using the CEJST
`}
description={'Navigate to the About page. This is the list item 2'}
values={{
link1: linkFn(CEJST_INSTRUCT, false, true),
link1es: linkFn(CEJST_INSTRUCT_ES, false, true),
}}
/>,
PARA4:
<FormattedMessage
id={'about.page.paragraph.4'}
defaultMessage={`
CEQ will continue to update the tool, after reviewing public feedback,
research, and the availability of new data. The current version of the
CEQ will 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'}
@ -97,30 +51,19 @@ export const CONTENT = {
version: VERSION_NUMBER,
}}
/>,
PARA5:
PARA3:
<FormattedMessage
id={'about.page.paragraph.5'}
id={'about.page.paragraph.3'}
defaultMessage={`
A Spanish version of the site will be available in the near future.
`}
description={'Navigate to the About page. This is the paragraph 5'}
/>,
USE_DATA_PARA:
<FormattedMessage
id={'about.page.use.data.paragraph'}
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'}
values={{
link1: linkFn(PAGES_ENDPOINTS.DOWNLOADS, true, false),
}}
/>,
HOW_TO_USE_PARA1:
<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 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.`}
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. 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),
@ -137,21 +80,6 @@ export const CONTENT = {
link1: linkFn(PAGES_ENDPOINTS.METHODOLOGY, true, false),
}}
/>,
USE_MAP_TUTORIAL: <FormattedMessage
id={'about.page.use.map.tutorial'}
defaultMessage={`
Download the CEJST tutorial (.pdf 9.6 MB)
`}
description={'Navigate to the About page. This the link to download the how to use map tutorial'}
/>,
USE_DATA_TUTORIAL: <FormattedMessage
id={'about.page.use.data.tutorial'}
defaultMessage={`
Download the spreadsheet tutorial (.pdf 5.4 MB)
`}
description={'Navigate to the About page. This the link to download the how to use map tutorial'}
/>,
};
@ -166,23 +94,6 @@ export const HOW_TO_USE_TOOL = defineMessages({
defaultMessage: '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.',
description: 'Navigate to the About page. This is the sub heading of How to use the tool paragraph1',
},
USE_MAP_HEADING: {
id: 'about.page.use.map.heading',
defaultMessage: 'Using the map',
description: 'Navigate to the About page. This is the sub heading of Using the map',
},
USE_MAP_PARA: {
id: 'about.page.use.map.para',
defaultMessage: `
Zoom in and select any census tract to see if it is considered disadvantaged.
`,
description: 'Navigate to the About page. This is the paragraph of Using the map',
},
USE_DATA_HEADING: {
id: 'about.page.use.data.heading',
defaultMessage: 'Using the data',
description: 'Navigate to the About page. This is the sub heading of Using the data',
},
});
export const GET_INVOLVED = defineMessages({
@ -272,12 +183,4 @@ export const HOW_YOU_CAN_HELP_LIST_ITEMS = {
link2es: linkFn(CONTACT_SURVEY_LINKS.ES, false, true),
}}
/>,
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.
`}
description={`Navigate to the about page. You will see How you can help list item 3`}
/>,
};

View file

@ -5,8 +5,6 @@ import React from 'react';
import {defineMessages} from 'react-intl';
import DownloadLink from '../../components/DownloadLink';
import LinkTypeWrapper from '../../components/LinkTypeWrapper';
import {GITHUB_LINK} from '../../constants';
import {PAGES_ENDPOINTS} from '../constants';
export interface IDefineMessage {
id: string,
@ -205,11 +203,6 @@ export const FOOTER = defineMessages({
defaultMessage: 'Privacy Policy',
description: 'Navigate to the about page. This is Footer privacy policy link text',
},
PRIVACY_LINK: {
id: 'common.pages.footer.privacy.link',
defaultMessage: PAGES_ENDPOINTS.PRIVACY,
description: 'Navigate to the about page. This is Footer privacy policy link text',
},
LOGO_ALT: {
id: 'common.pages.footer.whitehouselogoalt',
defaultMessage: 'Whitehouse logo',
@ -231,15 +224,10 @@ export const FOOTER = defineMessages({
description: 'Navigate to the about page. This is third Footer column header',
},
GITHUB_LINK_TEXT: {
id: 'common.pages.footer.github.link.text',
id: 'common.pages.footer.github.text',
defaultMessage: 'Check out the code on GitHub',
description: 'Navigate to the about page. This is Footer github link text',
},
GITHUB_LINK: {
id: 'common.pages.footer.gatsby.link',
defaultMessage: GITHUB_LINK,
description: 'Navigate to the about page. This is Footer find contact link text',
},
CONTACT: {
id: 'common.pages.footer.contactheader',
defaultMessage: 'Contact',
@ -252,14 +240,6 @@ export const FOOTER_CEQ_ADDRESS = {
STREET: '730 Jackson Pl NW',
CITY_STATE: 'Washington, D.C. 20506',
PHONE: '(202) 395-5750',
// SIGN_UP: <FormattedMessage
// id={'common.pages.footer.sign.up.updates'}
// defaultMessage={`<link1>Sign-up</link1> for updates`}
// description={`Alert title that appears at the top of pages.`}
// values={{
// link1: linkFn('https://lp.constantcontactpages.com/su/Vm8pCFj/spring', false, true),
// }}
// />,
}
;
@ -271,5 +251,3 @@ export const CONSOLE_ERROR = defineMessages({
description: 'Navigate to the about page. This is console error staging URL',
},
});

View file

@ -1,7 +1,7 @@
/* eslint-disable max-len */
import {FormattedMessage, FormattedNumber} from 'gatsby-plugin-intl';
import React from 'react';
import {defineMessages} from 'react-intl';
import {FormattedDate, FormattedMessage, FormattedNumber} from 'gatsby-plugin-intl';
import * as COMMON_COPY from './common';
import {VERSION_NUMBER, VERSIONS} from './methodology';
@ -143,87 +143,7 @@ export const getDownloadIconAltTag = () => defineMessages({
},
});
export const RELEASE_2_0 = {
HEADER: <FormattedMessage
id={'download.page.release.2_0.update.HEADER'}
defaultMessage={`Version {release} Release update - {date}`}
description={'Navigate to the download page. This is first download file link'}
values={{
release: VERSION_NUMBER,
date: <FormattedDate
value={COMMON_COPY.METH_2_0_RELEASE_DATE}
year="numeric"
month="short"
day="numeric"
/>,
}}
/>,
NEW_IMPROVED_SECTION: <FormattedMessage
id={'download.page.release.2_0.update.NEW_IMPROVED_SECTION'}
defaultMessage={`New & improved`}
description={'Navigate to the download page. This is new and improved section'}
/>,
SCORING_SUBSECTION: <FormattedMessage
id={'download.page.release.2_0.update.SCORING_SUBSECTION'}
defaultMessage={`Scoring improvements`}
description={'Navigate to the download page. This is scorig improvement section'}
/>,
SCORING_CONTENT_1: <FormattedMessage
id={'download.page.release.2_0.update.SCORING_CONTENT_1'}
defaultMessage={`Updated to use Census Decennial 2020 data for the U.S. territories
of Guam, Virgin Islands, Northern Mariana Islands, and American Samoa`}
description={'Navigate to the download page. This is release content'}
/>,
SCORING_CONTENT_2: <FormattedMessage
id={'download.page.release.2_0.update.SCORING_CONTENT_2'}
defaultMessage={`U.S. territories of Guam, Virgin Islands, Northern Mariana Islands,
and American Samoa qualify as disadvantaged communities based on a low-income
threshold at or above the 65th percentile, in addition to any existing qualification
pathways`}
description={'Navigate to the download page. This is release content'}
/>,
SCORING_CONTENT_3: <FormattedMessage
id={'download.page.release.2_0.update.SCORING_CONTENT_3'}
defaultMessage={`Apply a donut hole disadvantaged community qualification to U.S.
territories of Guam, Virgin Islands, Northern Mariana Islands, American Samoa,
and Puerto Rico based on adjacency to already qualifying disadvantaged community
tracts and meeting a 50th percentile low-income threshold`}
description={'Navigate to the download page. This is release content'}
/>,
SCORING_CONTENT_4: <FormattedMessage
id={'download.page.release.2_0.update.SCORING_CONTENT_4'}
defaultMessage={`Improved donut hole disadvantaged community qualification by
adding tracts that are fully surrounded and have water boundaries`}
description={'Navigate to the download page. This is release content'}
/>,
SCORING_CONTENT_5: <FormattedMessage
id={'download.page.release.2_0.update.SCORING_CONTENT_5'}
defaultMessage={`The poverty percentage calculation excludes college students,
ensuring it reflects the economic conditions of the non-college population`}
description={'Navigate to the download page. This is release content'}
/>,
SCORING_CONTENT_6: <FormattedMessage
id={'download.page.release.2_0.update.SCORING_CONTENT_6'}
defaultMessage={`Grandfathering of Census tracts that were designated as
disadvantaged communities in version 1.0 of this tool`}
description={'Navigate to the download page. This is release content'}
/>,
UI_SUBSECTION: <FormattedMessage
id={'download.page.release.2_0.update.UI_SUBSECTION'}
defaultMessage={`User interface improvements`}
description={'Navigate to the download page. This is the UI improvements section'}
/>,
UI_CONTENT_1: <FormattedMessage
id={'download.page.release.2_0.update.UI_CONTENT_1'}
defaultMessage={`Users can now search on the map by Census tract ID`}
description={'Navigate to the download page. This is release content'}
/>,
UI_CONTENT_2: <FormattedMessage
id={'download.page.release.2_0.update.UI_CONTENT_2'}
defaultMessage={`Show island and territory low-income percentiles in the sidebar`}
description={'Navigate to the download page. This is release content'}
/>,
};
export {RELEASE_2_0} from './releaseNotes';
export const DOWNLOAD_LINKS = {
TITLE: <FormattedMessage
@ -242,106 +162,91 @@ export const DOWNLOAD_LINKS = {
version: VERSION_NUMBER,
}}
/>,
LINK1: <FormattedMessage
id={'download.page.download.file.1'}
defaultMessage={`
<link1>Communities list data</link1> (.xlsx {cldXlsFileSize})
`}
description={'Navigate to the download page. This is first download file link'}
values={{
link1: COMMON_COPY.downloadLink(DOWNLOAD_FILES.NARWAL.COMMUNITIES_LIST_XLS.URL),
cldXlsFileSize: <FormattedNumber
value={DOWNLOAD_FILES.NARWAL.COMMUNITIES_LIST_XLS.SIZE}
style="unit"
unit="megabyte"
unitDisplay="narrow"
/>,
}}
/>,
LINK2: <FormattedMessage
id={'download.page.download.file.2'}
defaultMessage={`<link2>Communities list data</link2> (.csv {cldCsvFileSize})`}
description={'Navigate to the download page. This is second download file link'}
values={{
link2: COMMON_COPY.downloadLink(DOWNLOAD_FILES.NARWAL.COMMUNITIES_LIST_CSV.URL),
cldCsvFileSize: <FormattedNumber
value={DOWNLOAD_FILES.NARWAL.COMMUNITIES_LIST_CSV.SIZE}
style="unit"
unit="megabyte"
unitDisplay="narrow"
/>,
}}
/>,
LINK3: <FormattedMessage
id={'download.page.download.file.3'}
defaultMessage={`<link3>Shapefile</link3> (Codebook included with shapefile {shapeFileSize} unzipped)`}
description={'Navigate to the download page. This is third download file link'}
values={{
link3: COMMON_COPY.downloadLink(DOWNLOAD_FILES.NARWAL.SHAPE_FILE.URL),
shapeFileSize: <FormattedNumber
value={DOWNLOAD_FILES.NARWAL.SHAPE_FILE.SIZE}
style="unit"
unit="megabyte"
unitDisplay="narrow"
/>,
}}
/>,
LINK4: <FormattedMessage
id={'download.page.download.file.4'}
defaultMessage={`<link4>Technical support document</link4> (.pdf {tsdFileSize})`}
description={'Navigate to the download page. This is fourth download file link'}
values={{
link4: COMMON_COPY.linkFn(DOWNLOAD_FILES.NARWAL.TSD.URL, false, true),
link4es: COMMON_COPY.linkFn(DOWNLOAD_FILES.NARWAL.TSD_ES.URL, false, true),
tsdFileSize: <FormattedNumber
value={DOWNLOAD_FILES.NARWAL.TSD.SIZE}
style="unit"
unit="megabyte"
unitDisplay="narrow"
/>,
}}
/>,
LINK5: <FormattedMessage
id={'download.page.download.file.5'}
defaultMessage={`<link5>How to use the list of communities</link5> (.pdf {howToCommFileSize})`}
description={'Navigate to the download page. This is fifth download file link'}
values={{
link5: COMMON_COPY.linkFn(DOWNLOAD_FILES.NARWAL.HOW_TO_COMMUNITIES.URL, false, true),
link5es: COMMON_COPY.linkFn(DOWNLOAD_FILES.NARWAL.HOW_TO_COMMUNITIES_ES.URL, false, true),
howToCommFileSize: <FormattedNumber
value={DOWNLOAD_FILES.NARWAL.HOW_TO_COMMUNITIES.SIZE}
style="unit"
unit="kilobyte"
unitDisplay="narrow"
/>,
howToCommFileSizeEs: <FormattedNumber
value={DOWNLOAD_FILES.NARWAL.HOW_TO_COMMUNITIES_ES.SIZE}
style="unit"
unit="kilobyte"
unitDisplay="narrow"
/>,
}}
/>,
LINK6: <FormattedMessage
id={'download.page.download.file.6'}
defaultMessage={`<link6>Instructions to Federal agencies on using the CEJST</link6> (.pdf {instructions})`}
description={'Navigate to the download page. This is sixth download file link'}
values={{
link6: COMMON_COPY.linkFn(DOWNLOAD_FILES.NARWAL.INSTRUCTIONS.URL, false, true),
link6es: COMMON_COPY.linkFn(DOWNLOAD_FILES.NARWAL.INSTRUCTIONS_ES.URL, false, true),
instructions: <FormattedNumber
value={DOWNLOAD_FILES.NARWAL.INSTRUCTIONS.SIZE}
style="unit"
unit="kilobyte"
unitDisplay="narrow"
/>,
instructionsEs: <FormattedNumber
value={DOWNLOAD_FILES.NARWAL.INSTRUCTIONS_ES.SIZE}
style="unit"
unit="kilobyte"
unitDisplay="narrow"
/>,
}}
/>,
// };
LINKS: [
<FormattedMessage
id={'download.page.download.file.1'}
key={'download.page.download.file.1'}
defaultMessage={`
<link1>Communities list data</link1> (.xlsx {cldXlsFileSize})
`}
description={'Navigate to the download page. This is first download file link'}
values={{
link1: COMMON_COPY.downloadLink(DOWNLOAD_FILES.NARWAL.COMMUNITIES_LIST_XLS.URL),
cldXlsFileSize: <FormattedNumber
value={DOWNLOAD_FILES.NARWAL.COMMUNITIES_LIST_XLS.SIZE}
style="unit"
unit="megabyte"
unitDisplay="narrow"
/>,
}}
/>,
<FormattedMessage
id={'download.page.download.file.2'}
key={'download.page.download.file.2'}
defaultMessage={`<link2>Communities list data</link2> (.csv {cldCsvFileSize})`}
description={'Navigate to the download page. This is second download file link'}
values={{
link2: COMMON_COPY.downloadLink(DOWNLOAD_FILES.NARWAL.COMMUNITIES_LIST_CSV.URL),
cldCsvFileSize: <FormattedNumber
value={DOWNLOAD_FILES.NARWAL.COMMUNITIES_LIST_CSV.SIZE}
style="unit"
unit="megabyte"
unitDisplay="narrow"
/>,
}}
/>,
<FormattedMessage
id={'download.page.download.file.3'}
key={'download.page.download.file.3'}
defaultMessage={`<link3>Shapefile</link3> (Codebook included with shapefile {shapeFileSize} unzipped)`}
description={'Navigate to the download page. This is third download file link'}
values={{
link3: COMMON_COPY.downloadLink(DOWNLOAD_FILES.NARWAL.SHAPE_FILE.URL),
shapeFileSize: <FormattedNumber
value={DOWNLOAD_FILES.NARWAL.SHAPE_FILE.SIZE}
style="unit"
unit="megabyte"
unitDisplay="narrow"
/>,
}}
/>,
// <FormattedMessage
// id={'download.page.download.file.4'}
// key={'download.page.download.file.4'}
// defaultMessage={`<link4>Technical support document</link4> (.pdf {tsdFileSize})`}
// description={'Navigate to the download page. This is fourth download file link'}
// values={{
// link4: COMMON_COPY.linkFn(DOWNLOAD_FILES.NARWAL.TSD.URL, false, true),
// link4es: COMMON_COPY.linkFn(DOWNLOAD_FILES.NARWAL.TSD_ES.URL, false, true),
// tsdFileSize: <FormattedNumber
// value={DOWNLOAD_FILES.NARWAL.TSD.SIZE}
// style="unit"
// unit="megabyte"
// unitDisplay="narrow"
// />,
// }}
// />,
<FormattedMessage
id={'download.page.download.file.5'}
key={'download.page.download.file.5'}
defaultMessage={`<link5>Instructions to Federal agencies on using the CEJST</link5> (.pdf {instructions})`}
description={'Navigate to the download page. This is sixth download file link'}
values={{
link5: COMMON_COPY.linkFn(DOWNLOAD_FILES.NARWAL.INSTRUCTIONS.URL, false, true),
link5es: COMMON_COPY.linkFn(DOWNLOAD_FILES.NARWAL.INSTRUCTIONS_ES.URL, false, true),
instructions: <FormattedNumber
value={DOWNLOAD_FILES.NARWAL.INSTRUCTIONS.SIZE}
style="unit"
unit="kilobyte"
unitDisplay="narrow"
/>,
instructionsEs: <FormattedNumber
value={DOWNLOAD_FILES.NARWAL.INSTRUCTIONS_ES.SIZE}
style="unit"
unit="kilobyte"
unitDisplay="narrow"
/>,
}}
/>,
],
};

View file

@ -1,13 +1,13 @@
/* eslint-disable max-len */
import {FormattedDate, FormattedMessage, FormattedNumber} from 'gatsby-plugin-intl';
import React from 'react';
import {defineMessages} from 'react-intl';
import {FormattedDate, FormattedMessage, FormattedNumber} from 'gatsby-plugin-intl';
import {linkFn, boldFn, downloadLink} from './common';
import {PAGES_ENDPOINTS} from '../constants';
import {boldFn, downloadLink, linkFn} from './common';
import {DOWNLOAD_FILES} from './downloads';
import {VERSION_NUMBER} from './methodology';
import {PAGES_ENDPOINTS} from '../constants';
export const EXPLORE_PAGE_LINKS = {
WH_GOV_TRIBAL_ACTION_PLAN_4_26_21: `https://www.whitehouse.gov/wp-content/uploads/2022/01/CEQ-Tribal-Consultation-Plan-04.26.2021.pdf`,
@ -33,9 +33,9 @@ export const PAGE_INTRO = defineMessages({
export const PAGE_DESCRIPTION1 = <FormattedMessage
id={'explore.map.page.description.1'}
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
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'}
@ -582,8 +582,8 @@ export const SIDE_PANEL_DEMOGRAPHICS = {
/>,
DEMO_AGE_OVER_65: <FormattedMessage
id={'explore.map.page.side.panel.demo.age.over.65'}
defaultMessage={'Elderly over 65'}
description={`Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show the demographics: Elderly over 65`}
defaultMessage={'Adults over 65'}
description={`Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show the demographics: Adults over 65`}
/>,
SHOW_DEMOGRAPHICS: <FormattedMessage
id={'explore.map.page.side.panel.demo.show'}
@ -1454,7 +1454,7 @@ export const NOTE_ON_TERRITORIES = {
PARA_0: <FormattedMessage
id={'explore.map.page.under.map.note.on.territories.para.0'}
defaultMessage={`
Not all the data used in the tool are available or used for all U.S. territories.
Not all the data used in the tool are available or used for all U.S. Territories.
`}
description={`Navigate to the explore the map page. Under the map, you will see territories paragraph 0`}
/>,
@ -1472,7 +1472,7 @@ export const NOTE_ON_TERRITORIES = {
PARA_2: <FormattedMessage
id={'explore.map.page.under.map.note.on.territories.para.2'}
defaultMessage={`
<bold>American Samoa, Guam, the Northern Mariana Islands, and the U.S. Virgin Islands:</bold> 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.
<bold>American Samoa, Guam, the Northern Mariana Islands, and the U.S. Virgin Islands:</bold> For these U.S. Territories, the tool uses the following data: expected agriculture loss rate, expected building loss rate, expected population loss rate, abandoned mine lands, low income, unemployment, poverty, low median income, and high school education. These burdens are in the climate change, legacy pollution, and workforce development categories.
`}
description={`Navigate to the explore the map page. Under the map, you will see territories paragraph 2`}
values={{

View file

@ -97,12 +97,6 @@ export const QUESTIONS = [
defaultMessage={ 'When was the CEJST released?'}
description={ 'Navigate to the FAQs page, this will be Q16'}
/>,
<FormattedMessage
id={ 'faqs.page.Q18'}
key={ 'faqs.page.Q18'}
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'}
@ -374,14 +368,6 @@ export const FAQ_ANSWERS = {
/>),
}}
/>,
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.`}
description={ 'Navigate to the FAQs page, this will be an answer, Q18'}
values={{
link1: linkFn(`https://lp.constantcontactpages.com/su/Vm8pCFj/spring`, false, true),
}}
/>,
Q19: <FormattedMessage
id={ 'faqs.page.answers.Q19'}
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.`}

View file

@ -44,19 +44,12 @@ export const PAGE = defineMessages({
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.
For census tracts that were identified as disadvantaged in version 1.0 of the tool, but do not meet the methodology for the 2.0 version: If the census tract ID was identified as disadvantaged in version 1.0, then the census tract is considered disadvantaged.
`,
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.
`,
@ -496,6 +489,11 @@ export const DATASET_CARD_LABELS = defineMessages({
defaultMessage: 'NEW',
description: 'Navigate to the Methodology page. This is the label associated with a NEW card',
},
UPDATED: {
id: 'methodology.page.datasetCard.updated',
defaultMessage: 'UPDATED',
description: 'Navigate to the Methodology page. This is the label associated with an UPDATED card',
},
});
export const DATE_RANGE = {
@ -870,6 +868,7 @@ export interface IIndicators {
sources: {
source: JSX.Element,
isNew?: boolean,
isUpdated?: boolean,
availableFor: { // Todo remove this and replace with MessageDescriptor when ticket #2000 is fixed
id: string,
description: string,
@ -935,6 +934,11 @@ export const INDICATORS: IIndicators[] = [
source: SOURCE_LINKS.CENSUS_ACS_15_19,
availableFor: AVAILABLE_FOR.ALL_US_DC_PR,
},
{
source: SOURCE_LINKS.DECENNIAL_CENSUS_20,
isNew: true,
availableFor: AVAILABLE_FOR.ALL_ISLDS,
},
],
},
@ -1663,7 +1667,7 @@ export const INDICATORS: IIndicators[] = [
},
{
source: SOURCE_LINKS.DECENNIAL_CENSUS_20,
isNew: true,
isUpdated: true,
availableFor: AVAILABLE_FOR.ALL_ISLDS,
},
],
@ -1691,7 +1695,7 @@ export const INDICATORS: IIndicators[] = [
},
{
source: SOURCE_LINKS.DECENNIAL_CENSUS_20,
isNew: true,
isUpdated: true,
availableFor: AVAILABLE_FOR.ALL_ISLDS,
},
],
@ -1719,7 +1723,7 @@ export const INDICATORS: IIndicators[] = [
},
{
source: SOURCE_LINKS.DECENNIAL_CENSUS_20,
isNew: true,
isUpdated: true,
availableFor: AVAILABLE_FOR.ALL_ISLDS,
},
],
@ -1747,7 +1751,7 @@ export const INDICATORS: IIndicators[] = [
},
{
source: SOURCE_LINKS.DECENNIAL_CENSUS_20,
isNew: true,
isUpdated: true,
availableFor: AVAILABLE_FOR.ALL_ISLDS,
},
],

View file

@ -1,5 +1,5 @@
import React from 'react';
import {FormattedDate, FormattedMessage, defineMessages} from 'gatsby-plugin-intl';
import React from 'react';
import {METH_1_0_RELEASE_DATE, METH_2_0_RELEASE_DATE, METH_BETA_RELEASE_DATE} from './common';
export const PAGE = defineMessages({
@ -12,12 +12,12 @@ export const PAGE = defineMessages({
export const CARD = {
TITLE: <FormattedMessage
id={'previous.versions.page.card.text'}
id={'previous.versions.page.beta.card.text'}
defaultMessage={'Beta version'}
description={'Navigate to the previous version page. This is the Cards title text'}
/>,
BODY: <FormattedMessage
id={'previous.versions.page.body.text'}
id={'previous.versions.page.beta.body.text'}
defaultMessage={`The beta version of the methodology and data was used during the public
beta period to get feedback on the tool from {startDate} \u2013 {endDate}.`}
description={'Navigate to the previous version page. This is the Cards body text'}
@ -40,13 +40,13 @@ export const CARD = {
export const CARD_1_0 = {
TITLE: <FormattedMessage
id={'previous.versions.page.card.text'}
id={'previous.versions.page.1_0.card.text'}
defaultMessage={'Version 1.0'}
description={'Navigate to the previous version page. This is the Version 1.0 Card title text'}
/>,
BODY: <FormattedMessage
id={'previous.versions.page.body.text'}
defaultMessage={`The 1.0 versions of the methodology and data were available on the tool\u2019s
id={'previous.versions.page.1_0.body.text'}
defaultMessage={`The 1.0 version of the methodology and data were available on the tool\u2019s
website from {startDate} \u2013 {endDate}.`}
description={'Navigate to the previous version page. This is the Version 1.0 Card body text'}
values={{

View file

@ -1,4 +1,4 @@
import {FormattedDate, FormattedMessage} from 'gatsby-plugin-intl';
import {defineMessages, FormattedDate, FormattedMessage} from 'gatsby-plugin-intl';
import React from 'react';
import LinkTypeWrapper from '../../components/LinkTypeWrapper';
import {PAGES_ENDPOINTS} from '../constants';
@ -9,7 +9,7 @@ export const PRIVACY_EMAIL = 'CEJST@ceq.eop.gov';
export const USA_GOV_COOKIES_URL = 'https://www.usa.gov/optout-instructions';
export const COPPA_URL = 'https://www.ftc.gov/legal-library/browse/rules/childrens-online-privacy-protection-rule-coppa';
export const PAGE_INTRO = {
export const PAGE_INTRO = defineMessages({
PAGE_TITLE: {
id: 'privacy.page.title',
defaultMessage: 'Privacy Policy',
@ -20,7 +20,7 @@ export const PAGE_INTRO = {
defaultMessage: 'CEJST Privacy Policy',
description: 'Main heading for privacy page',
},
};
});
export const PRIVACY_CONTENT = {
EFFECTIVE_DATE: <FormattedMessage

View file

@ -0,0 +1,104 @@
import {FormattedDate, FormattedMessage} from 'gatsby-plugin-intl';
import React from 'react';
import * as COMMON_COPY from './common';
import {VERSION_NUMBER} from './methodology';
export const RELEASE_2_0 = {
HEADER: <FormattedMessage
id={'download.page.release.2_0.update.HEADER'}
defaultMessage={`Version {release} Release update - {date}`}
description={'Navigate to the download page. This is first download file link'}
values={{
release: VERSION_NUMBER,
date: <FormattedDate
value={COMMON_COPY.METH_2_0_RELEASE_DATE}
year="numeric"
month="short"
day="numeric"
/>,
}}
/>,
NEW_IMPROVED_SECTION: <FormattedMessage
id={'download.page.release.2_0.update.NEW_IMPROVED_SECTION'}
defaultMessage={`New & Improved`}
description={'Navigate to the download page. This is new and improved section'}
/>,
NEW_IMPROVED_CONTENT: [
<FormattedMessage
id={'download.page.release.2_0.update.NEW_IMPROVED_CONTENT_1'}
key={'download.page.release.2_0.update.NEW_IMPROVED_CONTENT_1'}
defaultMessage={`Added the low income burden to American Samoa, Guam, the Mariana Islands, and the U.S. Virgin
Islands`}
description={'Navigate to the download page. This is release content'}
/>,
<FormattedMessage
id={'download.page.release.2_0.update.NEW_IMPROVED_CONTENT_2'}
key={'download.page.release.2_0.update.NEW_IMPROVED_CONTENT_2'}
defaultMessage={`Tracts in these territories that are completely surrounded by disadvantaged tracts and exceed
an adjusted low income threshold are now considered disadvantaged`}
description={'Navigate to the download page. This is release content'}
/>,
<FormattedMessage
id={'download.page.release.2_0.update.NEW_IMPROVED_CONTENT_3'}
key={'download.page.release.2_0.update.NEW_IMPROVED_CONTENT_3'}
defaultMessage={`Additionally, census tracts in these four Territories are now considered disadvantaged if they
meet the low income threshold only, because these Territories are not included in the nationally-consistent
datasets on environmental and climate burdens used in the tool`}
description={'Navigate to the download page. This is release content'}
/>,
<FormattedMessage
id={'download.page.release.2_0.update.NEW_IMPROVED_CONTENT_4'}
key={'download.page.release.2_0.update.NEW_IMPROVED_CONTENT_4'}
defaultMessage={`Updated the data in the workforce development category to the Census Decennial 2020 data for
the U.S. territories of Guam, Virgin Islands, Northern Mariana Islands, and American Samoa`}
description={'Navigate to the download page. This is release content'}
/>,
<FormattedMessage
id={'download.page.release.2_0.update.NEW_IMPROVED_CONTENT_5'}
key={'download.page.release.2_0.update.NEW_IMPROVED_CONTENT_5'}
defaultMessage={`Made improvements to the low income burden to better identify college students before they are
excluded from that burden\u2019s percentile`}
description={'Navigate to the download page. This is release content'}
/>,
<FormattedMessage
id={'download.page.release.2_0.update.NEW_IMPROVED_CONTENT_6'}
key={'download.page.release.2_0.update.NEW_IMPROVED_CONTENT_6'}
defaultMessage={`Census tracts that were disadvantaged under version 1.0 continue to be considered as
disadvantaged in version 2.0`}
description={'Navigate to the download page. This is release content'}
/>,
],
TECHNICAL_FIXES_SECTION: <FormattedMessage
id={'download.page.release.2_0.update.TECHNICAL_FIXES_SECTION'}
defaultMessage={`Technical Fixes`}
description={'Navigate to the download page. This is technical fixes section'}
/>,
TECHNICAL_FIXES_CONTENT: [
<FormattedMessage
id={'download.page.release.2_0.update.TECHNICAL_FIXES_CONTENT_1'}
key={'download.page.release.2_0.update.TECHNICAL_FIXES_CONTENT_1'}
defaultMessage={`For tracts that have water boundaries, e.g. coastal or island tracts, the water boundaries are
now excluded from the calculation to determine if a tract is 100% surrounded by disadvantaged census tracts`}
description={'Navigate to the download page. This is release content'}
/>,
],
UI_SECTION: <FormattedMessage
id={'download.page.release.2_0.update.UI_SECTION'}
defaultMessage={`User Interface Improvements`}
description={'Navigate to the download page. This is the UI improvements section'}
/>,
UI_CONTENT: [
<FormattedMessage
id={'download.page.release.2_0.update.UI_CONTENT_1'}
key={'download.page.release.2_0.update.UI_CONTENT_1'}
defaultMessage={`Added the ability to search by census tract ID`}
description={'Navigate to the download page. This is release content'}
/>,
<FormattedMessage
id={'download.page.release.2_0.update.UI_CONTENT_2'}
key={'download.page.release.2_0.update.UI_CONTENT_2'}
defaultMessage={`The basemap has been updated to use a free, open source map`}
description={'Navigate to the download page. This is release content'}
/>,
],
};

View file

@ -1,13 +1,25 @@
const enJson = require('./en.json');
const esJson = require('./es.json');
// const assert = require('assert');
const enKeys = Object.keys(enJson);
const esKeys = Object.keys(esJson);
const esKeysNotInEn = Object.keys(enJson).filter((key) => !esKeys.includes(key));
if (esKeysNotInEn.length > 0) {
console.log('\nKeys that are missing in es.json: ');
const enKeysNotInEs = enKeys.filter((key) => !esKeys.includes(key));
const esKeysNotInEn = esKeys.filter((key) => !enKeys.includes(key));
// Check for missing/outdated keys
if (enKeysNotInEs.length > 0 || esKeysNotInEn.length > 0) {
console.log('\nKeys to be added to es.json: ');
console.log(enKeysNotInEs);
console.log('\nKeys to be removed from es.json: ');
console.log(esKeysNotInEn);
} else {
console.log('All keys from en.json appear to exist in es.json');
}
// Check for identical translations
const identicalValues = enKeys.filter((key) => enJson[key].defaultMessage === esJson[key]);
if (identicalValues.length > 0) {
console.log('\nKeys where es.json is the same as en.json: ');
console.log(identicalValues);
}

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 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.",
"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. 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": {
@ -39,10 +39,6 @@
"defaultMessage": "Any other questions? Email: <link1>Screeningtool-Support@omb.eop.gov</link1>.",
"description": "Navigate to the about page. You will see How you can help list item 3"
},
"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.",
"description": "Navigate to the about page. You will see How you can help list item 3"
},
"about.page.join.open.source.info": {
"defaultMessage": "The tools code is open source, which means it is available for the public to view and contribute to it.",
"description": "info on Navigate to the About page. This is the joining open source community"
@ -55,31 +51,15 @@
"defaultMessage": "Join the open source community",
"description": "Navigate to the About page. This is the join the community heading"
},
"about.page.list.item.1": {
"defaultMessage": "<link1>Memorandum</link1> on Using the CEJST for the Justice40 Initiative",
"description": "Navigate to the About page. This is the list item 1"
},
"about.page.list.item.2": {
"defaultMessage": "<link1>Instructions</link1> to Federal agencies on using the CEJST",
"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 marginalized by underinvestment and overburdened by pollution.",
"defaultMessage": "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": {
"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"
},
"about.page.paragraph.3": {
"defaultMessage": "Federal agencies should also use the following:",
"description": "Navigate to the About page. This is the paragraph 3"
},
"about.page.paragraph.4": {
"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}.",
"defaultMessage": "CEQ will 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": {
"about.page.paragraph.3": {
"defaultMessage": "A Spanish version of the site will be available in the near future.",
"description": "Navigate to the About page. This is the paragraph 5"
},
@ -99,30 +79,6 @@
"defaultMessage": "About",
"description": "Navigate to the About page. This is the about page title text"
},
"about.page.use.data.heading": {
"defaultMessage": "Using the data",
"description": "Navigate to the About page. This is the sub heading of Using the data"
},
"about.page.use.data.paragraph": {
"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": {
"defaultMessage": "Download the spreadsheet tutorial (.pdf 5.4 MB)",
"description": "Navigate to the About page. This the link to download the how to use map tutorial"
},
"about.page.use.map.heading": {
"defaultMessage": "Using the map",
"description": "Navigate to the About page. This is the sub heading of Using the map"
},
"about.page.use.map.para": {
"defaultMessage": "Zoom in and select any census tract to see if it is considered disadvantaged.",
"description": "Navigate to the About page. This is the paragraph of Using the map"
},
"about.page.use.map.tutorial": {
"defaultMessage": "Download the CEJST tutorial (.pdf 9.6 MB)",
"description": "Navigate to the About page. This the link to download the how to use map tutorial"
},
"common.pages.alerts.additional_docs_available.description": {
"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."
@ -179,10 +135,7 @@
"defaultMessage": "Freedom of Information Act (FOIA)",
"description": "Navigate to the about page. This is Footer FOIA link text"
},
"common.pages.footer.gatsby.link": {
"description": "Navigate to the about page. This is Footer find contact link text"
},
"common.pages.footer.github.link.text": {
"common.pages.footer.github.text": {
"defaultMessage": "Check out the code on GitHub",
"description": "Navigate to the about page. This is Footer github link text"
},
@ -194,9 +147,6 @@
"defaultMessage": "More information",
"description": "Navigate to the about page. This is Footer column header"
},
"common.pages.footer.privacy.link": {
"description": "Navigate to the about page. This is Footer privacy policy link text"
},
"common.pages.footer.privacy.text": {
"defaultMessage": "Privacy Policy",
"description": "Navigate to the about page. This is Footer privacy policy link text"
@ -293,16 +243,8 @@
"defaultMessage": "<link3>Shapefile</link3> (Codebook included with shapefile {shapeFileSize} unzipped)",
"description": "Navigate to the download page. This is third download file link"
},
"download.page.download.file.4": {
"defaultMessage": "<link4>Technical support document</link4> (.pdf {tsdFileSize})",
"description": "Navigate to the download page. This is fourth download file link"
},
"download.page.download.file.5": {
"defaultMessage": "<link5>How to use the list of communities</link5> (.pdf {howToCommFileSize})",
"description": "Navigate to the download page. This is fifth download file link"
},
"download.page.download.file.6": {
"defaultMessage": "<link6>Instructions to Federal agencies on using the CEJST</link6> (.pdf {instructions})",
"defaultMessage": "<link5>Instructions to Federal agencies on using the CEJST</link5> (.pdf {instructions})",
"description": "Navigate to the download page. This is sixth download file link"
},
"download.page.files.section.title": {
@ -313,48 +255,52 @@
"defaultMessage": "Version {release} Release update - {date}",
"description": "Navigate to the download page. This is first download file link"
},
"download.page.release.2_0.update.NEW_IMPROVED_CONTENT_1": {
"defaultMessage": "Added the low income burden to American Samoa, Guam, the Mariana Islands, and the U.S. Virgin Islands",
"description": "Navigate to the download page. This is release content"
},
"download.page.release.2_0.update.NEW_IMPROVED_CONTENT_2": {
"defaultMessage": "Tracts in these territories that are completely surrounded by disadvantaged tracts and exceed an adjusted low income threshold are now considered disadvantaged",
"description": "Navigate to the download page. This is release content"
},
"download.page.release.2_0.update.NEW_IMPROVED_CONTENT_3": {
"defaultMessage": "Additionally, census tracts in these four Territories are now considered disadvantaged if they meet the low income threshold only, because these Territories are not included in the nationally-consistent datasets on environmental and climate burdens used in the tool",
"description": "Navigate to the download page. This is release content"
},
"download.page.release.2_0.update.NEW_IMPROVED_CONTENT_4": {
"defaultMessage": "Updated the data in the workforce development category to the Census Decennial 2020 data for the U.S. territories of Guam, Virgin Islands, Northern Mariana Islands, and American Samoa",
"description": "Navigate to the download page. This is release content"
},
"download.page.release.2_0.update.NEW_IMPROVED_CONTENT_5": {
"defaultMessage": "Made improvements to the low income burden to better identify college students before they are excluded from that burdens percentile",
"description": "Navigate to the download page. This is release content"
},
"download.page.release.2_0.update.NEW_IMPROVED_CONTENT_6": {
"defaultMessage": "Census tracts that were disadvantaged under version 1.0 continue to be considered as disadvantaged in version 2.0",
"description": "Navigate to the download page. This is release content"
},
"download.page.release.2_0.update.NEW_IMPROVED_SECTION": {
"defaultMessage": "New & improved",
"defaultMessage": "New & Improved",
"description": "Navigate to the download page. This is new and improved section"
},
"download.page.release.2_0.update.SCORING_CONTENT_1": {
"defaultMessage": "Updated to use Census Decennial 2020 data for the U.S. territories of Guam, Virgin Islands, Northern Mariana Islands, and American Samoa",
"download.page.release.2_0.update.TECHNICAL_FIXES_CONTENT_1": {
"defaultMessage": "For tracts that have water boundaries, e.g. coastal or island tracts, the water boundaries are now excluded from the calculation to determine if a tract is 100% surrounded by disadvantaged census tracts",
"description": "Navigate to the download page. This is release content"
},
"download.page.release.2_0.update.SCORING_CONTENT_2": {
"defaultMessage": "U.S. territories of Guam, Virgin Islands, Northern Mariana Islands, and American Samoa qualify as disadvantaged communities based on a low-income threshold at or above the 65th percentile, in addition to any existing qualification pathways",
"description": "Navigate to the download page. This is release content"
},
"download.page.release.2_0.update.SCORING_CONTENT_3": {
"defaultMessage": "Apply a donut hole disadvantaged community qualification to U.S. territories of Guam, Virgin Islands, Northern Mariana Islands, American Samoa, and Puerto Rico based on adjacency to already qualifying disadvantaged community tracts and meeting a 50th percentile low-income threshold",
"description": "Navigate to the download page. This is release content"
},
"download.page.release.2_0.update.SCORING_CONTENT_4": {
"defaultMessage": "Improved donut hole disadvantaged community qualification by adding tracts that are fully surrounded and have water boundaries",
"description": "Navigate to the download page. This is release content"
},
"download.page.release.2_0.update.SCORING_CONTENT_5": {
"defaultMessage": "The poverty percentage calculation excludes college students, ensuring it reflects the economic conditions of the non-college population",
"description": "Navigate to the download page. This is release content"
},
"download.page.release.2_0.update.SCORING_CONTENT_6": {
"defaultMessage": "Grandfathering of Census tracts that were designated as disadvantaged communities in version 1.0 of this tool",
"description": "Navigate to the download page. This is release content"
},
"download.page.release.2_0.update.SCORING_SUBSECTION": {
"defaultMessage": "Scoring improvements",
"description": "Navigate to the download page. This is scorig improvement section"
"download.page.release.2_0.update.TECHNICAL_FIXES_SECTION": {
"defaultMessage": "Technical Fixes",
"description": "Navigate to the download page. This is technical fixes section"
},
"download.page.release.2_0.update.UI_CONTENT_1": {
"defaultMessage": "Users can now search on the map by Census tract ID",
"defaultMessage": "Added the ability to search by census tract ID",
"description": "Navigate to the download page. This is release content"
},
"download.page.release.2_0.update.UI_CONTENT_2": {
"defaultMessage": "Show island and territory low-income percentiles in the sidebar",
"defaultMessage": "The basemap has been updated to use a free, open source map",
"description": "Navigate to the download page. This is release content"
},
"download.page.release.2_0.update.UI_SUBSECTION": {
"defaultMessage": "User interface improvements",
"download.page.release.2_0.update.UI_SECTION": {
"defaultMessage": "User Interface Improvements",
"description": "Navigate to the download page. This is the UI improvements section"
},
"downloads.page.change.log.text": {
@ -534,8 +480,8 @@
"description": "Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show the communities the score currently is focused on"
},
"explore.map.page.side.panel.demo.age.over.65": {
"defaultMessage": "Elderly over 65",
"description": "Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show the demographics: Elderly over 65"
"defaultMessage": "Adults over 65",
"description": "Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show the demographics: Adults over 65"
},
"explore.map.page.side.panel.demo.age.title": {
"defaultMessage": "Age",
@ -1234,7 +1180,7 @@
"description": "Navigate to the explore the map page. Under the map, you will see territories intro text"
},
"explore.map.page.under.map.note.on.territories.para.0": {
"defaultMessage": "Not all the data used in the tool are available or used for all U.S. territories.",
"defaultMessage": "Not all the data used in the tool are available or used for all U.S. Territories.",
"description": "Navigate to the explore the map page. Under the map, you will see territories paragraph 0"
},
"explore.map.page.under.map.note.on.territories.para.1": {
@ -1242,7 +1188,7 @@
"description": "Navigate to the explore the map page. Under the map, you will see territories paragraph 1"
},
"explore.map.page.under.map.note.on.territories.para.2": {
"defaultMessage": "<bold>American Samoa, Guam, the Northern Mariana Islands, and the U.S. Virgin Islands:</bold> 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": "<bold>American Samoa, Guam, the Northern Mariana Islands, and the U.S. Virgin Islands:</bold> For these U.S. Territories, the tool uses the following data: expected agriculture loss rate, expected building loss rate, expected population loss rate, abandoned mine lands, low income, unemployment, poverty, low median income, and high school education. These burdens are in the climate change, legacy pollution, and workforce development categories.",
"description": "Navigate to the explore the map page. Under the map, you will see territories paragraph 2"
},
"explore.map.page.under.map.note.on.tribal.nations.intro": {
@ -1281,10 +1227,6 @@
"defaultMessage": "When was the CEJST released?",
"description": "Navigate to the FAQs page, this will be Q16"
},
"faqs.page.Q18": {
"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": "What files and documentation are available from the tool?",
"description": "Navigate to the FAQs page, this will be Q19"
@ -1377,10 +1319,6 @@
"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.",
"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> 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"
@ -2053,6 +1991,10 @@
"defaultMessage": "Source:",
"description": "Navigate to the Methodology page. This is the label associated with source of the card"
},
"methodology.page.datasetCard.updated": {
"defaultMessage": "UPDATED",
"description": "Navigate to the Methodology page. This is the label associated with an UPDATED card"
},
"methodology.page.datasetCard.used.in": {
"defaultMessage": "Used in:",
"description": "Navigate to the Methodology page. This is the label associated with explaining the card"
@ -2194,14 +2136,10 @@
"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.",
"defaultMessage": "For census tracts that were identified as disadvantaged in version 1.0 of the tool, but do not meet the methodology for the 2.0 version: If the census tract ID was identified as disadvantaged in version 1.0, then the census tract is considered disadvantaged.",
"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"
},
@ -2257,10 +2195,22 @@
"defaultMessage": "Page not found",
"description": "page not found title text"
},
"previous.versions.page.body.text": {
"defaultMessage": "The 1.0 versions of the methodology and data were available on the tools website from {startDate} {endDate}.",
"previous.versions.page.1_0.body.text": {
"defaultMessage": "The 1.0 version of the methodology and data were available on the tools website from {startDate} {endDate}.",
"description": "Navigate to the previous version page. This is the Version 1.0 Card body text"
},
"previous.versions.page.1_0.card.text": {
"defaultMessage": "Version 1.0",
"description": "Navigate to the previous version page. This is the Version 1.0 Card title text"
},
"previous.versions.page.beta.body.text": {
"defaultMessage": "The beta version of the methodology and data was used during the public beta period to get feedback on the tool from {startDate} {endDate}.",
"description": "Navigate to the previous version page. This is the Cards body text"
},
"previous.versions.page.beta.card.text": {
"defaultMessage": "Beta version",
"description": "Navigate to the previous version page. This is the Cards title text"
},
"previous.versions.page.button1.alt.tag.text": {
"defaultMessage": "a button that allows to download the data and documentation to the tool",
"description": "Navigate to the previous version page. This is the Cards button1.alt.tag text"
@ -2277,10 +2227,6 @@
"defaultMessage": "Shapefile & codebook",
"description": "Navigate to the previous version page. This is the Cards button2 text"
},
"previous.versions.page.card.text": {
"defaultMessage": "Version 1.0",
"description": "Navigate to the previous version page. This is the Version 1.0 Card title text"
},
"previous.versions.page.title.text": {
"defaultMessage": "Previous versions",
"description": "Navigate to the previous version page. This is the page title text"
@ -2341,6 +2287,14 @@
"defaultMessage": "The Council on Environmental Quality (CEQ, we, or us) is committed to protecting the privacy and security of the information we collect from users (you) of the Climate and Economic Justice Screening Tool (CEJST), including the interactive map and the other features of the CEJST website. This Privacy Policy explains our practices for collecting, using, and disclosing information that we obtain from your use of the CEJST.",
"description": "Privacy policy overall intro"
},
"privacy.page.heading": {
"defaultMessage": "CEJST Privacy Policy",
"description": "Main heading for privacy page"
},
"privacy.page.title": {
"defaultMessage": "Privacy Policy",
"description": "Privacy page title meta info"
},
"privacy.personal.info.body1": {
"defaultMessage": "You can voluntarily provide us certain information, such as your email address, if you choose give us feedback about the CEJST. You do not have to provide personal information to visit the CEJST. If you choose to provide personal information by sending a message to an email address on this website, submitting a form through this website, or filling out a questionnaire, we will use the information you provide to respond to you or provide the service you requested.",
"description": "Privacy policy voluntary information text"

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 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.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. 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.",
@ -9,29 +9,17 @@
"about.page.how.you.can.help.list.item.2": "Sugiera nuevas <link1es>fuentes de datos</link1es>.",
"about.page.how.you.can.help.list.item.3": "¿Tiene comentarios acerca de un distrito censal específico? Puede hacer clic aquí o hacer clic en el botón \"Enviar comentarios\" situado en el panel lateral de un distrito censal en el mapa.",
"about.page.how.you.can.help.list.item.4": "¿Más preguntas? La mejor forma de ponerse en contacto con el Consejo sobre la Calidad del Medio Ambiente (CEQ, por sus siglas en inglés) es al completar este <link2es>formulario</link2es>. De lo contrario, envíe un correo electrónico a: <link1>Screeningtool-Support@omb.eop.gov</link1>",
"about.page.how.you.can.help.para.1": "El Consejo sobre la Calidad del Medio Ambiente tiene previsto publicar una Solicitud de información en 2023. Esto dará tiempo al público para utilizar la herramienta antes de enviar sus comentarios.",
"about.page.join.open.source.info": "El código de la herramienta es código abierto, lo cual significa que está disponible para que el público lo vea y contribuya.",
"about.page.join.open.source.link": "Véala en GitHub",
"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 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 continuará actualizando la herramienta, después de revisar los comentarios del público, las investigaciones y la disponibilidad de nuevos datos. La versión actual de la herramienta es la versión {version}.",
"about.page.paragraph.5": "Próximamente estará disponible una versión en español del sitio.",
"about.page.paragraph.1": "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": "CEQ actualizará 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.3": "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",
"about.page.send.feedback.info": "¿Tiene ideas para la herramienta? Póngase en contacto con el Consejo sobre la Calidad Medioambiental (CEQ).",
"about.page.title.text": "Información básica",
"about.page.use.data.heading": "Cómo utilizar los datos ",
"about.page.use.data.paragraph": "Los datos de la herramienta están disponibles para <link1>descargar</link1>. Estos datos se pueden usar para filtrar por estado o condado.",
"about.page.use.data.tutorial": "Descarga el tutorial de la hoja de cálculo (.pdf 5,4 MB)",
"about.page.use.map.heading": "Utilización del mapa",
"about.page.use.map.para": "Amplíe y seleccione cualquier distrito censal para ver si se considera como desfavorecido.",
"about.page.use.map.tutorial": "Descarga el tutorial CEJST (.pdf 9.6 MB)",
"common.pages.alerts.additional_docs_available.description": "Descargue un nuevo <link1>documento de apoyo técnico</link1> y otra documentación, y <link2>envíe sus comentarios</link2>.",
"common.pages.alerts.banner.beta.content": "<bold1>Herramienta actualizada.</bold1> La versión 1.0 de la herramienta fue publicada el {relDate}.",
"common.pages.alerts.census.tract.title": "Ya hay más documentación disponible",
"common.pages.alerts.public_comment_period.description": "El Consejo sobre la Calidad del Medio Ambiente (CEQ) puso a disposición la versión 1.0 de la herramienta el {ver1RelDate}. Para más información sobre las mejoras de la herramienta, lea el <link1>comunicado de prensa</link1> del CEQ.",
"common.pages.alerts.version.1.release..title": "Ya está disponible la versión 1.0 de la herramienta.",
@ -42,11 +30,9 @@
"common.pages.footer.findcontact": "Buscar un contacto en USA.gov.",
"common.pages.footer.findcontact.link": "https://www.usa.gov/",
"common.pages.footer.foia.text": "Ley de Libertad de Información (FOIA)",
"common.pages.footer.gatsby.link": "https://github.com/usds/justice40-tool",
"common.pages.footer.github.link.text": "Vea el código en GitHub",
"common.pages.footer.github.text": "Vea el código en GitHub",
"common.pages.footer.logo.title": "Consejo sobre la Calidad del Medio Ambiente",
"common.pages.footer.moreinfoheader": "Más información",
"common.pages.footer.privacy.link": "https://www.whitehouse.gov/privacy/",
"common.pages.footer.privacy.text": "Política de privacidad",
"common.pages.footer.whitehouselogoalt": "Whitehouse logo",
"common.pages.header.about": "Información básica",
@ -61,7 +47,6 @@
"common.pages.header.tsd": "Documento de apoyo técnico",
"common.pages.tsd.url": "https://static-data-screeningtool.geoplatform.gov/data-pipeline/data/score/downloadable/cejst_technical_support_document.pdf",
"contact.page.census.tract.feedback.para3": "La mejor forma de ponerse en contacto con el Consejo sobre la Calidad del Medio Ambiente (CEQ, por sus siglas en ingles) es al completar este <link1es>formulario</link1es>.",
"contact.page.fab.survey.link": "https://www.surveymonkey.com/r/P3LWTSB",
"contact.page.fab.survey.text": "Ayude a mejorar la herramienta",
"contact.page.general": "Envíe un correo electrónico al CEQ a: {general_email_address}.",
"contact.page.header.text": "Contacto",
@ -73,21 +58,21 @@
"download.page.download.file.2": "<Link2>datos de la lista Comunidades</link2> (.csv {cldCsvFileSize})",
"download.page.download.file.3": "<link3>Archivo de forma </link3> (libro de códigos incluido con el archivo de forma {shapeFileSize} descomprimido)",
"download.page.download.file.4": "<link4es>documento de apoyo técnico</link4es> (.pdf {tsdFileSize})",
"download.page.download.file.5": "<link5es>Cómo utilizar la lista Comunidades</link5es> (.pdf {howToCommFileSizeEs})",
"download.page.download.file.6": "<link6es>Instrucciones a las agencias federales sobre el uso del CEJST</link6es> (.pdf {instructionsEs})",
"download.page.download.file.5": "<link5es>Instrucciones a las agencias federales sobre el uso del CEJST</link5es> (.pdf {instructionsEs})",
"download.page.files.section.title": "Formatos de archivo de la versión {version}",
"download.page.release.2_0.update.HEADER": "Actualización de la publicación {release} de la versión - {date}",
"download.page.release.2_0.update.NEW_IMPROVED_SECTION": "Nuevo y mejorado",
"download.page.release.2_0.update.SCORING_SUBSECTION": "Mejoras en la puntuación",
"download.page.release.2_0.update.SCORING_CONTENT_1": "Actualizado para utilizar datos del censo decenal de 2020 para los territorios estadounidenses de Guam, las Islas Vírgenes, las Islas Marianas del Norte y Samoa Americana",
"download.page.release.2_0.update.SCORING_CONTENT_2": "Los territorios estadounidenses de Guam, las Islas Vírgenes, las Islas Marianas del Norte y Samoa Americana califican como comunidades desfavorecidas según un umbral de bajos ingresos igual o superior al percentil 65, además de cualquier vía de calificación existente",
"download.page.release.2_0.update.SCORING_CONTENT_3": "Aplicar una calificación de comunidad desfavorecida a los territorios estadounidenses de Guam, las Islas Vírgenes, las Islas Marianas del Norte, Samoa Americana y Puerto Rico en función de la adyacencia a zonas comunitarias desfavorecidas que ya califican y que cumplan con un umbral de bajos ingresos del percentil 50",
"download.page.release.2_0.update.SCORING_CONTENT_4": "Se mejoró la calificación de la comunidad en desventaja al agregar áreas que están completamente rodeadas y tienen límites de agua",
"download.page.release.2_0.update.SCORING_CONTENT_5": "El cálculo del porcentaje de pobreza excluye a los estudiantes universitarios, asegurando que refleja las condiciones económicas de la población no universitaria",
"download.page.release.2_0.update.SCORING_CONTENT_6": "Protección de los distritos censales que fueron designadas como comunidades desfavorecidas en la versión 1.0 de esta herramienta",
"download.page.release.2_0.update.UI_SUBSECTION": "Mejoras en la interfaz de usuario",
"download.page.release.2_0.update.NEW_IMPROVED_CONTENT_1": "Se agregó la carga de bajos ingresos a Samoa Americana, Guam, las Islas Marianas y las Islas Vírgenes de los Estados Unidos",
"download.page.release.2_0.update.NEW_IMPROVED_CONTENT_2": "Los distritos de estos Territorios que están completamente rodeados de zonas desfavorecidas y superan un umbral ajustado de bajos ingresos ahora se consideran desfavorecidas",
"download.page.release.2_0.update.NEW_IMPROVED_CONTENT_3": "Además, los distritos censales en estos cuatro Territorios ahora se consideran desfavorecidos si solo alcanzan el umbral de bajos ingresos, porque estos territorios no están incluidos en los conjuntos de datos nacionalmente consistentes sobre cargas ambientales y climáticas utilizados en la herramienta",
"download.page.release.2_0.update.NEW_IMPROVED_CONTENT_4": "Se actualizaron los datos en la categoría de desarrollo de la fuerza laboral a los datos del Censo Decenal de 2020 para los territorios estadounidenses de Guam, las Islas Vírgenes, las Islas Marianas del Norte y Samoa Americana",
"download.page.release.2_0.update.NEW_IMPROVED_CONTENT_5": "Se realizaron mejoras en la carga de bajos ingresos para identificar mejor a los estudiantes universitarios antes de que sean excluidos del percentil de esa carga",
"download.page.release.2_0.update.NEW_IMPROVED_CONTENT_6": "Los distritos censales que estaban en desventaja en la versión 1.0 continúan considerándose en desventaja en la versión 2.0",
"download.page.release.2_0.update.NEW_IMPROVED_SECTION": "Nuevo y Mejorado",
"download.page.release.2_0.update.TECHNICAL_FIXES_SECTION": "Correcciones Técnicas",
"download.page.release.2_0.update.TECHNICAL_FIXES_CONTENT_1": "Para distritos que tienen límites de agua, p. En las zonas costeras o insulares, los límites del agua ahora se excluyen del cálculo para determinar si un distrito está 100% rodeado por distritos censales desfavorecidas",
"download.page.release.2_0.update.UI_SECTION": "Mejoras en la Interfaz de Usuario",
"download.page.release.2_0.update.UI_CONTENT_1": "Los usuarios ahora pueden buscar en el mapa por el numero de identificación de distrito censal",
"download.page.release.2_0.update.UI_CONTENT_2": "Mostrar percentiles de bajos ingresos de islas y territorios en la barra lateral",
"download.page.release.2_0.update.UI_CONTENT_2": "El mapa base se ha actualizado para utilizar un mapa gratuito y de código abierto",
"downloads.page.change.log.text": "notas de la publicación",
"downloads.page.download.icon.alt.tag": "El icono utilizado para indicar que el archivo se puede descargar.",
"downloads.page.files.section.text": "Los conjuntos de datos de la versión {version} de la herramienta, junto con un libro de código, e información sobre cómo utilizar la lista de comunidades (.pdf) están disponibles para descargarse:",
@ -309,11 +294,10 @@
"explore.map.page.under.map.note.on.territories.intro": "Nota sobre los territorios de los Estados Unidos",
"explore.map.page.under.map.note.on.territories.para.0": "No todos los datos utilizados en la herramienta están disponibles o se utilizan para todos los territorios estadounidenses.",
"explore.map.page.under.map.note.on.territories.para.1": "<bold>Puerto Rico:</bold> Los datos utilizados para Puerto Rico proceden de todos los campos relevantes 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: ingresos bajos, riesgo previsto de inundaciones, costo de la energía, falta de tubería interior, 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, vertido de aguas residuales, ingresos medios bajos, 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.",
"explore.map.page.under.map.note.on.territories.para.2": "<bold>Samoa estadounidense, Guam, las Islas Marianas del Norte y las Islas Vírgenes de los Estados Unidos:</bold> 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 Formación de la fuerza laboral.",
"explore.map.page.under.map.note.on.territories.para.2": "<bold>Samoa estadounidense, Guam, las Islas Marianas del Norte y las Islas Vírgenes de los Estados Unidos:</bold> Para estos territorios de los Estados Unidos, la herramienta utiliza los siguientes datos: tasa esperada de pérdida agrícola, tasa esperada de pérdida de edificios, tasa esperada de pérdida de población, tierras mineras abandonadas, bajos ingresos, desempleo, pobreza, ingreso medio bajo y educación secundaria. Estas cargas se encuentran en las categorías de cambio climático, contaminación heredada y desarrollo de la fuerza laboral.",
"explore.map.page.under.map.note.on.tribal.nations.intro": "Observaciones sobre las naciones tribales",
"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": "¿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?",
@ -344,7 +328,6 @@
"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_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. 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.",
@ -513,6 +496,7 @@
"methodology.page.datasetCard.new": "NUEVO",
"methodology.page.datasetCard.responsible.party": "Parte encargada:",
"methodology.page.datasetCard.source": "Fuente:",
"methodology.page.datasetCard.updated": "ACTUALIZADO",
"methodology.page.datasetCard.used.in": "Utilizado en:",
"methodology.page.datasetContainer.additional.heading": "Otros indicadores",
"methodology.page.datasetContainer.additional.info": "Estos conjuntos de datos brindan más información sobre cada comunidad.",
@ -549,9 +533,8 @@
"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.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.1.bullet.3": "Para los distritos censales que se identificaron como desfavorecidos en la versión 1.0 de la herramienta, pero que no cumplen con la metodología para la versión 2.0: si el distrito censal se identificó como desfavorecido en la versión 1.0, entonces el distrito censal se considera desfavorecido.",
"methodology.page.paragraph.1.bullet.4": "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.",
@ -564,12 +547,14 @@
"pageNotFound.apology.text": "Lo sentimos, no se pudo encontrar la página que estaba buscando. <link1>Explore el mapa</link1> u obtenga más información <link2>acerca</link2> de la herramienta.",
"pageNotFound.heading.text": "No se encontró la página",
"pageNotFound.title.text": "No se encontró la página",
"previous.versions.page.body.text": "La versión beta de la metodología y los datos se utilizaron durante el periodo de la versión beta pública para obtener comentarios sobre la herramienta desde {startDate} \u2013 {endDate}.",
"previous.versions.page.1_0.body.text": "La versión 1.0 de la metodología y los datos estuvieron disponibles en el sitio web de la herramienta desde {startDate} \u2013 {endDate}.",
"previous.versions.page.1_0.card.text": "Versión 1.0",
"previous.versions.page.beta.body.text": "La versión beta de la metodología y los datos se utilizaron durante el periodo de la versión beta pública para obtener comentarios sobre la herramienta desde {startDate} \u2013 {endDate}.",
"previous.versions.page.beta.card.text": "Versión Beta",
"previous.versions.page.button1.alt.tag.text": "un botón que permite descargar los datos y la documentación a la herramienta",
"previous.versions.page.button1.text": "Información y documentación",
"previous.versions.page.button2.alt.tag.text": "un botón que permite descargar el archivo de forma y el libro de código a la herramienta",
"previous.versions.page.button2.text": "Archivo de forma y libro de código",
"previous.versions.page.card.text": "Versión 1.0",
"previous.versions.page.title.text": "Versiones anteriores",
"privacy.page.title": "Política de Privacidad",
"privacy.page.heading": "Política de Privacidad de CEJST",
@ -607,7 +592,6 @@
"public.eng.page.video.box.button.img.alt.text2": "el icono para mostrar que este botón descargará el archivo",
"public.eng.page.video.box.button1.beta.text": "Ver en demo beta",
"public.eng.page.video.box.button1.1_0.text": "Ver v1.0 demo",
"public.eng.page.video.box.button1.text": "Véalo en YouTube",
"public.eng.page.video.box.button2.beta.text": "Descargue diapositivas de la versión beta",
"public.eng.page.video.box.button2.text": "Descargue diapositivas",
"technical.support.doc.page.coming.soon.text": "¡Próximamente!",

View file

@ -1,34 +1,27 @@
import * as React from 'react';
import {useIntl} from 'gatsby-plugin-intl';
import * as React from 'react';
import {useWindowSize} from 'react-use';
import {Grid} from '@trussworks/react-uswds';
import AboutCard from '../components/AboutCard/AboutCard';
import AboutCardsContainer from '../components/AboutCard/AboutCardsContainer';
import {Grid} from '@trussworks/react-uswds';
import DatasetsButton from '../components/DatasetsButton';
import HowYouCanHelp from '../components/HowYouCanHelp';
import J40MainGridContainer from '../components/J40MainGridContainer';
import Layout from '../components/layout';
import DatasetsButton from '../components/DatasetsButton';
import SubPageNav from '../components/SubPageNav';
import * as ABOUT_COPY from '../data/copy/about';
import {GITHUB_LINK, GITHUB_LINK_ES} from '../constants';
import {DATA_SURVEY_LINKS, PAGES_ENDPOINTS, USWDS_BREAKPOINTS} from '../data/constants';
import * as ABOUT_COPY from '../data/copy/about';
import {FEEDBACK_EMAIL} from '../data/copy/common';
import {PAGES_ENDPOINTS, USWDS_BREAKPOINTS, DATA_SURVEY_LINKS} from '../data/constants';
import accountBalanceIcon // @ts-ignore
from '/node_modules/uswds/dist/img/usa-icons/account_balance.svg';
import fileDownloadIcon from // @ts-ignore
'/node_modules/uswds/dist/img/usa-icons/file_download.svg';
import commentIcon from // @ts-ignore
'/node_modules/uswds/dist/img/usa-icons/comment.svg';
import githubIcon from // @ts-ignore
'/node_modules/uswds/dist/img/usa-icons/github.svg';
import {USE_DATA_TUTORIAL_LINK, USE_MAP_TUTORIAL_LINK,
USE_DATA_TUTORIAL_LINK_ES, USE_MAP_TUTORIAL_LINK_ES} from '../data/copy/about';
interface IAboutPageProps {
location: Location;
@ -61,15 +54,8 @@ const AboutPage = ({location}: IAboutPageProps) => {
<p>
{ABOUT_COPY.CONTENT.PARA2}
</p>
<div className={'j40-p-tag'}>
{ABOUT_COPY.CONTENT.PARA3}
<ul>
<li> {ABOUT_COPY.CONTENT.LI1}</li>
<li> {ABOUT_COPY.CONTENT.LI2}</li>
</ul>
</div>
<p>
{ABOUT_COPY.CONTENT.PARA4}
{ABOUT_COPY.CONTENT.PARA3}
</p>
</section>
</Grid>
@ -97,8 +83,7 @@ const AboutPage = ({location}: IAboutPageProps) => {
fullWidth={true}
blueBackground={true}>
<J40MainGridContainer>
<Grid col={12} tablet={{col: 8}}>
<Grid col={12} tablet={{col: 8}} className='j40-mb5-mt3'>
<h2>
{intl.formatMessage(ABOUT_COPY.HOW_TO_USE_TOOL.TITLE)}
</h2>
@ -112,34 +97,6 @@ const AboutPage = ({location}: IAboutPageProps) => {
{ABOUT_COPY.CONTENT.HOW_TO_USE_PARA3}
</p>
</Grid>
<AboutCardsContainer>
<AboutCard
size={'small'}
imgSrc={accountBalanceIcon}
header={intl.formatMessage(ABOUT_COPY.HOW_TO_USE_TOOL.USE_MAP_HEADING)}
linkText={ABOUT_COPY.CONTENT.USE_MAP_TUTORIAL}
url={intl.locale === `es` ? USE_MAP_TUTORIAL_LINK_ES : USE_MAP_TUTORIAL_LINK}
openUrlNewTab={true}
internal={false}>
<p>
{intl.formatMessage(ABOUT_COPY.HOW_TO_USE_TOOL.USE_MAP_PARA)}
</p>
</AboutCard>
<AboutCard
size={'small'}
imgSrc={fileDownloadIcon}
header={intl.formatMessage(ABOUT_COPY.HOW_TO_USE_TOOL.USE_DATA_HEADING)}
linkText={ABOUT_COPY.CONTENT.USE_DATA_TUTORIAL}
url={intl.locale === `es` ? USE_DATA_TUTORIAL_LINK_ES : USE_DATA_TUTORIAL_LINK}
openUrlNewTab={true}
internal={false}>
<p>
{ABOUT_COPY.CONTENT.USE_DATA_PARA}
</p>
</AboutCard>
</AboutCardsContainer>
</J40MainGridContainer>
</J40MainGridContainer>

View file

@ -1,16 +1,16 @@
import * as React from 'react';
import {useIntl} from 'gatsby-plugin-intl';
import {Grid} from '@trussworks/react-uswds';
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 ReleaseUpdate from '../components/ReleaseUpdate';
import SubPageNav from '../components/SubPageNav';
import {DATA_SURVEY_LINKS, PAGES_ENDPOINTS, USWDS_BREAKPOINTS} from '../data/constants';
import * as DOWNLOADS_COPY from '../data/copy/downloads';
import {PAGES_ENDPOINTS, USWDS_BREAKPOINTS, DATA_SURVEY_LINKS} from '../data/constants';
interface IDownloadsPageProps {
location: Location;
}
@ -39,27 +39,11 @@ const DownloadsPage = ({location}: IDownloadsPageProps) => {
<ReleaseUpdate />
</section>
<p>
{DOWNLOADS_COPY.DOWNLOAD_LINKS.TEXT}
</p>
<p>
{DOWNLOADS_COPY.DOWNLOAD_LINKS.LINK1}
</p>
<p>
{DOWNLOADS_COPY.DOWNLOAD_LINKS.LINK2}
</p>
<p>
{DOWNLOADS_COPY.DOWNLOAD_LINKS.LINK3}
</p>
<p>
{DOWNLOADS_COPY.DOWNLOAD_LINKS.LINK4}
</p>
<p>
{DOWNLOADS_COPY.DOWNLOAD_LINKS.LINK6}
</p>
<p>
{DOWNLOADS_COPY.DOWNLOAD_LINKS.LINK5}
</p>
{DOWNLOADS_COPY.DOWNLOAD_LINKS.LINKS.map((link, i) => (
<p key={i}>
{link}
</p>
))}
</Grid>
{/* Second column */}

View file

@ -144,11 +144,6 @@ const FAQPage = ({location}: IFAQPageProps) => {
<p key={16}>{FAQS_COPY.FAQ_ANSWERS.Q16_P2}</p>
</>
),
(
<>
<p key={18}>{FAQS_COPY.FAQ_ANSWERS.Q18}</p>
</>
),
(
<>
<p key={19}>{FAQS_COPY.FAQ_ANSWERS.Q19}</p>

View file

@ -47,7 +47,6 @@ const IndexPage = ({location}: MethodPageProps) => {
<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

@ -417,76 +417,19 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
>
<section>
<p>
In January of 2021, President Biden issued
<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>
. 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.
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
<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"
>
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"
>
Federal agencies should also use the following:
<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>
</div>
<p>
CEQ will continue to update the tool, after reviewing public feedback,
research, and the availability of new data. The current version of the
CEQ will 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>
<p>
A Spanish version of the site will be available in the near future.
</p>
</section>
</div>
@ -504,7 +447,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
data-testid="gridContainer"
>
<div
class="grid-col-12 tablet:grid-col-8"
class="grid-col-12 tablet:grid-col-8 j40-mb5-mt3"
data-testid="grid"
>
<h2>
@ -522,7 +465,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 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.
are determined by the U.S. Census Bureau once every ten years. The tool utilizes the census tract boundaries from 2010. 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.
@ -540,138 +483,6 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</p>
</div>
<div
class="grid-row grid-gap-lg j40-aboutcard-container "
data-testid="grid"
>
<div
class="grid-gap-lg tablet:grid-col"
data-testid="grid"
>
<div
class="grid-row j40-aboutcard-sm-card"
data-testid="grid"
>
<div
class="tablet:grid-col-2 j40-aboutpage-image-container"
data-testid="grid"
>
<img
alt="Using the map"
class="j40-aboutcard-image"
src="test-file-stub"
/>
</div>
<div
class="tablet:grid-col-9"
data-cy="using-the-map-block"
data-testid="grid"
>
<div
class="grid-row"
data-testid="grid"
>
<h3>
Using the map
</h3>
<p>
Zoom in and select any census tract to see if it is considered disadvantaged.
</p>
<div
class="j40-aboutcard-sm-link"
>
<a
class="usa-link usa-link--external"
data-cy=""
href="undefined/data-versions/2.0/data/score/downloadable/Using-the-CEJST-Tutorial.pdf"
rel="noreferrer"
target="_blank"
>
Download the CEJST tutorial (.pdf 9.6 MB)
</a>
</div>
</div>
</div>
<div
class="grid-col-1"
data-testid="grid"
>
</div>
</div>
</div>
<div
class="grid-gap-lg tablet:grid-col"
data-testid="grid"
>
<div
class="grid-row j40-aboutcard-sm-card"
data-testid="grid"
>
<div
class="tablet:grid-col-2 j40-aboutpage-image-container"
data-testid="grid"
>
<img
alt="Using the data"
class="j40-aboutcard-image"
src="test-file-stub"
/>
</div>
<div
class="tablet:grid-col-9"
data-cy="using-the-data-block"
data-testid="grid"
>
<div
class="grid-row"
data-testid="grid"
>
<h3>
Using the data
</h3>
<p>
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.
</p>
<div
class="j40-aboutcard-sm-link"
>
<a
class="usa-link usa-link--external"
data-cy=""
href="undefined/data-versions/2.0/data/score/downloadable/Using-the-CEJST-Spreadsheet-Tutorial.pdf"
rel="noreferrer"
target="_blank"
>
Download the spreadsheet tutorial (.pdf 5.4 MB)
</a>
</div>
</div>
</div>
<div
class="grid-col-1"
data-testid="grid"
>
</div>
</div>
</div>
</div>
</div>
</div>
<div
@ -850,11 +661,6 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
.
</li>
</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.
</p>
</div>
</div>
</div>

View file

@ -447,54 +447,59 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
Version 2.0 Release update - Dec 19, 2024
</div>
<div>
New & improved
New & Improved
</div>
<div>
<ul>
<li>
Scoring improvements
Added the low income burden to American Samoa, Guam, the Mariana Islands, and the U.S. Virgin
Islands
</li>
<ul>
<li>
Updated to use Census Decennial 2020 data for the U.S. territories
of Guam, Virgin Islands, Northern Mariana Islands, and American Samoa
</li>
<li>
U.S. territories of Guam, Virgin Islands, Northern Mariana Islands,
and American Samoa qualify as disadvantaged communities based on a low-income
threshold at or above the 65th percentile, in addition to any existing qualification
pathways
</li>
<li>
Apply a donut hole disadvantaged community qualification to U.S.
territories of Guam, Virgin Islands, Northern Mariana Islands, American Samoa,
and Puerto Rico based on adjacency to already qualifying disadvantaged community
tracts and meeting a 50th percentile low-income threshold
</li>
<li>
Improved donut hole disadvantaged community qualification by
adding tracts that are fully surrounded and have water boundaries
</li>
<li>
The poverty percentage calculation excludes college students,
ensuring it reflects the economic conditions of the non-college population
</li>
<li>
Grandfathering of Census tracts that were designated as
disadvantaged communities in version 1.0 of this tool
</li>
</ul>
<li>
User interface improvements
Tracts in these territories that are completely surrounded by disadvantaged tracts and exceed
an adjusted low income threshold are now considered disadvantaged
</li>
<li>
Additionally, census tracts in these four Territories are now considered disadvantaged if they
meet the low income threshold only, because these Territories are not included in the nationally-consistent
datasets on environmental and climate burdens used in the tool
</li>
<li>
Updated the data in the workforce development category to the Census Decennial 2020 data for
the U.S. territories of Guam, Virgin Islands, Northern Mariana Islands, and American Samoa
</li>
<li>
Made improvements to the low income burden to better identify college students before they are
excluded from that burdens percentile
</li>
<li>
Census tracts that were disadvantaged under version 1.0 continue to be considered as
disadvantaged in version 2.0
</li>
</ul>
</div>
<div>
Technical Fixes
</div>
<div>
<ul>
<li>
For tracts that have water boundaries, e.g. coastal or island tracts, the water boundaries are
now excluded from the calculation to determine if a tract is 100% surrounded by disadvantaged census tracts
</li>
</ul>
</div>
<div>
User Interface Improvements
</div>
<div>
<ul>
<li>
Added the ability to search by census tract ID
</li>
<li>
The basemap has been updated to use a free, open source map
</li>
<ul>
<li>
Users can now search on the map by Census tract ID
</li>
<li>
Show island and territory low-income percentiles in the sidebar
</li>
</ul>
</ul>
</div>
</div>
@ -502,12 +507,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</section>
</div>
</section>
<p>
The dataset used in the 2.0 version of the tool, along with a codebook, and information about how to use the list of communities (.pdf) are available for download:
</p>
<p>
<a
class="usa-link"
download=""
@ -520,7 +522,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
src="test-file-stub"
/>
(.xlsx 35.6MB)
</p>
<p>
<a
@ -550,18 +552,6 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
/>
(Codebook included with shapefile 356.8MB unzipped)
</p>
<p>
<a
class="usa-link usa-link--external"
data-cy=""
href="//"
rel="noreferrer"
target="_blank"
>
Technical support document
</a>
(.pdf 4.4MB)
</p>
<p>
<a
class="usa-link usa-link--external"
@ -574,18 +564,6 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</a>
(.pdf 228.4kB)
</p>
<p>
<a
class="usa-link usa-link--external"
data-cy=""
href="//"
rel="noreferrer"
target="_blank"
>
How to use the list of communities
</a>
(.pdf 687.9kB)
</p>
</div>
<div
class="grid-col-12 tablet:grid-col-1"

View file

@ -955,7 +955,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
data-testid="accordionButton_faq-id-12"
type="button"
>
How does the Council on Environmental Quality (CEQ) keep people informed about the tool?
What files and documentation are available from the tool?
</button>
</h2>
<div
@ -963,38 +963,6 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
data-testid="accordionItem_faq-id-12"
hidden=""
id="faq-id-12"
>
<p>
<a
class="usa-link usa-link--external"
data-cy=""
href="https://lp.constantcontactpages.com/su/Vm8pCFj/spring"
rel="noreferrer"
target="_blank"
>
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 -faq"
>
<button
aria-controls="faq-id-13"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-13"
type="button"
>
What files and documentation are available from the tool?
</button>
</h2>
<div
class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-13"
hidden=""
id="faq-id-13"
>
<p>
The Climate and Economic Justice Screening Tool (CEJST) has
@ -1018,10 +986,10 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
class="usa-accordion__heading -faq"
>
<button
aria-controls="faq-id-14"
aria-controls="faq-id-13"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-14"
data-testid="accordionButton_faq-id-13"
type="button"
>
How do the tools shapefiles work?
@ -1029,9 +997,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</h2>
<div
class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-14"
data-testid="accordionItem_faq-id-13"
hidden=""
id="faq-id-14"
id="faq-id-13"
>
<p>
The tools shapefile can be uploaded into other mapping programs such as Esri.
@ -1064,10 +1032,10 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
class="usa-accordion__heading -faq"
>
<button
aria-controls="faq-id-15"
aria-controls="faq-id-14"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-15"
data-testid="accordionButton_faq-id-14"
type="button"
>
Why are some tracts disadvantaged because they were disadvantaged in version 1.0 of the tool?
@ -1075,9 +1043,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</h2>
<div
class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-15"
data-testid="accordionItem_faq-id-14"
hidden=""
id="faq-id-15"
id="faq-id-14"
>
<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
@ -1097,10 +1065,10 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
class="usa-accordion__heading -faq"
>
<button
aria-controls="faq-id-16"
aria-controls="faq-id-15"
aria-expanded="false"
class="usa-accordion__button"
data-testid="accordionButton_faq-id-16"
data-testid="accordionButton_faq-id-15"
type="button"
>
Why are some tracts disadvantaged in certain U.S. Territories because they only meet the low income threshold?
@ -1108,9 +1076,9 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</h2>
<div
class="usa-accordion__content usa-prose -faq"
data-testid="accordionItem_faq-id-16"
data-testid="accordionItem_faq-id-15"
hidden=""
id="faq-id-16"
id="faq-id-15"
>
<p>
Because some nationally-consistent datasets on indicators of environmental or climate 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 only.

View file

@ -438,14 +438,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
<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.
For census tracts that were identified as disadvantaged in version 1.0 of the tool, but do not meet the methodology for the 2.0 version: If the census tract ID was identified as disadvantaged in version 1.0, then the census tract is considered disadvantaged.
</p>
</li>
@ -1219,6 +1212,34 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
</span>
All U.S. states, the District of Columbia, and Puerto Rico
</li>
<li>
<span>
Source:
</span>
<a
class="usa-link usa-link--external"
data-cy=""
href="https://www.census.gov/data/developers/data-sets/decennial-census.2020.html"
rel="noreferrer"
target="_blank"
>
Decennial Census
</a>
from 2020
<span
class="usa-tag"
data-testid="tag"
>
NEW
</span>
</li>
<li>
<span>
Available for:
</span>
American Samoa, Guam, the Northern Mariana Islands, and the U.S. Virgin Islands
</li>
</ul>
</div>
<div
@ -2787,7 +2808,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
class="usa-tag"
data-testid="tag"
>
NEW
UPDATED
</span>
</li>
<li>
@ -2866,7 +2887,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
class="usa-tag"
data-testid="tag"
>
NEW
UPDATED
</span>
</li>
<li>
@ -2945,7 +2966,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
class="usa-tag"
data-testid="tag"
>
NEW
UPDATED
</span>
</li>
<li>
@ -3024,7 +3045,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
class="usa-tag"
data-testid="tag"
>
NEW
UPDATED
</span>
</li>
<li>

View file

@ -154,10 +154,10 @@ li.usa-nav__primary-item a:hover::after {
.j40-main-grid-blue-bk {
@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');
@include u-border-top('blue-cool-5');
// avoid margin collapse
@include u-border-y(1px);
@include u-border-y('solid');
@include u-border-y('blue-cool-5');
}
#main-content {
@ -576,4 +576,4 @@ button.usa-accordion__button[aria-expanded=true]:has(div[class*="disCategoryCont
.faqs-dot-alignment {
align-self: flex-start;
padding-top: 5px;
}
}

View file

@ -0,0 +1,14 @@
# Version 2.0 Release update - Dec 19, 2024
## New & Improved
- Added the low income burden to American Samoa, Guam, the Mariana Islands, and the U.S. Virgin Islands
- Tracts in these territories that are completely surrounded by disadvantaged tracts and exceed an adjusted low income threshold are now considered disadvantaged
- Additionally, census tracts in these four Territories are now considered disadvantaged if they meet the low income threshold only, because these Territories are not included in the nationally-consistent datasets on environmental and climate burdens used in the tool
Updated the data in the workforce development category to the Census Decennial 2020 data for the U.S. territories of Guam, Virgin Islands, Northern Mariana Islands, and American Samoa
- Made improvements to the low income burden to better identify college students before they are excluded from that burdens percentile
- Census tracts that were disadvantaged under version 1.0 continue to be considered as disadvantaged in version 2.0
## Technical Fixes
- For tracts that have water boundaries, e.g. coastal or island tracts, the water boundaries are now excluded from the calculation to determine if a tract is 100% surrounded by disadvantaged census tracts
## User Interface Improvements
- Added the ability to search by census tract ID
- The basemap has been updated to use a free, open source map