diff --git a/.github/workflows/deploy_website.yml b/.github/workflows/deploy_website.yml index 316c79b..881b1a9 100644 --- a/.github/workflows/deploy_website.yml +++ b/.github/workflows/deploy_website.yml @@ -60,7 +60,7 @@ jobs: -v /tmp:/tmp \ -v $PWD/docs:/work \ danlooo/fairsendd_environment:${{ github.sha }} \ - quarto render . + quarto render *.qmd - name: Setup Node uses: actions/setup-node@v4 @@ -90,4 +90,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 \ No newline at end of file + uses: actions/deploy-pages@v4 diff --git a/website/.gitignore b/website/.gitignore index 10af171..1cd622d 100644 --- a/website/.gitignore +++ b/website/.gitignore @@ -1,5 +1,6 @@ !overview.md !background.md +!pricing.md node_modules .quarto diff --git a/website/.vitepress/config.mts b/website/.vitepress/config.mts index 5dd533d..2f6c578 100644 --- a/website/.vitepress/config.mts +++ b/website/.vitepress/config.mts @@ -1,6 +1,7 @@ import { defineConfig } from 'vitepress' import mathjax3 from 'markdown-it-mathjax3'; + const customElements = [ 'mjx-container', 'mjx-assistive-mml', @@ -102,6 +103,10 @@ export default defineConfig({ md.use(mathjax3); }, }, + // head: [ + // ['link', { rel: 'stylesheet', href: 'https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css' }], + // ['script', { src: 'https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js', defer: 'defer' }] + // ], vue: { template: { compilerOptions: { @@ -133,6 +138,7 @@ export default defineConfig({ { text: "Background", link: "background.md" }, { text: "Julia Library", link: "julia-library.md" }, { text: "CWL Workflow", link: "cwl-workflow.md" }, + { text: "Pricing", link: "pricing.md" }, ] } ], diff --git a/website/.vitepress/theme/custom.css b/website/.vitepress/theme/custom.css index 56416bb..e8287c1 100644 --- a/website/.vitepress/theme/custom.css +++ b/website/.vitepress/theme/custom.css @@ -15,4 +15,4 @@ code { font-size: small; white-space: pre-wrap; -} +} \ No newline at end of file diff --git a/website/.vitepress/theme/index.ts b/website/.vitepress/theme/index.ts index 508d8b4..05dc70a 100644 --- a/website/.vitepress/theme/index.ts +++ b/website/.vitepress/theme/index.ts @@ -1,4 +1,6 @@ +// overwrite bootstrap css import DefaultTheme from 'vitepress/theme' import './custom.css' + export default DefaultTheme \ No newline at end of file diff --git a/website/docs/pricing.md b/website/docs/pricing.md new file mode 100644 index 0000000..87894ca --- /dev/null +++ b/website/docs/pricing.md @@ -0,0 +1,89 @@ +# Pricing + +This project is creating free and open-source software under the MIT license. +There are plenty of ways to run the workflow locally after downloading the [data](background.html#data). +However, the workflow can also be executed using [openEO at EODC](https://editor.openeo.org/?server=openeo.eodc.eu%2Fopeneo%2F1.2.0%2F) by enabling experimental processes and searching for 'rqadeforestation'. + +## Price calculator + +Please enter the spatio-temporal extent to be processed. +The price will be estimated automatically. +Resource estimations were based on the following assumptions: + +- Sentinel-1 Sigma0 collection at 20m resolution in Equi7 projection +- Tile size is 15000x15000 pixels +- Satellite revisit period of 6 days +- Data is available in GeoTIFF format +- Files are located on a network share in the same data center +- Execution on an AMD EPIC MILAN CPU on 32 threads with 32GB RAM +- 100% utilization of CPU and RAM (4 workers with 8 threads each) +- Workflow is executed inside a Julia REPL using [RQADeforestation.jl](https://github.com/EarthyScience/RQADeforestation.jl) + + + +
+ +Please note that these results are not official offerings from any cloud provider. +Estimates may vary depending on the area of interest, orbits to be analysed, and execution platform. \ No newline at end of file