Skip to content
Snippets Groups Projects
Commit 0d3c6d21 authored by Hayley Corson-Dosch's avatar Hayley Corson-Dosch
Browse files

add viz page for wildfire aerosols viz

parent 9feee9fc
No related branches found
No related tags found
1 merge request!60Add fii viz2
......@@ -31,6 +31,16 @@ export default {
alt: '',
chartOrder: 1,
description: 'Ice cores can record changes in wildfire prevalence.'
},
{
title: 'Wildfire Aerosols',
project: 'Fire in Ice',
vizKey: 'WildfireAerosols',
vizRoute: 'wildfire-aerosols',
img_src: 'placeholder_thumbnail.png',
alt: '',
chartOrder: 2,
description: 'Wildfires are depositing aerosols on glaciers.'
},
{
title: 'Wildfire Aerosols',
......@@ -39,7 +49,7 @@ export default {
vizRoute: 'aerosol-paths',
img_src: 'aerosols_thumbnail.png',
alt: '',
chartOrder: 2,
chartOrder: 3,
description: 'Wildfire particles are deposited on glaciers.'
},
{
......
......@@ -88,6 +88,30 @@ export default {
additionalAuthors: [
]
},
WildfireAerosols: {
primaryAuthors: [
{
firstName: 'Hayley',
lastName: 'Corson-Dosch',
fullName: 'Hayley Corson-Dosch',
initials: 'HCD',
profile_link: 'https://www.usgs.gov/staff-profiles/hayley-corson-dosch',
role: 'lead author',
contribution: 'led the creation of the interactive chart'
},
{
firstName: 'Jeffrey',
lastName: 'Kwang',
fullName: 'Jeffrey Kwang',
initials: 'JK',
profile_link: 'https://www.usgs.gov/staff-profiles/jeffrey-kwang',
role: 'contributor',
contribution: 'led the development of the data visualization'
},
],
additionalAuthors: [
]
},
Aerosols: {
primaryAuthors: [
{
......
import WildfireAerosolsViz from "../../components/WildfireAerosolsViz.vue";
export default {
landingPage: {
pageTitle: "Earth is changing...",
......@@ -175,6 +177,12 @@ export default {
},
FishAsFoodSankey: {
paragraph1: 'Explore total recreational harvest for the five families of inland fish with the largest recreational harvests: <span class="scientificName">Cyprinidae</span> (minnows and carps), <span class="scientificName">Percidae</span> (perch), <span class="scientificName">Salmonidae</span> (salmon, trout, grayling, and whitefish), <span class="scientificName">Bagridae</span> (bagrid catfish), and <span class="scientificName">Centrarchidae</span> (sunfishes). Total recreational harvest is broken out by family, by species, and by country. Hover over the chart to see the harvest totals, in kilograms'
},
WildfireAerosols: {
paragraph1: "In the cores, we see that there is more than just ice. Particles from the air, called aerosols, have been deposited in the ice.",
paragraph2: "These aerosols can come from dust, fossil fuel combustion, or wildfires.",
paragraph3: "What are the particles made of? These L, M, and G sugars indicate that some of the particules have been deposited by wildfires.",
paragraph4: "Some L/(M+G) peaks indicate that hardwoods were burned, which suggests a further source. Based on hardwood forest locations, one likely source is East Asia."
}
}
}
\ No newline at end of file
<template>
<!---VizSection-->
<VizSection
id="cross-section"
:figures="true"
:fig-caption="false"
>
<!-- HEADING -->
<template #heading>
<h2>
{{ text.heading }}
</h2>
</template>
<!-- FIGURES -->
<template #aboveExplanation>
<p v-html="text.paragraph1" />
<p v-html="text.paragraph2" />
<p v-html="text.paragraph3" />
<p v-html="text.paragraph4" />
</template>
<template #figures>
</template>
<!-- FIGURE CAPTION -->
<template #figureCaption>
</template>
<!-- EXPLANATION -->
<template #belowExplanation>
</template>
</VizSection>
</template>
<script setup>
import { onMounted } from "vue";
import * as d3 from 'd3';
import VizSection from '@/components/VizSection.vue';
// define props
defineProps({
text: { type: Object }
})
// Declare behavior on mounted
// functions called here
onMounted(async () => {
try {
console.log('app')
} catch (error) {
console.error('Error during component mounting', error);
}
});
</script>
<style scoped lang="scss">
</style>
<style lang="scss">
/* css for elements added/classed w/ d3 */
</style>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment