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..d7a3898 --- /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}