From c53fbbf90a663edb60e8be3e5bfe9e4da7ec0f1f Mon Sep 17 00:00:00 2001 From: Cee <cnell@usgs.gov> Date: Fri, 30 Aug 2024 13:30:40 -0700 Subject: [PATCH] set up language scripts --- package-lock.json | 61 +++++++ package.json | 1 + src/assets/text/{authors.js => authors_en.js} | 0 src/assets/text/authors_es.js | 66 ++++++++ ...referencesText.js => referencesText_en.js} | 0 src/assets/text/referencesText_es.js | 157 ++++++++++++++++++ src/assets/text/{text.js => text_en.js} | 0 src/assets/text/text_es.js | 47 ++++++ src/components/AboutTheTeam.vue | 2 +- src/components/Authorship.vue | 2 +- src/components/ConclusionSection.vue | 2 +- src/components/InteractiveDendrogram.vue | 2 +- src/components/MapsSection.vue | 2 +- src/components/NarrativeIntro.vue | 2 +- src/components/References.vue | 2 +- 15 files changed, 339 insertions(+), 7 deletions(-) rename src/assets/text/{authors.js => authors_en.js} (100%) create mode 100644 src/assets/text/authors_es.js rename src/assets/text/{referencesText.js => referencesText_en.js} (100%) create mode 100644 src/assets/text/referencesText_es.js rename src/assets/text/{text.js => text_en.js} (100%) create mode 100644 src/assets/text/text_es.js diff --git a/package-lock.json b/package-lock.json index 8dc6a4f..9351ea7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,6 +11,7 @@ "@uswds/uswds": "^3.6.1", "pinia": "^2.1.7", "vue": "^3.3.4", + "vue-i18n": "^9.14.0", "vue-router": "^4.2.5", "vue-uswds": "^1.3.0" }, @@ -573,6 +574,47 @@ "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==", "dev": true }, + "node_modules/@intlify/core-base": { + "version": "9.14.0", + "resolved": "https://registry.npmjs.org/@intlify/core-base/-/core-base-9.14.0.tgz", + "integrity": "sha512-zJn0imh9HIsZZUtt9v8T16PeVstPv6bP2YzlrYJwoF8F30gs4brZBwW2KK6EI5WYKFi3NeqX6+UU4gniz5TkGg==", + "dependencies": { + "@intlify/message-compiler": "9.14.0", + "@intlify/shared": "9.14.0" + }, + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://github.com/sponsors/kazupon" + } + }, + "node_modules/@intlify/message-compiler": { + "version": "9.14.0", + "resolved": "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-9.14.0.tgz", + "integrity": "sha512-sXNsoMI0YsipSXW8SR75drmVK56tnJHoYbPXUv2Cf9lz6FzvwsosFm6JtC1oQZI/kU+n7qx0qRrEWkeYFTgETA==", + "dependencies": { + "@intlify/shared": "9.14.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://github.com/sponsors/kazupon" + } + }, + "node_modules/@intlify/shared": { + "version": "9.14.0", + "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-9.14.0.tgz", + "integrity": "sha512-r+N8KRQL7LgN1TMTs1A2svfuAU0J94Wu9wWdJVJqYsoMMLIeJxrPjazihfHpmJqfgZq0ah3Y9Q4pgWV2O90Fyg==", + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://github.com/sponsors/kazupon" + } + }, "node_modules/@jridgewell/gen-mapping": { "version": "0.3.3", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", @@ -4256,6 +4298,25 @@ "eslint": ">=6.0.0" } }, + "node_modules/vue-i18n": { + "version": "9.14.0", + "resolved": "https://registry.npmjs.org/vue-i18n/-/vue-i18n-9.14.0.tgz", + "integrity": "sha512-LxmpRuCt2rI8gqU+kxeflRZMQn4D5+4M3oP3PWZdowW/ePJraHqhF7p4CuaME52mUxdw3Mmy2yAUKgfZYgCRjA==", + "dependencies": { + "@intlify/core-base": "9.14.0", + "@intlify/shared": "9.14.0", + "@vue/devtools-api": "^6.5.0" + }, + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://github.com/sponsors/kazupon" + }, + "peerDependencies": { + "vue": "^3.0.0" + } + }, "node_modules/vue-router": { "version": "4.2.5", "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.2.5.tgz", diff --git a/package.json b/package.json index 5c5515c..2df7e53 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,7 @@ "@uswds/uswds": "^3.6.1", "pinia": "^2.1.7", "vue": "^3.3.4", + "vue-i18n": "^9.14.0", "vue-router": "^4.2.5", "vue-uswds": "^1.3.0" }, diff --git a/src/assets/text/authors.js b/src/assets/text/authors_en.js similarity index 100% rename from src/assets/text/authors.js rename to src/assets/text/authors_en.js diff --git a/src/assets/text/authors_es.js b/src/assets/text/authors_es.js new file mode 100644 index 0000000..c03e96f --- /dev/null +++ b/src/assets/text/authors_es.js @@ -0,0 +1,66 @@ +export default { + // do not delete section. delete individuals as needed. modify content as needed + // currently only 'fullName', 'firstName', 'initials', 'profile_link', and 'contribution' are used + /// need to update contributions for vulnerability indicators + primaryAuthors: [ + { + firstName: 'Elmera', + lastName: 'Azadpour', + fullName: 'Elmera Azadpour', + initials: 'EA', + profile_link: 'https://www.usgs.gov/staff-profiles/elmera-azadpour', + role: 'contributor', + contribution: 'led the development of data visualization content' + } + ], + // do not delete section. delete any or all individuals as needed. modify content as needed + // currently only 'fullName', 'firstName', 'initials', 'profile_link', and 'contribution' are used + additionalAuthors: [ + { + firstName: 'Aileen', + lastName: 'Clarke', + fullName: 'Aileen Clarke', + initials: 'AMC', + profile_link: 'https://www.usgs.gov/staff-profiles/aileen-m-clarke', + role: 'developer', + contribution: 'developed the site and the interactive charts' + }, + { + firstName: 'Mandie', + lastName: 'Carr', + fullName: 'Mandie Carr', + initials: 'MC', + profile_link: 'https://www.usgs.gov/staff-profiles/amanda-carr', + role: 'contributor', + contribution: + 'wrote the narrative' + }, + { + firstName: 'Oronde', + lastName: 'Drakes', + fullName: 'Oronde Drakes', + initials: 'OD', + profile_link: 'https://www.usgs.gov/staff-profiles/oronde-drakes', + role: 'SME', + contribution: 'provided subject matter expertise' + }, + { + firstName: 'Diana', + lastName: 'Restrepo-Osorio', + fullName: 'Diana Restrepo-Osorio', + initials: 'DRO', + profile_link: 'https://www.usgs.gov/staff-profiles/diana-l-restrepo-osorio', + role: 'SME', + contribution: 'provided subject matter expertise' + }, + { + firstName: 'Cee', + lastName: 'Nell', + fullName: 'Cee Nell', + initials: 'CN', + profile_link: 'https://www.usgs.gov/staff-profiles/cee-nell', + role: 'team lead', + contribution: 'provided editorial review and led site development' + } + ] +} diff --git a/src/assets/text/referencesText.js b/src/assets/text/referencesText_en.js similarity index 100% rename from src/assets/text/referencesText.js rename to src/assets/text/referencesText_en.js diff --git a/src/assets/text/referencesText_es.js b/src/assets/text/referencesText_es.js new file mode 100644 index 0000000..17be6ee --- /dev/null +++ b/src/assets/text/referencesText_es.js @@ -0,0 +1,157 @@ +export default { + referencesContent: { + title: 'References', + references: [ + { + reference: 'Draining: The Economic Impact of Americas Hidden Water Crisis', + num: '1', + authors: 'DIGDEEP', + year: 2024, + title: 'Draining: The Economic Impact of Americas Hidden Water Crisis', + link: 'https://www.digdeep.org/draining', + type: '', + ref: '' + }, + { + reference: 'The widespread and unjust drinking water and clean water crisis in the United States', + num: '2', + authors: 'Mueller, J. T. and Gasteyer, S.', + year: 2021, + title: 'The widespread and unjust drinking water and clean water crisis in the United States', + link: 'https://www.nature.com/articles/s41467-021-23898-z', + type: '', + ref: 'https://doi.org/10.1038/s41467-021-23898-z' + }, + { + reference: 'East Palestine Train Derailment', + num: '3', + authors: 'Environmental Protection Agency (EPA)', + year: '2024', + title: 'East Palestine Train Derailment', + link: 'https://storymaps.arcgis.com/stories/7f105650f97e4b20839edb65de3b12ce', + type: '', + ref: '' + }, + { + reference: 'Lead-Laced Water In Flint: A Step-By-Step Look At The Makings Of A Crisis', + num: '4', + authors: 'Kennedy, M.', + year: '2016', + title: 'Lead-Laced Water In Flint: A Step-By-Step Look At The Makings Of A Crisis', + link: 'https://www.npr.org/sections/thetwo-way/2016/04/20/465545378/lead-laced-water-in-flint-a-step-by-step-look-at-the-makings-of-a-crisis', + type: '', + ref: '' + }, + { + reference: 'A closer look at the demographics of Flint, Michigan', + num: '5', + authors: 'The Associated Press', + year: '2016', + title: 'A closer look at the demographics of Flint, Michigan', + link: 'https://apnews.com/general-news-7b2bcfdcc8d74ece9e0cb167a2239745', + type: '', + ref: '' + }, + { + reference: 'Literature Summary of Indicators of Water Vulnerability in the Western US 2000-2022', + num: '6', + authors: 'Hines, M.K., Drakes, O.O., Restrepo-Osorio., D.L., and Powlen, K.A.', + year: '2023', + title: 'Literature Summary of Indicators of Water Vulnerability in the Western US 2000-2022', + link: 'https://www.sciencebase.gov/catalog/item/63f79d49d34e4f7eda456572', + type: 'U.S. Geological Survey data release', + ref: 'https://doi.org/10.5066/P93IDTUZ' + }, + { + reference: 'Social Vulnerability and Water Insecurity in the Western United States: A Systematic Review of Framings, Indicators, and Uncertainty', + num: '7', + authors: 'Drakes, O.O., Restrepo-Osorio., D.L., Powlen, K.A. and Hines, M.K.', + year: '2024', + title: 'Social vulnerability and water insecurity in the western United States: A systematic review of framings, indicators, and uncertainty', + link: 'https://doi.org/10.1029/2023WR036284', + type: '', + ref: 'https://doi.org/10.1029/2023WR036284' + }, + { + reference: 'Water availability for the western United States: key scientific challenges', + num: '8', + authors: 'Anderson, M. T., & Woosley, L. H', + year: '2005', + title: 'Water availability for the western United States: key scientific challenges', + link: 'https://pubs.usgs.gov/circ/2005/circ1261/pdf/C1261.pdf', + type: 'U.S. Geological Survey publication', + ref: 'https://doi.org/10.3133/cir1261' + }, + { + reference: 'Exposing the myths of household water insecurity in the global north: A critical review', + num: '9', + authors: 'Meehan, K., Jepson, W., Harris, L. M., Wutich, A., Beresford, M., Fencl, A., ... and Young, S', + year: '2020', + title: 'Exposing the myths of household water insecurity in the global north: A critical review', + link: 'https://doi.org/10.1002/wat2.1486', + type: '', + ref: 'https://doi.org/10.1002/wat2.1486' + }, + { + reference: 'American Community Survey 5-Year Data (2009-2022)', + num: '10', + authors: 'U.S. Census Bureau', + year: '2023', + title: 'American Community Survey 5-Year Data (2009-2022)', + link: 'https://www.census.gov/data/developers/data-sets/acs-5year.html', + type: '', + ref: 'https://www.census.gov/data/developers/data-sets/acs-5year.html' + }, + { + reference: 'Geographies of insecure water access and the housing–water nexus in US cities', + num: '11', + authors: 'Meehan, K., Jurjevich, J. R., Chun, N. M., and Sherrill, J.', + year: '2020', + title: 'Geographies of insecure water access and the housing–water nexus in US cities', + link: 'https://www.pnas.org/doi/full/10.1073/pnas.2007361117', + type: '', + ref: 'https://doi.org/10.1073/pnas.2007361117' + }, + { + reference: 'Social vulnerability and short-term disaster assistance in the United States', + num: '12', + authors: 'Drakes, O., Tate, E., Rainey, J., and Brody, S', + year: '2021', + title: 'Social vulnerability and short-term disaster assistance in the United States', + link: 'https://www.sciencedirect.com/science/article/pii/S2212420920315120?via%3Dihub', + type: '', + ref: 'https://doi.org/10.1016/j.ijdrr.2020.102010' + }, + { + reference: 'Plumbing Poverty: Mapping Hot Spots of Racial and Geographic Inequality in U.S. Household Water Insecurity', + num: '13', + authors: 'Deitz, S., and Meehan, K.', + year: '2019', + title: 'Plumbing Poverty: Mapping Hot Spots of Racial and Geographic Inequality in U.S. Household Water Insecurity', + link: 'https://www.tandfonline.com/doi/full/10.1080/24694452.2018.1530587', + type: '', + ref: 'https://doi.org/10.1016/j.ijdrr.2020.102010' + }, + { + reference: 'Hurricane Harvey and people with disabilities: Disproportionate exposure to flooding in Houston, Texas', + num: '14', + authors: 'Chakraborty, J., Grineski, S., and Collins, T.', + year: '2019', + title: 'Hurricane Harvey and people with disabilities: Disproportionate exposure to flooding in Houston, Texas', + link: 'https://www.sciencedirect.com/science/article/abs/pii/S0277953619301121', + type: '', + ref: 'https://doi.org/10.1016/j.socscimed.2019.02.039' + }, + { + reference: 'A Qualitative Study of Barriers to Accessing Water, Sanitation and Hygiene for Disabled People in Malawi', + num: '15', + authors: 'White, S., Kuper, H., Itimu-Phiri, A., Holm, R., and Biran, A.', + year: '2016', + title: 'A Qualitative Study of Barriers to Accessing Water, Sanitation and Hygiene for Disabled People in Malawi', + link: 'https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0155043', + type: '', + ref: 'https://doi.org/10.1371/journal.pone.0155043' + } + ] + } +} diff --git a/src/assets/text/text.js b/src/assets/text/text_en.js similarity index 100% rename from src/assets/text/text.js rename to src/assets/text/text_en.js diff --git a/src/assets/text/text_es.js b/src/assets/text/text_es.js new file mode 100644 index 0000000..f9c8564 --- /dev/null +++ b/src/assets/text/text_es.js @@ -0,0 +1,47 @@ +export default { + pageTitle: "Unequal access to water", + components: { + introNarrative: { + title: "", + paragraph1: `Imagine, for example, that you live in a big house in the suburbs where clean water flows out of every faucet. There’s enough water for you and your family to grow a nice garden every year. The public water supplier treats the water and maintains the distribution system regularly, so you know the water is safe for you to drink.`, + paragraph2: `Now imagine you live in a small rural community on the outskirts of town. You have your own well, but in recent years, you and your neighbors have had to dig deeper and deeper to reach water. Dangerous metals, originating from historical sources such as old industrial landfills and corroded copper pipes soldered with lead, are leaching into the water belowground, but you have no way of treating your water before your family drinks it. A nearby pond shrinks each summer and acquires a ghastly green hue as it’s choked by harmful algae blooms.`, + paragraph3: `This scene may sound unimaginable, but this is the unfortunate reality for many Americans. More than 2.2 million Americans lack running water and basic plumbing in their home <a href='https://www.digdeep.org/draining' target='_blank'>(DigDeep, 2022)</a>, and roughly 3% of community water systems have severe issues with water quality <a href='https://www.nature.com/articles/s41467-021-23898-z' target='_blank'>(Mueller and Gasteyer, 2021)</a>. Limited access to clean water may be triggered by a single event, like the <a href='https://storymaps.arcgis.com/stories/7f105650f97e4b20839edb65de3b12ce' target='_blank'>derailing of the train carrying hazardous chemicals in East Palestine, Ohio,</a> or may be the long-term result of aging infrastructure, as was the case with the <a href='https://www.npr.org/sections/thetwo-way/2016/04/20/465545378/lead-laced-water-in-flint-a-step-by-step-look-at-the-makings-of-a-crisis' target='_blank'>dangerously high levels of lead in the drinking water of Flint, Michigan.</a>`, + paragraph4: `Marginalized populations are often disproportionately affected by water insecurity. Communities of color and individuals living below the poverty line are frequently the hardest hit by <span class="tooltip-group"><span class="tooltip-span">water-related hazards,</span><span id='water-hazards-tooltip' class="tooltiptext"> A natural phenomenon and a situation where there is threat to life, health, environment, property, and society. Examples of water-related hazards include floods, hydrologic droughts and storm surges.</span></span> lacking the means to safeguard themselves adequately. They may face barriers to relocation or struggle to take time off work, cope with lost wages, or afford medical expenses. In the case of the Flint, Michigan, water crisis, black and low-income communities, who at the time made up <a href='https://apnews.com/general-news-7b2bcfdcc8d74ece9e0cb167a2239745' target='_blank'>57% and 42%</a> of Flint's population, respectively, were some of the socio-economically disadvantaged communities most affected by lead exposure. Regardless of the cause, the risk of experiencing water insecurity is closely related to the level of <span class="tooltip-group"><span class="tooltip-span">social vulnerability</span><span id='social-vulnerability-tooltip' class="tooltiptext">Conditions in which societal factors shape exposure to hazards, susceptibility to suffer harm, and ability to cope and recover from losses.</span></span>.`, + }, + agVersusMunicipalText: { + title: "Social vulnerabilities in agricultural versus municipal sectors", + paragraph1: "Agricultural and municipal water use are the two largest water-use sectors in the western United States. Studies of social vulnerability to water insecurity in these two sectors tend to focus on different determinants. For the agricultural sector, studies have mostly looked at exposure to external stressors (where water insecurity is happening) and living conditions. On the other hand, studies of the municipal sector have focused on demographic characteristics and socioeconomic status. Many studies of the municipal sector have emphasized exposure, as well. Because of the different focuses of these studies, we understand the influence of determinants like demographics and socioeconomics better in the municipal sector than we do in the agricultural sector. Which brings us to an important point…" + }, + bubbleChartText: { + title: "What do we know about how social factors affects water insecurity?", + paragraph1: "Color = dimension of social vulnerability to water insecurity<br>Bubble = determinant (nested within dimension)<br>Details = indicator (nested within determinant)<br>Size = how much evidence do we have that the determinant contributes to water insecurity<br>Evidence = how much research has been done to assess the effect of the determinant on water insecurity<br>Agreement = how many studies agreed that the determinant increased water insecurity<br><br>Hover on a bubble to learn more", + paragraph2: "Who we are and where we live affect our access to clean, plentiful water. Certain categories of social factors (called “dimensionsâ€) make us more vulnerable to water insecurity. These dimensions—demographic characteristics, living conditions, socioeconomic status, and exposure to external stressors like drought or pollution—have been studied by many researchers, most of whom agree the dimensions affect water insecurity. But certain aspects of those dimensions of social vulnerability (called “determinantsâ€) are better studied than others. How much do we know about the effects of these determinants on water insecurity? Which determinants are we confident about, and which do we need to understand better? The Socioeconomic Drivers Program of the USGS Water Resources Mission Area is working to find out. " + }, + mapText: { + title: "Vulnerability indicators across the Western states ", + paragraph1: "Infrastructure and institutional factors are major determinants of access to and reliability of water delivery in the United States <a href='https://doi.org/10.1029/2023WR036284' target='_blank'>(Drakes and others, 2024)</a>. <a href='https://wires.onlinelibrary.wiley.com/doi/10.1002/wat2.1486' target='_blank'>Meehan and others (2020)</a> found 471,000 households or 1.1 million people lacked piped water access between 2013 and 2017, with the majority (73%) of these households located in metropolitan areas, and nearly half (47%) in the 50 largest urban areas. The reviewed literature showed indicators of household size, female-headed households, female population, and percentage of females in the labor force were all predominantly positively related and influential to water insecurity conditions. Displayed below is a county-level map of the average household size of occupied housing units. Counties with the greatest average household size, shown in dark blue, include Oglala Lakota County, South Dakota; Madison County, Idaho; and Todd County, South Dakota.", + paragraph2: "Low income and impoverished persons are more likely to experience conditions associated with water insecurity. Moreover, income inequality is a highly significant predictor of 'plumbing poverty,' meaning homes that lack complete indoor plumbing <a href='https://www.pnas.org/doi/abs/10.1073/pnas.2007361117' target='_blank'>(Meehan and others, 2020)</a>. The county-level map below displays median household income in the past 12 months (in 2022 inflation-adjusted dollars). Counties with the greatest median household income are shown in dark blue and include Santa Clara County, California; San Mateo County, California; and Marin County, California.", + paragraph3: "As median rent values go up, water insecurity tends to go down, likely reflecting greater access to resources for wealthier populations <a href='https://www.sciencebase.gov/catalog/item/63f79d49d34e4f7eda456572' target='_blank'>(Hines and others, 2023)</a>. That said, renters tend to be at a higher risk of losses from water-related hazards compared to homeowners. After disasters, renters are more likely to relocate and less likely to apply for and receive assistance. Renters also often lack the authority and means to enact structural changes to their homes for hazard mitigation, response, or recovery, which raises the hazard exposure and susceptibility of renters while lowering their capacity to cope <a href='https://doi.org/10.1016/j.ijdrr.2020.102010' target='_blank'>(Drakes and others, 2021) </a>. The county-level map below displays median gross rent. Counties with the greatest median gross rent, shown in dark green, include San Mateo County, California; Santa Clara County, California; and Marin County, California.", + paragraph4: "Hispanic populations are at an increased risk of water insecurity <a href='https://www.sciencebase.gov/catalog/item/63f79d49d34e4f7eda456572' target='_blank'>(Hines and others, 2023)</a>. In some areas of the country, Hispanic households are more likely to experience 'plumbing poverty'—meaning homes that lack complete indoor plumbing <a href='https://www.pnas.org/doi/abs/10.1073/pnas.2007361117' target='_blank'>(Meehan and others, 2020)</a>—particularly in the Western United States. In fact, research shows that although Hispanic-headed households make up less than 13% of all U.S. households, they account for nearly 17% of households with incomplete plumbing <a href='https://doi.org/10.1080/24694452.2018.1530587' target='_blank'>(Deitz & Meehan, 2019)</a>. The county map below shows the percent of Hispanic populations. Counties with the greatest percent of Hispanic residents, shown in dark blue, include Kenedy County, Texas; Starr County, Texas; and Webb County, Texas. These areas are particularly affected by the combined challenges of water insecurity and plumbing poverty.", + paragraph5: "Special needs and disabled populations may live in places more exposed to water-related hazards <a href='https://www.sciencedirect.com/science/article/abs/pii/S0277953619301121' target='_blank'>(Chakraborty and others, 2019)</a> or experiencing unreliable or intermittent potable water supplies <a href='https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0155043' target='_blank'>(White and others, 2016)</a>. For example, <a href='https://doi.org/10.1029/2023WR036284' target='_blank'>Drakes and others (2024)</a> found special needs and disabled populations were associated with a higher likelihood of water insecure conditions in the Western United States. However, only two studies have measured the relationship between disability and water insecurity, and the limited research on the topic was conducted only in the municipal water-use sector. The map below shows the percent of disabled persons in each county. Counties with the greatest percent of disabled individuals, shown in dark blue, include Catron County, New Mexico; Mora County, New Mexico; and Kinney County, Texas.", + paragraph6: "Placeholder text for now." + }, + metaAnalysisText: { + title: "Meta-analysis of social vulnerability to water insecurity", + paragraph1: `Researchers in the USGS Social and Economic Drivers program <a href="https://www.usgs.gov/data/literature-summary-indicators-water-vulnerability-western-us-2000-2022" target="blank">identified factors of social vulnerability associated with conditions of water insecurity</a>. The team focused their analysis on studies between 2000 and 2022 that took place in the conterminous United States (lower 48 states) west of the Mississippi River. The Western states face a slew of water availability challenges, including increasing population growth, dependence on groundwater, and generally low precipitation (see <a href='https://pubs.usgs.gov/circ/2005/circ1261/pdf/C1261.pdf' target="blank">Anderson and Woosley 2005 </a> for a discussion of water availability in the Western United States).`, + paragraph2: `The team found that a small subset of social vulnerability factors was well studied and was consistently associated with water insecurity. These factors included multiple demographic characteristics (age, race/ethnicity, family structure, gender, and language proficiency), dependence on specific sources and uses of water, wealth, and exposure to water-related hazards.`, + paragraph3: `But these factors are not equally distributed across the Western United States. For example, certain races and ethnicities are more heavily concentrated in some geographic areas than in others. Similarly, some counties have much lower median household incomes than other counties do. Understanding where these vulnerable populations live is important information for water-resource managers to make equitable decisions about water availability and use. Some of the factors this study found as significant in Western States are described in more detail below.` + }, + socialVulnerabilityText: { + title: "Where do we go from here?", + paragraph1: "A crucial and largely unexplored area of research is the <span class='tooltip-group'><span class='tooltip-span'>intersectionality</span><span id='intersectionality-tooltip' class='tooltiptext'>The complex, cumulative way in which the effects of multiple forms of discrimination combine, overlap, or intersect especially in the experiences of marginalized individuals or groups.</span></span> of social vulnerability factors. The factors evaluated by the researchers at USGS represent individual drivers of water insecurity, like household size or ethnicity. What about the people who experience multiple risk factors at the same time?", + paragraph2: `For example, “Elderly people who have lower incomes are a unique population, existing at the overlap of, but distinct from, the elderly or lower income alone,†says Oronde Drakes, social geographer at USGS and lead author of the <span class="tooltip-group"><span class="tooltip-span">meta-analysis</span><span id="meta-analysis-tooltip" class="tooltiptext">Type of review study where researchers combine data from many different studies to try to identify bigger patterns across all the results.</span></span>. “The interaction of those social characteristics may well have different and significant impacts on water security than would be found exploring those social factors on their own.â€`, + paragraph3: "In this burgeoning field of social vulnerability to water insecurity, there is still much to learn. A deeper understanding of not only where water insecurity occurs, but also who is most vulnerable and why, will improve the ability to address <span class='tooltip-group'><span class='tooltip-span'>environmental justice</span><span id='environmental-justice-tooltip' class='tooltiptext'>Scientific planning, activities, and information intended to support equitable access and use by all people who may be affected.</span></span> and equity issues in water resources." + }, + teamText: { + title: "About the team", + paragraph1: "The USGS Social and Economic Drivers team consists of social scientists, geographers, and hydrologists who conduct interdisciplinary studies to understand the interactions and interdependencies of human and natural systems with respect to water use sectors. The purpose of this project is to predict and measure social vulnerabilities to water security to better assess and manage risks for adaptive water management." + } + + } +} \ No newline at end of file diff --git a/src/components/AboutTheTeam.vue b/src/components/AboutTheTeam.vue index f1cc0e5..b375d5e 100644 --- a/src/components/AboutTheTeam.vue +++ b/src/components/AboutTheTeam.vue @@ -13,7 +13,7 @@ <script setup> import { ref, onMounted } from 'vue'; import * as d3 from 'd3'; -import text from "../assets/text/text.js"; +import text from "../assets/text/text_en.js"; const teamText = text.components.teamText; diff --git a/src/components/Authorship.vue b/src/components/Authorship.vue index ca793d6..1281307 100644 --- a/src/components/Authorship.vue +++ b/src/components/Authorship.vue @@ -76,7 +76,7 @@ <script> import { isMobile } from 'mobile-device-detect' - import authors from '@/assets/text/authors' + import authors from '@/assets/text/authors_en' export default { name: 'AuthorshipSection', components: {}, diff --git a/src/components/ConclusionSection.vue b/src/components/ConclusionSection.vue index 8ebdcb8..ee92039 100644 --- a/src/components/ConclusionSection.vue +++ b/src/components/ConclusionSection.vue @@ -24,7 +24,7 @@ </template> <script setup> - import text from './../assets/text/text.js'; + import text from './../assets/text/text_en.js'; const conclusionText = text.components.socialVulnerabilityText; </script> diff --git a/src/components/InteractiveDendrogram.vue b/src/components/InteractiveDendrogram.vue index 0310465..c6a85a9 100644 --- a/src/components/InteractiveDendrogram.vue +++ b/src/components/InteractiveDendrogram.vue @@ -32,7 +32,7 @@ import { onMounted, ref } from 'vue'; import { isMobile } from 'mobile-device-detect'; import * as d3 from 'd3'; -import text from "../assets/text/text.js"; +import text from "../assets/text/text_en.js"; // global variables const publicPath = import.meta.env.BASE_URL; diff --git a/src/components/MapsSection.vue b/src/components/MapsSection.vue index 08dec39..781a76b 100644 --- a/src/components/MapsSection.vue +++ b/src/components/MapsSection.vue @@ -48,7 +48,7 @@ <script setup> import { onMounted } from 'vue'; -import text from './../assets/text/text.js'; +import text from './../assets/text/text_en.js'; const mapText = text.components.mapText; onMounted(() => { diff --git a/src/components/NarrativeIntro.vue b/src/components/NarrativeIntro.vue index d08df53..f846251 100644 --- a/src/components/NarrativeIntro.vue +++ b/src/components/NarrativeIntro.vue @@ -20,7 +20,7 @@ </template> <script setup> -import text from './../assets/text/text.js'; +import text from './../assets/text/text_en.js'; const introText = text.components.introNarrative; </script> diff --git a/src/components/References.vue b/src/components/References.vue index 3723424..1924da9 100644 --- a/src/components/References.vue +++ b/src/components/References.vue @@ -21,7 +21,7 @@ </template> <script> -import referencesText from '@/assets/text/referencesText' +import referencesText from '@/assets/text/referencesText_en.js' export default { name: 'ReferencesSection', data() { -- GitLab