/* eslint-disable max-len */ import React from 'react'; import {defineMessages} from 'react-intl'; import {FormattedMessage} from 'gatsby-plugin-intl'; import {boldFn, linkFn, simpleLink} from './common'; export const VERSION_NUMBER = (1.0).toFixed(1); export const PAGE = defineMessages({ TILE: { id: 'methodology.page.title.text', defaultMessage: 'Methodology & data', description: 'Navigate to the methodology page. This is the methodology page title text', }, HEADING: { id: 'methodology.page.header.text', defaultMessage: 'Methodology', description: 'Navigate to the methodology page. This is the methodology page header text', }, PARA1: { id: 'methodology.page.paragraph.1', defaultMessage: ` The tool highlights disadvantaged census tracts across all 50 states, the District of Columbia, and the U.S. territories. Communities are considered disadvantaged: `, description: 'Navigate to the methodology page. This is the methodology paragraph 1', }, PARA1_BULLET1: { id: 'methodology.page.paragraph.1.bullet.1', defaultMessage: ` If they are in census tracts that meet the thresholds for at least one of the tool’s categories of burden, or `, description: 'Navigate to the methodology page. This is the methodology paragraph 1, bullet 1', }, PARA1_BULLET2: { id: 'methodology.page.paragraph.1.bullet.2', defaultMessage: ` If they are on land within the boundaries of Federally Recognized Tribes `, description: 'Navigate to the methodology page. This is the methodology paragraph 1, bullet 2', }, SUB_HEADING_1: { id: 'methodology.page.sub.heading.1', defaultMessage: ` Categories of Burdens `, description: 'Navigate to the methodology page. This is sub-heading 1', }, SUB_HEADING_2: { id: 'methodology.page.sub.heading.2', defaultMessage: ` Tribes `, description: 'Navigate to the methodology page. This is sub-heading 2', }, PARA3: { id: 'methodology.page.paragraph.3', defaultMessage: ` The tool uses datasets as indicators of burdens. The burdens are organized into categories. A community is highlighted as disadvantaged on the CEJST map if it is in a census tract that is (1) at or above the threshold for one or more environmental, climate, or other burdens, and (2) at or above the threshold for an associated socioeconomic burden. `, description: 'Navigate to the methodology page. This is the methodology paragraph 3', }, PARA4: { id: 'methodology.page.paragraph.4', defaultMessage: ` In addition, a census tract that is completely surrounded by disadvantaged communities and is at or above the 50% percentile for low income is also considered disadvantaged. `, description: 'Navigate to the methodology page. This is the methodology paragraph 3', }, PARA5: { id: 'methodology.page.paragraph.5', defaultMessage: ` Federally Recognized Tribes, including Alaska Native Villages, are also considered disadvantaged communities. `, description: 'Navigate to the methodology page. This is the methodology paragraph 5', }, }); export const FORMULA = { INTRO: , IF: IF the census tract is above the threshold for one or more environmental or climate indicators `} description={'Navigate to the methodology page. This is the first part of the formula used in the methodology'} values={{ boldtag: boldFn, }} />, PARA6: statistical areas are determined by the U.S. Census Bureau once every ten years. The tool utilizes the census tract boundaries from 2010. This was chosen because many of the data sources in the tool currently use the 2010 census boundaries. `} description={'Navigate to the methodology page. This is the methodology paragraph 4'} values={{ link1: linkFn('https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_6', false, true), }} />, }; export const CATEGORY = { HEADING: , ID_AS_DISADV_TEXT: identified as disadvantaged if they are in census tracts that: `} description={'Navigate to the methodology page. Navigate to the category section. This is category heading'} values={{ boldtag: boldFn, }} />, }; // Category AND Clause: export const CATEGORY_AND_CLAUSE = { LOW_INC_65: AND are at or above the 65th percentile for low income `} description={'Navigate to the methodology page. Navigate to the category section. This is category portion of the formula dealing with lower income'} values={{ boldtag: boldFn, link1: simpleLink('#low-income'), }} />, HS_DEG_GTE_10: AND more than 10% of people ages 25 or older have a high school education (i.e. graduated with a high school diploma) `} description={'Navigate to the methodology page. Navigate to the category section. This is the portion of the formula dealing with higher ed enrollment and high school diploma rate'} values={{ boldtag: boldFn, link1: simpleLink('#high-school'), link2: simpleLink('#high-ed-enroll-rate'), }} />, }; // Indicator Categories copy constants: export const CATEGORIES = { ALL: , ALL_EXCEPT_WORKFORCE: , CLIMATE_CHANGE: { METHODOLOGY: , TITLE: , IF: ARE at or above the 90th percentile for expected agriculture loss rate OR expected building loss rate OR expected population loss rate OR projected flood risk OR projected wildfire risk`} description={'Navigate to the methodology page. Navigate to the category section. This will set the if portion of the formula'} values={{ boldtag: boldFn, link1: simpleLink('#exp-agr-loss-rate'), link2: simpleLink('#exp-bld-loss-rate'), link3: simpleLink('#exp-pop-loss-rate'), link4: simpleLink('#flood-risk'), link5: simpleLink('#wildfire-risk'), }} />, AND: CATEGORY_AND_CLAUSE.LOW_INC_65, }, CLEAN_ENERGY: { METHODOLOGY: , TITLE: , IF: ARE at or above the 90th percentile for energy cost OR PM2.5 in the air`} description={'Navigate to the methodology page. Navigate to the category section. This will set the if if portion of the formula'} values={{ boldtag: boldFn, link1: simpleLink('#energy-burden'), link2: simpleLink('#pm-25'), }} />, AND: CATEGORY_AND_CLAUSE.LOW_INC_65, }, HEALTH_BURDENS: { METHODOLOGY: , TITLE: , IF: ARE at or above the 90th percentile for asthma OR diabetes OR heart disease OR low life expectancy`} description={'Navigate to the methodology page. Navigate to the category section. This will set the if portion of the formula'} values={{ boldtag: boldFn, link1: simpleLink('#asthma'), link2: simpleLink('#diabetes'), link3: simpleLink('#heart-disease'), link4: simpleLink('#life-exp'), }} />, AND: CATEGORY_AND_CLAUSE.LOW_INC_65, }, AFFORDABLE_HOUSING: { METHODOLOGY: , TITLE: , IF: historic underinvestment OR are at or above the 90th percentile for housing cost OR lack of green space OR lack of indoor plumbing OR lead paint`} description={'Navigate to the methodology page. Navigate to the category section. This will set the if portion of the formula'} values={{ link0: simpleLink('#hist-underinv'), link1: simpleLink('#house-burden'), link2: simpleLink('#green-space'), link3: simpleLink('#indoor-plumb'), link4: simpleLink('#lead-paint'), }} />, AND: CATEGORY_AND_CLAUSE.LOW_INC_65, }, LEGACY_POLLUTION: { METHODOLOGY: , TITLE: , IF: abandoned mine land OR Formerly Used Defense Sites OR are at or above the 90th percentile for proximity to hazardous waste facilities OR proximity to Superfund sites (National Priorities List (NPL)) OR proximity to Risk Management Plan (RMP) facilities`} description={'Navigate to the methodology page. Navigate to the category section. This will set the if portion of the formula'} values={{ link0: simpleLink('#mine-land'), link1: simpleLink('#fuds'), link2: simpleLink('#prox-haz'), link3: simpleLink('#prox-npl'), link4: simpleLink('#prox-rmp'), }} />, AND: CATEGORY_AND_CLAUSE.LOW_INC_65, }, CLEAN_TRANSPORT: { METHODOLOGY: , TITLE: , IF: ARE at or above the 90th percentile for diesel particulate matter exposure OR transportation barriers OR traffic proximity and volume `} description={'Navigate to the methodology page. Navigate to the category section. This will set the if portion of the formula'} values={{ boldtag: boldFn, link1: simpleLink('#diesel-pm'), link2: simpleLink('#traffic-vol'), link3: simpleLink('#trans-barrier'), }} />, AND: CATEGORY_AND_CLAUSE.LOW_INC_65, }, CLEAN_WATER: { METHODOLOGY: , TITLE: , IF: ARE at or above the 90th percentile for underground storage tanks and releases OR wastewater discharge`} description={'Navigate to the methodology page. Navigate to the category section. This will set the if portion of the formula'} values={{ boldtag: boldFn, link0: simpleLink('#leaky-uwt'), link1: simpleLink('#waste-water'), }} />, AND: CATEGORY_AND_CLAUSE.LOW_INC_65, }, WORKFORCE_DEV: { METHODOLOGY: , TITLE: , IF: ARE at or above the 90th percentile for linguistic isolation OR low median income OR poverty OR unemployment `} description={'Navigate to the methodology page. Navigate to the category section. This will set the if portion of the formula'} values={{ boldtag: boldFn, link1: simpleLink('#low-med-inc'), link2: simpleLink('#ling-iso'), link3: simpleLink('#unemploy'), link4: simpleLink('#poverty'), }} />, AND: CATEGORY_AND_CLAUSE.HS_DEG_GTE_10, }, TRIBAL_LANDS: { METHODOLOGY: , }, }; // Dataset section export const DATASETS = defineMessages({ HEADING: { id: 'methodology.page.datasetContainer.heading', defaultMessage: 'Datasets used in beta methodology', description: 'Navigate to the Methodology page. This is the section heading of which datasets are used in cumulative score', }, BUTTON_TEXT: { id: 'methodology.page.datasetContainer.button.text', defaultMessage: 'Share data sources with CEQ', description: 'Navigate to the Methodology page. This is the section heading of which datasets are used in cumulative score with a button labeled: Share data sources with CEQ', }, INFO: { id: 'methodology.page.datasetContainer.info', defaultMessage: ` The tool's datasets are public and consistent nationwide. They come from different sources and are high quality. The Council on Environmental Quality (CEQ) chose them based on relevance, availability, and quality. They identify climate, environmental, and other burdens on communities. `, description: 'Navigate to the Methodology page. This is the description of the dataset section', }, CENSUS_DISCLAIMER: { id: 'methodology.page.datasetContainer.census.disclaimer', defaultMessage: ` This product uses the Census Bureau Data API but is not endorsed or certified by the Census Bureau. `, description: 'Navigate to the Methodology page. This is the disclaimer when using census data', }, ADDITIONAL_HEADING: { id: 'methodology.page.datasetContainer.additional.heading', defaultMessage: 'Additional Indicators', description: 'Navigate to the Methodology page. This is the additional indicators heading', }, ADDITIONAL_INFO: { id: 'methodology.page.datasetContainer.additional.info', defaultMessage: 'These datasets provide additional information about each community.', description: 'Navigate to the Methodology page. This is the additional indicator info', }, }); export const DATASETS_RICH_TEXT = { HEADING: , }; export const DATASET_CARD_LABELS = defineMessages({ USED_IN: { id: 'methodology.page.datasetCard.used.in', defaultMessage: 'Used in: ', description: 'Navigate to the Methodology page. This is the label associated with explaining the card', }, RESP_PARTY: { id: 'methodology.page.datasetCard.responsible.party', defaultMessage: 'Responsible party: ', description: 'Navigate to the Methodology page. This is the label associated with explaining the card', }, DATE_RANGE: { id: 'methodology.page.datasetCard.date.range', defaultMessage: 'Date range: ', description: 'Navigate to the Methodology page. This is the label associated with explaining the card', }, SOURCE: { id: 'methodology.page.datasetCard.source', defaultMessage: 'Source: ', description: 'Navigate to the Methodology page. This is the label associated with source of the card', }, AVAILABLE_FOR: { id: 'methodology.page.datasetCard.available.for', defaultMessage: 'Available for: ', description: 'Navigate to the Methodology page. This is the label associated with available for which regions of the card', }, NEW: { id: 'methodology.page.datasetCard.new', defaultMessage: 'NEW', description: 'Navigate to the Methodology page. This is the label associated with a NEW card', }, }); export const DATE_RANGE = { TEN: '2010', TEN_PLUS_5: '2010-2015', FOURTEEN: '2014', FOURTEEN_PLUS_4: '2014-2018', FOURTEEN_PLUS_7: '2014-2021', FIFETEEN_PLUS_4: '2015-2019', SIXTEEN_PLUS_3: '2016-2019', SIXTEEN_PLUS_4: '2016-2020', SEVENTEEN: '2017', EIGHTEEN: '2018', NINETEEN: '2019', TWENTY: '2020', TWENTYONE: '2021', TWENTYTWO: '2022', }; export const RESPONSIBLE_PARTIES = { BIA: , CDC: , CEN: , CENSUS: , DOE: , DOI: , DOT: , EPA: , EPA_OAR: , FIRST: , FEMA: , HUD: , NCRC: , GREEN_SPACE: Multi-Resolution Land Characteristics (MRLC) consortium; data analysis provided by The Trust for Public Lands and American Forests `} description={'responsible party text'} values={{ link1: linkFn('https://www.mrlc.gov/about', false, true), link2: linkFn('https://www.tpl.org/', false, true), link3: linkFn('https://www.americanforests.org/', false, true), }} />, USACE: , }; export const SOURCE_LINKS = { CENSUS_ACS_15_19: American Community Survey from {date15_19}'} description={'Navigate to the Methodology page. This is the source link for Census ACS'} values={{ link1: linkFn('https://www.census.gov/programs-surveys/acs', false, true), date15_19: DATE_RANGE.FIFETEEN_PLUS_4, }} />, CENSUS_ACS_10: American Community Survey from {date10}'} description={'Navigate to the Methodology page. This is the source link for Census ACS'} values={{ link1: linkFn('https://www.census.gov/data/developers/data-sets/acs-5year/2010.html', false, true), date10: DATE_RANGE.TEN, }} />, FEMA_NRI: National Risk Index from {date14_21}`} description={'Navigate to the Methodology page. This is the source link for FEMA'} values={{ link1: linkFn('https://hazards.fema.gov/nri/expected-annual-loss', false, true), date14_21: DATE_RANGE.FOURTEEN_PLUS_7, }} />, DOE_LEAD: LEAD Tool from {date18}`} description={'Navigate to the Methodology page. This is the source link for DOE FEMA'} values={{ link1: linkFn('https://www.energy.gov/eere/slsc/low-income-energy-affordability-data-lead-tool', false, true), date18: DATE_RANGE.EIGHTEEN, }} />, EPA_OAR: Fusion of model and monitor data from {date17} as compiled by EPA’s EJScreen, sourced from EPA National Air Toxics Assessment (NATA) and the U.S. Department of Transportation (DOT) traffic data `} description={'Navigate to the Methodology page. This is the source link for EPA OAR'} values={{ link1: linkFn('https://www.epa.gov/ejscreen/download-ejscreen-data', false, true), date17: DATE_RANGE.SEVENTEEN, }} />, EPA_NATA: National Air Toxics Assessment (NATA) from {date14} as compiled by EPA's EJScreen`} description={'Navigate to the Methodology page. This is the source link for EPA NATA'} values={{ link1: linkFn('https://www.epa.gov/ejscreen/download-ejscreen-data', false, true), date14: DATE_RANGE.FOURTEEN, }} />, DOT_EPA: Traffic data from {date17} as compiled by EPA's EJScreen`} description={'Navigate to the Methodology page. This is the source link for DOT EPA'} values={{ link1: linkFn('https://www.epa.gov/ejscreen/download-ejscreen-data', false, true), date17: DATE_RANGE.SEVENTEEN, }} />, HUD: Comprehensive Housing Affordability Strategy dataset from {date14_18}`} description={'Navigate to the Methodology page. This is the source link for HUD'} values={{ link1: linkFn('https://www.huduser.gov/portal/datasets/cp.html', false, true), date14_18: DATE_RANGE.FOURTEEN_PLUS_4, }} />, EPA_TSDF: Treatment, Storage, and Disposal Facilities (TSDF) data from {date20} calculated from EPA's RCRA database as compiled by EPA's EJScreen `} description={'Navigate to the Methodology page. This is the source link for EPA TSDF'} values={{ link1: linkFn('https://enviro.epa.gov/facts/rcrainfo/search.html', false, true), date20: DATE_RANGE.TWENTY, }} />, EPA_CERCLIS: CERCLIS database from {date20} as compiled by EPA’s EJScreen`} description={'Navigate to the Methodology page. This is the source link for EPA CERCLIS'} values={{ link1: linkFn('https://cumulis.epa.gov/supercpad/cursites/srchsites.cfm', false, true), date20: DATE_RANGE.TWENTY, }} />, EPA_RMP: RMP database from {date20} as compiled by EPA’s EJScreen`} description={'Navigate to the Methodology page. This is the source link for EPA RMP'} values={{ link1: linkFn('https://www.epa.gov/ejscreen/download-ejscreen-data', false, true), date20: DATE_RANGE.TWENTY, }} />, EPA_RSEI: Risk-Screening Environmental Indicators (RSEI) model from {date20} as compiled by EPA’s EJScreen`} description={'Navigate to the Methodology page. This is the source link for EPA RSEI'} values={{ link1: linkFn('https://www.epa.gov/ejscreen/download-ejscreen-data', false, true), date20: DATE_RANGE.TWENTY, }} />, CDC_PLACES: PLACES data from {date16_19}`} description={'Navigate to the Methodology page. This is the source link for CDC Places'} values={{ link1: linkFn('https://www.cdc.gov/places/index.html', false, true), date16_19: DATE_RANGE.SIXTEEN_PLUS_3, }} />, CDC_SLEEP: U.S. Small-Area Life Expectancy Estimates Project (USALEEP) from {date10_15}`} description={'Navigate to the Methodology page. This is the source link for CDC Sleep'} values={{ link1: linkFn('https://www.cdc.gov/nchs/nvss/usaleep/usaleep.html#data', false, true), date10_15: DATE_RANGE.TEN_PLUS_5, }} />, FIRST_ST: Climate Risk Data Access from {date22}`} description={'Navigate to the Methodology page. This is the source link for CDC Sleep'} values={{ link1: linkFn('https://firststreet.org/data-access/', false, true), date22: DATE_RANGE.TWENTYTWO, }} />, HOLC: Dataset of formerly redlined areas using digitized maps from the Home Owners Loan Corporation (HOLC), using {date10} census boundaries`} description={'Navigate to the Methodology page. This is the source link for CDC Sleep'} values={{ link1: linkFn('https://www.openicpsr.org/openicpsr/project/141121/version/V2/view', false, true), date10: DATE_RANGE.TEN, }} />, PDI: Percent Developed Imperviousness (CONUS) from {date19}`} description={'Navigate to the Methodology page. This is the source link for CDC Sleep'} values={{ link1: linkFn('https://www.mrlc.gov/data/nlcd-2019-percent-developed-imperviousness-conus', false, true), date19: DATE_RANGE.NINETEEN, }} />, AML: Abandoned Mine Land Inventory System (e-AMLIS) from {date17}`} description={'Navigate to the Methodology page. This is the source link for CDC Sleep'} values={{ link1: linkFn('https://www.osmre.gov/programs/e-amlis', false, true), date17: DATE_RANGE.SEVENTEEN, }} />, FUDS: Formerly Used Defense Sites (FUDS) from {date19}`} description={'Navigate to the Methodology page. This is the source link for CDC Sleep'} values={{ link1: linkFn('https://www.usace.army.mil/Missions/Environmental/Formerly-Used-Defense-Sites/', false, true), date19: DATE_RANGE.NINETEEN, }} />, TRANS_BUR: Transportation access disadvantage from {date22}`} description={'Navigate to the Methodology page. This is the source link for Transportation burdens'} values={{ link1: linkFn('https://www.transportation.gov/equity-Justice40#:~:text=Transportation%20access%20disadvantage%20identifies%20communities%20and%20places%20that%20spend%20more%2C%20and%20take%20longer%2C%20to%20get%20where%20they%20need%20to%20go.%20(4)', false, true), date22: DATE_RANGE.TWENTYTWO, }} />, UST_FIND: UST Finder from {date21} as compiled by EPA's EJScreen `} description={'Navigate to the Methodology page. This is the source link for UST Find'} values={{ link1: linkFn('https://www.epa.gov/ust/ust-finder', false, true), date21: DATE_RANGE.TWENTYONE, }} />, BIA_LAR: Land Area Representation (LAR) dataset from {date18}`} description={'Navigate to the Methodology page. This is the source link for BIA data'} values={{ link1: linkFn('https://www.bia.gov/bia/ots/dpmc/bogs', false, true), date18: DATE_RANGE.EIGHTEEN, }} />, }; export const AVAILABLE_FOR = defineMessages({ ALL_US_DC: { id: 'methodology.page.dataset.card.availableFor.US_DC', defaultMessage: `All U.S. states and the District of Columbia`, description: 'Methodology page dataset card available for US and DC type', }, ALL_US_DC_TERR: { id: 'methodology.page.dataset.card.availableFor.US_DC_TERR', defaultMessage: `All U.S. states, the District of Columbia, and U.S. territories`, description: 'Methodology page dataset card available for US and DC type', }, ALL_US_DC_PR: { id: 'methodology.page.dataset.card.availableFor.US_DC_PR', defaultMessage: `All U.S. states, the District of Columbia, and Puerto Rico`, description: 'Methodology page dataset card available for US, DC and Puerto Rico type', }, AS_NMI: { id: 'methodology.page.dataset.card.availableFor.AS_NMI', defaultMessage: `American Samoa and the Northern Mariana Islands`, description: 'Methodology page dataset card available for AS_NMI', }, ALL_ISLDS: { id: 'methodology.page.dataset.card.availableFor.ALL_ISLDS', defaultMessage: `American Samoa, Guam, the Northern Mariana Islands, and the U.S. Virgin Islands `, description: 'Methodology page dataset card available for ALL_ISLDS', }, CONUS_DC: { id: 'methodology.page.dataset.card.availableFor.CONUS_DC', defaultMessage: `All contiguous U.S. states and the District of Columbia `, description: 'Methodology page dataset card available for CONUS and DC', }, METRO_US_HOLC: { id: 'methodology.page.dataset.card.availableFor.METRO_US_HOLC', defaultMessage: `Metro areas of U.S. that were graded by the Home Owners’ Loan Corporation`, description: 'Methodology page dataset card available for METRO_US_HOLC', }, FRT: { id: 'methodology.page.dataset.card.availableFor.FRT', defaultMessage: `Federally Recognized Tribes, including Alaska Native villages `, description: 'Methodology page dataset card available for FRT', }, }); export interface IIndicators { domID: string, indicator: JSX.Element, isNew?: boolean, description: JSX.Element, note?: JSX.Element, usedIn: JSX.Element, responsibleParty: JSX.Element, sources: { source: JSX.Element, availableFor: { // Todo remove this and replace with MessageDescriptor when ticket #2000 is fixed id: string, description: string, defaultMessage: string, }, }[] }; export const INDICATORS = [ // All categories: { domID: 'census-tract-info', indicator: , isNew: true, description: , note: Note: The demographics are included as information only and are not considered as a part of the tool's methodology. `} description={'Navigate to the Methodology page. This is the note text for low life expectancy'} values={{ boldtag: boldFn, }} />, usedIn: CATEGORIES.ALL, responsibleParty: RESPONSIBLE_PARTIES.CENSUS, sources: [ { source: SOURCE_LINKS.CENSUS_ACS_15_19, availableFor: AVAILABLE_FOR.ALL_US_DC_TERR, }, ], }, { domID: 'low-income', indicator: , description: , usedIn: CATEGORIES.ALL_EXCEPT_WORKFORCE, responsibleParty: RESPONSIBLE_PARTIES.CENSUS, sources: [ { source: SOURCE_LINKS.CENSUS_ACS_15_19, availableFor: AVAILABLE_FOR.ALL_US_DC_PR, }, ], }, // Climate change category: { domID: 'exp-agr-loss-rate', indicator: , description: , usedIn: CATEGORIES.CLIMATE_CHANGE.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.FEMA, sources: [ { source: SOURCE_LINKS.FEMA_NRI, availableFor: AVAILABLE_FOR.ALL_US_DC, }, ], }, { domID: 'exp-bld-loss-rate', indicator: , description: , usedIn: CATEGORIES.CLIMATE_CHANGE.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.FEMA, sources: [ { source: SOURCE_LINKS.FEMA_NRI, availableFor: AVAILABLE_FOR.ALL_US_DC, }, ], }, { domID: 'exp-pop-loss-rate', indicator: , description: , note: Note: this burden only applies for census tracts with populations greater than 20 people. `} description={'Navigate to the Methodology page. This is the note text for low life expectancy'} values={{ boldtag: boldFn, }} />, usedIn: CATEGORIES.CLIMATE_CHANGE.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.FEMA, sources: [ { source: SOURCE_LINKS.FEMA_NRI, availableFor: AVAILABLE_FOR.ALL_US_DC, }, ], }, { domID: 'flood-risk', indicator: , isNew: true, description: , usedIn: CATEGORIES.CLIMATE_CHANGE.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.FIRST, sources: [ { source: SOURCE_LINKS.FIRST_ST, availableFor: AVAILABLE_FOR.ALL_US_DC_PR, }, ], }, { domID: 'wildfire-risk', indicator: , isNew: true, description: , usedIn: CATEGORIES.CLIMATE_CHANGE.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.FIRST, sources: [ { source: SOURCE_LINKS.FIRST_ST, availableFor: AVAILABLE_FOR.CONUS_DC, }, ], }, // Energy category: { domID: 'energy-burden', indicator: , description: , usedIn: CATEGORIES.CLEAN_ENERGY.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.DOE, sources: [ { source: SOURCE_LINKS.DOE_LEAD, availableFor: AVAILABLE_FOR.ALL_US_DC_PR, }, ], }, { domID: 'pm-25', indicator: , description: , usedIn: CATEGORIES.CLEAN_ENERGY.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.EPA_OAR, sources: [ { source: SOURCE_LINKS.EPA_OAR, availableFor: AVAILABLE_FOR.ALL_US_DC, }, ], }, // Health category: { domID: 'asthma', indicator: , description: , usedIn: CATEGORIES.HEALTH_BURDENS.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.CDC, sources: [ { source: SOURCE_LINKS.CDC_PLACES, availableFor: AVAILABLE_FOR.ALL_US_DC, }, ], }, { domID: 'diabetes', indicator: , description: , usedIn: CATEGORIES.HEALTH_BURDENS.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.CDC, sources: [ { source: SOURCE_LINKS.CDC_PLACES, availableFor: AVAILABLE_FOR.ALL_US_DC, }, ], }, { domID: 'heart-disease', indicator: , description: , usedIn: CATEGORIES.HEALTH_BURDENS.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.CDC, sources: [ { source: SOURCE_LINKS.CDC_PLACES, availableFor: AVAILABLE_FOR.ALL_US_DC, }, ], }, { domID: 'life-exp', indicator: , description: , note: Note: The tool reverses the percentiles for this burden. This means that census tracts with lower numbers have higher life expectancies and that census tracts with higher numbers have lower life expectancies. `} description={'Navigate to the Methodology page. This is the note text for low life expectancy'} values={{ boldtag: boldFn, }} />, usedIn: CATEGORIES.HEALTH_BURDENS.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.CDC, sources: [ { source: SOURCE_LINKS.CDC_SLEEP, availableFor: AVAILABLE_FOR.ALL_US_DC, }, ], }, // Housing category: { domID: 'hist-underinv', indicator: , isNew: true, description: methodology for converting boundaries in the HOLC maps to census tracts. Census tracts meet the threshold when they have a score of 3.25 or more out of 4. `} description={'Navigate to the Methodology page. This is the description text for Historic Underinvestment'} values={{ link1: linkFn('https://ncrc.org/explainer-why-we-created-a-new-method-for-measuring-the-impact-of-redlining/', false, true), }} />, note: Note: The historic underinvestment burden is not available for tracts that were not included in the original HOLC maps because there is no underlying data. `} description={'Navigate to the Methodology page. This is the note text for Historic Underinvestment'} values={{ boldtag: boldFn, }} />, usedIn: CATEGORIES.AFFORDABLE_HOUSING.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.NCRC, sources: [ { source: SOURCE_LINKS.HOLC, availableFor: AVAILABLE_FOR.METRO_US_HOLC, }, ], }, { domID: 'house-burden', indicator: , description: , usedIn: CATEGORIES.AFFORDABLE_HOUSING.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.HUD, sources: [ { source: SOURCE_LINKS.HUD, availableFor: AVAILABLE_FOR.ALL_US_DC_PR, }, ], }, { domID: 'green-space', indicator: , isNew: true, description: , usedIn: CATEGORIES.AFFORDABLE_HOUSING.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.GREEN_SPACE, sources: [ { source: SOURCE_LINKS.PDI, availableFor: AVAILABLE_FOR.CONUS_DC, }, ], }, { domID: 'indoor-plumb', indicator: , isNew: true, description: , usedIn: CATEGORIES.AFFORDABLE_HOUSING.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.HUD, sources: [ { source: SOURCE_LINKS.HUD, availableFor: AVAILABLE_FOR.ALL_US_DC_PR, }, ], }, { domID: 'lead-paint', indicator: , description: , usedIn: CATEGORIES.AFFORDABLE_HOUSING.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.CENSUS, sources: [ { source: SOURCE_LINKS.CENSUS_ACS_15_19, availableFor: AVAILABLE_FOR.ALL_US_DC_PR, }, ], }, // Legacy pollution category: { domID: 'mine-land', indicator: , isNew: true, description: , usedIn: CATEGORIES.LEGACY_POLLUTION.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.DOI, sources: [ { source: SOURCE_LINKS.AML, availableFor: AVAILABLE_FOR.ALL_US_DC, }, ], }, { domID: 'fuds', indicator: , isNew: true, description: , usedIn: CATEGORIES.LEGACY_POLLUTION.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.USACE, sources: [ { source: SOURCE_LINKS.FUDS, availableFor: AVAILABLE_FOR.ALL_US_DC, }, ], }, { domID: 'prox-haz', indicator: , description: , usedIn: CATEGORIES.LEGACY_POLLUTION.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.EPA, sources: [ { source: SOURCE_LINKS.EPA_TSDF, availableFor: AVAILABLE_FOR.ALL_US_DC_PR, }, ], }, { domID: 'prox-npl', indicator: , description: , usedIn: CATEGORIES.LEGACY_POLLUTION.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.EPA, sources: [ { source: SOURCE_LINKS.EPA_CERCLIS, availableFor: AVAILABLE_FOR.ALL_US_DC_PR, }, ], }, { domID: 'prox-rmp', indicator: , description: , usedIn: CATEGORIES.LEGACY_POLLUTION.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.EPA, sources: [ { source: SOURCE_LINKS.EPA_RMP, availableFor: AVAILABLE_FOR.ALL_US_DC_PR, }, ], }, // Transportation category: { domID: 'diesel-pm', indicator: , description: , usedIn: CATEGORIES.CLEAN_TRANSPORT.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.EPA, sources: [ { source: SOURCE_LINKS.EPA_NATA, availableFor: AVAILABLE_FOR.ALL_US_DC_PR, }, ], }, { domID: 'trans-barrier', indicator: , isNew: true, description: , note: Note: this burden only applies for census tracts with populations greater than 20 people. `} description={'Navigate to the Methodology page. This is the note text for trans.barrier'} values={{ boldtag: boldFn, }} />, usedIn: CATEGORIES.CLEAN_TRANSPORT.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.DOT, sources: [ { source: SOURCE_LINKS.TRANS_BUR, availableFor: AVAILABLE_FOR.ALL_US_DC, }, ], }, { domID: 'traffic-vol', indicator: , description: , usedIn: CATEGORIES.CLEAN_TRANSPORT.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.DOT, sources: [ { source: SOURCE_LINKS.DOT_EPA, availableFor: AVAILABLE_FOR.ALL_US_DC_PR, }, ], }, // Water and wastewater category: { domID: 'leaky-uwt', indicator: , isNew: true, description: , usedIn: CATEGORIES.CLEAN_WATER.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.EPA, sources: [ { source: SOURCE_LINKS.UST_FIND, availableFor: AVAILABLE_FOR.ALL_US_DC_PR, }, ], }, { domID: 'waste-water', indicator: , description: , usedIn: CATEGORIES.CLEAN_WATER.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.EPA, sources: [ { source: SOURCE_LINKS.EPA_RSEI, availableFor: AVAILABLE_FOR.ALL_US_DC_PR, }, ], }, // Workforce dev category: { domID: 'ling-iso', indicator: , description: , note: Note: Linguistic isolation was removed for Puerto Rico based on feedback during the beta period. `} description={'Navigate to the Methodology page. This is the note text for linguistic.iso'} values={{ boldtag: boldFn, }} />, usedIn: CATEGORIES.WORKFORCE_DEV.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.CENSUS, sources: [ { source: SOURCE_LINKS.CENSUS_ACS_15_19, availableFor: AVAILABLE_FOR.ALL_US_DC, }, ], }, { domID: 'low-med-inc', indicator: , description: , note: Note: The tool reverses the percentiles for this burden. This means that census tracts with lower numbers have higher median incomes and census tracts with the higher numbers have lower median incomes. `} description={'Navigate to the Methodology page. This is the note text for low median expectancy'} values={{ boldtag: boldFn, }} />, usedIn: CATEGORIES.WORKFORCE_DEV.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.CENSUS, sources: [ { source: SOURCE_LINKS.CENSUS_ACS_15_19, availableFor: AVAILABLE_FOR.ALL_US_DC_PR, }, { source: SOURCE_LINKS.CENSUS_ACS_10, availableFor: AVAILABLE_FOR.ALL_ISLDS, }, ], }, { domID: 'poverty', indicator: , description: , usedIn: CATEGORIES.WORKFORCE_DEV.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.CENSUS, sources: [ { source: SOURCE_LINKS.CENSUS_ACS_15_19, availableFor: AVAILABLE_FOR.ALL_US_DC_PR, }, { source: SOURCE_LINKS.CENSUS_ACS_10, availableFor: AVAILABLE_FOR.ALL_ISLDS, }, ], }, { domID: 'unemploy', indicator: , description: , usedIn: CATEGORIES.WORKFORCE_DEV.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.CENSUS, sources: [ { source: SOURCE_LINKS.CENSUS_ACS_15_19, availableFor: AVAILABLE_FOR.ALL_US_DC_PR, }, { source: SOURCE_LINKS.CENSUS_ACS_10, availableFor: AVAILABLE_FOR.ALL_ISLDS, }, ], }, { domID: 'high-school', indicator: , description: , usedIn: CATEGORIES.WORKFORCE_DEV.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.CENSUS, sources: [ { source: SOURCE_LINKS.CENSUS_ACS_15_19, availableFor: AVAILABLE_FOR.ALL_US_DC_PR, }, { source: SOURCE_LINKS.CENSUS_ACS_10, availableFor: AVAILABLE_FOR.ALL_ISLDS, }, ], isPercent: true, }, { domID: 'tribal-lands', indicator: , isNew: true, description: , note: Note: The LAR dataset depicts the exterior extent of a Federal Indian land area. Not all Federally Recognized Tribes have a designated land area; therefore, they may not have an associated land area represented in the land area dataset. `} description={'Navigate to the Methodology page. This is the note text for low median expectancy'} values={{ boldtag: boldFn, }} />, usedIn: CATEGORIES.TRIBAL_LANDS.METHODOLOGY, responsibleParty: RESPONSIBLE_PARTIES.BIA, sources: [ { source: SOURCE_LINKS.BIA_LAR, availableFor: AVAILABLE_FOR.FRT, }, ], }, // Unused burdens: // { // domID: 'high-ed-enroll-rate', // indicator: , // description: , // usedIn: CATEGORIES.ALL, // responsibleParty: RESPONSIBLE_PARTIES.CENSUS, // sources: [ // { // source: SOURCE_LINKS.CENSUS_ACS_15_19, // availableFor: AVAILABLE_FOR.ALL_US_DC_PR, // }, // ], // }, // { // domID: 'median-home', // indicator: , // description: , // usedIn: CATEGORIES.AFFORDABLE_HOUSING.METHODOLOGY, // responsibleParty: RESPONSIBLE_PARTIES.CENSUS, // sources: [ // { // source: SOURCE_LINKS.CENSUS_ACS_15_19, // availableFor: AVAILABLE_FOR.ALL_US_DC, // }, // ], // }, ]; export const RETURN_TO_TOP = { LINK: , };