From 609883f5b7161643eecb7127975d220faba02e92 Mon Sep 17 00:00:00 2001 From: Kata Martin Date: Fri, 27 May 2022 09:53:34 -0700 Subject: [PATCH 1/2] Add examples page --- docs/components/contents.js | 2 +- docs/pages/maps/examples.md | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 docs/pages/maps/examples.md diff --git a/docs/components/contents.js b/docs/components/contents.js index 28371a6..bd68af5 100644 --- a/docs/components/contents.js +++ b/docs/components/contents.js @@ -1,4 +1,4 @@ export const contents = { - 'Getting Started': ['Data'], + 'Getting Started': ['Data', 'Examples'], Reference: ['Map', 'Raster', 'RegionPicker', 'Fill', 'Line'], } diff --git a/docs/pages/maps/examples.md b/docs/pages/maps/examples.md new file mode 100644 index 0000000..e66b135 --- /dev/null +++ b/docs/pages/maps/examples.md @@ -0,0 +1,29 @@ +import {Box} from 'theme-ui' +import Section from '../../components/section' + +# Examples + +## Seaweed farming + +In March 2022, we worked with a research team led by Julianne DeAngelo, Steve Davis, and colleagues to develop a [interactive mapping tool](https://carbonplan.org/research/seaweed-farming) and accompanying [explainer article](https://carbonplan.org/research/seaweed-farming-explainer) on the potential of seaweed farming for both carbon removal and biomass products. + +The map was built using `@carbonplan/maps` and leveraged the ability to load multiple input layers (via array-based `selector` value) and user-specified variables (via custom `uniforms`) onto the GPU, where the technoeconomic model was implemented. + + + +## CMIP6 downscaling + +In support of our [CMIP6 downscaling work](https://github.com/carbonplan/cmip6-downscaling), we built a [web tool](https://github.com/carbonplan/cmip6-web/) for exploring and comparing downscaled datasets. The tool uses multiple `Raster` layers to facilitate comparing regional data in time series. The tool is slated to be released in June 2022. + +export default ({ children }) =>
{children}
From 5679b3d780222f351fb3aa654670ab6e319a45b1 Mon Sep 17 00:00:00 2001 From: Kata Martin Date: Fri, 27 May 2022 09:56:51 -0700 Subject: [PATCH 2/2] pre-commit --- docs/pages/maps/examples.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/pages/maps/examples.md b/docs/pages/maps/examples.md index e66b135..d7a3898 100644 --- a/docs/pages/maps/examples.md +++ b/docs/pages/maps/examples.md @@ -1,4 +1,4 @@ -import {Box} from 'theme-ui' +import { Box } from 'theme-ui' import Section from '../../components/section' # Examples @@ -10,12 +10,12 @@ In March 2022, we worked with a research team led by Julianne DeAngelo, Steve Da The map was built using `@carbonplan/maps` and leveraged the ability to load multiple input layers (via array-based `selector` value) and user-specified variables (via custom `uniforms`) onto the GPU, where the technoeconomic model was implemented.