From 2c069d5f4677a29a9e8552473a86d0f34274461c Mon Sep 17 00:00:00 2001 From: Daniel da Silva Date: Thu, 29 Jun 2023 11:19:39 +0100 Subject: [PATCH 01/11] Hotfix: Update ui module Fix meta images path when public url is provided --- .veda/ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.veda/ui b/.veda/ui index af635ffb6..0a490f4f6 160000 --- a/.veda/ui +++ b/.veda/ui @@ -1 +1 @@ -Subproject commit af635ffb6d692b7a9a16bf10740abd7277c7b26c +Subproject commit 0a490f4f6f201aaa441c088acebd798d63af2b38 From 902bc4d902c0fc14ebe4a01ce7c9ff6875e78f7f Mon Sep 17 00:00:00 2001 From: Daniel da Silva Date: Fri, 30 Jun 2023 12:48:10 +0100 Subject: [PATCH 02/11] Hotfix: Update UI module Check for key b1 on statistics endpoint --- .veda/ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.veda/ui b/.veda/ui index 0a490f4f6..904bf0e09 160000 --- a/.veda/ui +++ b/.veda/ui @@ -1 +1 @@ -Subproject commit 0a490f4f6f201aaa441c088acebd798d63af2b38 +Subproject commit 904bf0e092e8a8f491640068edf124a10ade46b8 From c67990c457511ae849dc41b42c41d27edae16ced Mon Sep 17 00:00:00 2001 From: Daniel da Silva Date: Wed, 12 Jul 2023 16:33:00 +0100 Subject: [PATCH 03/11] Update CI scripts --- .github/workflows/checks.yml | 23 +---- .github/workflows/deploy-prod.yml | 22 ++--- .github/workflows/deploy-staging.yml | 121 --------------------------- 3 files changed, 10 insertions(+), 156 deletions(-) delete mode 100644 .github/workflows/deploy-staging.yml diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 81402dc2c..aa8b320e9 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -27,17 +27,10 @@ jobs: with: access_token: ${{ github.token }} - # Both veda-ui and veda-config are private repos. Since the token issued - # to GH does not have access to the veda-ui submodule, we have to - # manually check it out using a ssh deploy key. - name: Checkout uses: actions/checkout@v3 - - name: Get submodules - env: - SSH_KEY_SUBMODULE: ${{secrets.DELTA_UI_FETCH_KEY}} - run: | - eval `ssh-agent -s` - ssh-add - <<< "${SSH_KEY_SUBMODULE}"; git submodule update --init --recursive + with: + submodules: recursive - name: Use Node.js ${{ env.NODE }} uses: actions/setup-node@v1 @@ -63,16 +56,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - - # See comment on checks-yml - prep step - - name: Checkout - uses: actions/checkout@v3 - - name: Get submodules - env: - SSH_KEY_SUBMODULE: ${{secrets.DELTA_UI_FETCH_KEY}} - run: | - eval `ssh-agent -s` - ssh-add - <<< "${SSH_KEY_SUBMODULE}"; git submodule update --init --recursive + with: + submodules: recursive - name: Use Node.js ${{ env.NODE }} uses: actions/setup-node@v1 diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index 7f709bd69..0d177002f 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -9,8 +9,7 @@ on: env: NODE: 16 - # DOMAIN_PROD: https://www.earthdata.nasa.gov/dashboard - DOMAIN_PROD: /dashboard + DOMAIN_PROD: https://www.earthdata.nasa.gov/dashboard DEPLOY_BUCKET_PROD: climatedashboard DEPLOY_BUCKET_PROD_REGION: us-east-1 @@ -24,15 +23,10 @@ jobs: with: access_token: ${{ github.token }} - # See comment on checks.yml - prep step - name: Checkout uses: actions/checkout@v3 - - name: Get submodules - env: - SSH_KEY_SUBMODULE: ${{secrets.DELTA_UI_FETCH_KEY}} - run: | - eval `ssh-agent -s` - ssh-add - <<< "${SSH_KEY_SUBMODULE}"; git submodule update --init --recursive + with: + submodules: recursive - name: Use Node.js ${{ env.NODE }} uses: actions/setup-node@v1 @@ -71,15 +65,11 @@ jobs: needs: build steps: - # See comment on checks.yml - prep step - name: Checkout uses: actions/checkout@v3 - - name: Get submodules - env: - SSH_KEY_SUBMODULE: ${{secrets.DELTA_UI_FETCH_KEY}} - run: | - eval `ssh-agent -s` - ssh-add - <<< "${SSH_KEY_SUBMODULE}"; git submodule update --init --recursive + with: + submodules: recursive + - name: Restore node_modules uses: actions/cache@v2 id: cache-node-modules diff --git a/.github/workflows/deploy-staging.yml b/.github/workflows/deploy-staging.yml deleted file mode 100644 index a2ed2acdd..000000000 --- a/.github/workflows/deploy-staging.yml +++ /dev/null @@ -1,121 +0,0 @@ -# Deploy the site to AWS S3 on a push to specific branches - -name: Deploy Staging - MCP (S3) - -on: - push: - branches: - - 'develop' - -env: - NODE: 16 - DOMAIN_STAGING: https://uat.earthdata.nasa.gov/dashboard - DEPLOY_BUCKET_STAGING: climatedashboard-uat - DEPLOY_BUCKET_STAGING_REGION: us-east-1 - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.8.0 - with: - access_token: ${{ github.token }} - - # See comment on checks.yml - prep step - - name: Checkout - uses: actions/checkout@v3 - - name: Get submodules - env: - SSH_KEY_SUBMODULE: ${{secrets.DELTA_UI_FETCH_KEY}} - run: | - eval `ssh-agent -s` - ssh-add - <<< "${SSH_KEY_SUBMODULE}"; git submodule update --init --recursive - - - name: Use Node.js ${{ env.NODE }} - uses: actions/setup-node@v1 - with: - node-version: ${{ env.NODE }} - - - name: Cache node_modules - uses: actions/cache@v2 - id: cache-node-modules - with: - path: | - node_modules - .veda/ui/node_modules - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }} - - - name: Cache dist - uses: actions/cache@v2 - id: cache-dist - with: - path: dist - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.workflow }}-${{ github.sha }} - - - name: Install - run: ./.veda/setup - - - name: Build Staging - env: - MAPBOX_TOKEN: ${{secrets.MAPBOX_TOKEN}} - run: PUBLIC_URL="${{ env.DOMAIN_STAGING }}" yarn stage - - deploy: - runs-on: ubuntu-latest - needs: build - - steps: - # See comment on checks.yml - prep step - - name: Checkout - uses: actions/checkout@v3 - - name: Get submodules - env: - SSH_KEY_SUBMODULE: ${{secrets.DELTA_UI_FETCH_KEY}} - run: | - eval `ssh-agent -s` - ssh-add - <<< "${SSH_KEY_SUBMODULE}"; git submodule update --init --recursive - - name: Restore node_modules - uses: actions/cache@v2 - id: cache-node-modules - with: - path: | - node_modules - .veda/ui/node_modules - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }} - - - name: Restore dist cache - uses: actions/cache@v2 - id: cache-dist - with: - path: dist - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.workflow }}-${{ github.sha }} - - - name: Use Node.js ${{ env.NODE }} - uses: actions/setup-node@v1 - with: - node-version: ${{ env.NODE }} - - - name: Serve site from subpath - run: | - mkdir deploy/ - mv dist deploy/dashboard - cp deploy/dashboard/index.html deploy/index.html - - - name: Deploy to S3 Staging - uses: jakejarvis/s3-sync-action@master - with: - # acl is not permitted with current credentials - # args: --acl public-read --follow-symlinks --delete - args: --follow-symlinks --delete - env: - AWS_S3_BUCKET: ${{ env.DEPLOY_BUCKET_STAGING }} - AWS_REGION: ${{ env.DEPLOY_BUCKET_STAGING_REGION }} - AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - # When serving from a subpath: - # SOURCE_DIR: ./deploy - # Otherwise use the build directory directly: - # SOURCE_DIR: ./dist - SOURCE_DIR: ./deploy \ No newline at end of file From 85b4fa5c966eecb98df65f14515a4e093d581c07 Mon Sep 17 00:00:00 2001 From: Julia Signell Date: Wed, 26 Jul 2023 09:48:19 -0400 Subject: [PATCH 04/11] Fix up links to veda-docs notebooks --- datasets/hls-events.ej.data.mdx | 6 +++--- datasets/mo_npp_vgpm.data.mdx | 4 ++-- datasets/nceo_africa_2017.data.mdx | 6 +++--- datasets/no2.data.mdx | 10 +++++----- datasets/svi_overall.ej.data.mdx | 4 ++-- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/datasets/hls-events.ej.data.mdx b/datasets/hls-events.ej.data.mdx index 55b07aa2e..db21c5aff 100644 --- a/datasets/hls-events.ej.data.mdx +++ b/datasets/hls-events.ej.data.mdx @@ -3,10 +3,10 @@ id: hls_events name: 'Harmonized Landsat Sentinel-2 (Selected Events)' description: '30-meter resolution harmonized Landsat 8/9 and Sentinel-2A/B data products' usage: - - url: "https://nasa-impact.github.io/veda-documentation/hls-visualization.html" + - url: "https://nasa-impact.github.io/veda-docs/notebooks/quickstarts/hls-visualization.html" label: View example notebook title: 'Multi-Band Visualization Preview for Harmonized Landsat Sentinel-2 (HLS)' - - url: "https://nasa-veda.2i2c.cloud/hub/user-redirect/git-pull?repo=https://github.com/NASA-IMPACT/veda-documentation&urlpath=lab/tree/veda-documentation/hls-visualization.ipynb&branch=main" + - url: "https://nasa-veda.2i2c.cloud/hub/user-redirect/git-pull?repo=https://github.com/NASA-IMPACT/veda-docs&urlpath=lab/tree/veda-docs/notebooks/quickstarts/hls-visualization.ipynb&branch=main" label: Run example notebook title: 'Multi-Band Visualization Preview for Harmonized Landsat Sentinel-2 (HLS)' media: @@ -66,7 +66,7 @@ The data currently in this dashboard represents a subset of the available data. ## Scientific research -The production of atmospherically corrected HLS products is a collaborative effort between NASA, the U.S. Geological Survey (USGS), and the European Space Agency (ESA). Bandpass adjustments applied to Sentinel-2 data spectral bands match surface reflectance values in corresponding spectral bands in Landsat 8 and 9. This adjustment allows for 30m observation of the land surface every 2-4 days. HLSL30 and HLSS30 products are typically used for land use land cover applications including land use change, land use classification, fire monitoring, agricultural monitoring, and flooding, among others. +The production of atmospherically corrected HLS products is a collaborative effort between NASA, the U.S. Geological Survey (USGS), and the European Space Agency (ESA). Bandpass adjustments applied to Sentinel-2 data spectral bands match surface reflectance values in corresponding spectral bands in Landsat 8 and 9. This adjustment allows for 30m observation of the land surface every 2-4 days. HLSL30 and HLSS30 products are typically used for land use land cover applications including land use change, land use classification, fire monitoring, agricultural monitoring, and flooding, among others. diff --git a/datasets/mo_npp_vgpm.data.mdx b/datasets/mo_npp_vgpm.data.mdx index 32f6d9451..1a44e16d2 100644 --- a/datasets/mo_npp_vgpm.data.mdx +++ b/datasets/mo_npp_vgpm.data.mdx @@ -3,10 +3,10 @@ id: npp name: "Ocean Net Primary Production" description: "Ocean Net Primary Production (NPP)" usage: - - url: 'https://github.com/NASA-IMPACT/veda-docs/blob/main/example-notebooks/ocean-npp-timeseries-analysis.ipynb' + - url: 'https://github.com/NASA-IMPACT/veda-docs/blob/main/notebooks/datasets/ocean-npp-timeseries-analysis.ipynb' label: View example notebook title: 'Static view in VEDA documentation' - - url: "https://nasa-veda.2i2c.cloud/hub/user-redirect/git-pull?repo=https%3A%2F%2Fgithub.com%2FNASA-IMPACT%2Fveda-docs&branch=main&urlpath=lab%2Ftree%2Fveda-docs%2Fexample-notebooks%2Focean-npp-timeseries-analysis.ipynb" + - url: "https://nasa-veda.2i2c.cloud/hub/user-redirect/git-pull?repo=https://github.com/NASA-IMPACT/veda-docs&branch=main&urlpath=lab/tree/veda-docs/notebooks/datasets/ocean-npp-timeseries-analysis.ipynb" label: Run example notebook title: 'Interactive session in VEDA 2i2c JupyterHub (requires account)' media: diff --git a/datasets/nceo_africa_2017.data.mdx b/datasets/nceo_africa_2017.data.mdx index 1a2352111..57bffe435 100644 --- a/datasets/nceo_africa_2017.data.mdx +++ b/datasets/nceo_africa_2017.data.mdx @@ -3,10 +3,10 @@ id: nceo_africa_2017 name: "National Centre for Earth Observation (NCEO) Biomass" description: The NCEO Africa Aboveground Woody Biomass (AGB) map for the year 2017 at 100 m spatial resolution usage: - - url: "https://github.com/NASA-IMPACT/veda-docs/blob/main/example-notebooks/nceo-biomass-statistics.ipynb" + - url: "https://github.com/NASA-IMPACT/veda-docs/blob/main/notebooks/datasets/nceo-biomass-statistics.ipynb" label: View example notebook title: 'Static view in VEDA documentation' - - url: "https://nasa-veda.2i2c.cloud/hub/user-redirect/git-pull?repo=https%3A%2F%2Fgithub.com%2FNASA-IMPACT%2Fveda-docs&branch=main&urlpath=lab%2Ftree%2Fveda-docs%2Fexample-notebooks%2Fnceo-biomass-statistics.ipynb" + - url: "https://nasa-veda.2i2c.cloud/hub/user-redirect/git-pull?repo=https://github.com/NASA-IMPACT/veda-docs&branch=main&urlpath=lab/tree/veda-docs/notebooks/datasets/nceo-biomass-statistics.ipynb" label: Run example notebook title: 'Interactive session in VEDA 2i2c JupyterHub (requires account)' media: @@ -22,7 +22,7 @@ layers: stacCol: nceo_africa_2017 name: NCEO Africa Aboveground Woody Biomass type: raster - description: The NCEO Africa Aboveground Woody Biomass (AGB) map for the year 2017 at 100 m spatial resolution + description: The NCEO Africa Aboveground Woody Biomass (AGB) map for the year 2017 at 100 m spatial resolution zoomExtent: - 0 - 16 diff --git a/datasets/no2.data.mdx b/datasets/no2.data.mdx index 5bccd6ba9..21244c63b 100644 --- a/datasets/no2.data.mdx +++ b/datasets/no2.data.mdx @@ -7,7 +7,7 @@ usage: - url: 'https://github.com/NASA-IMPACT/veda-docs/blob/main/notebooks/quickstarts/no2-map-plot.ipynb' label: View example notebook title: 'Static view in VEDA documentation' - - url: "https://nasa-veda.2i2c.cloud/hub/user-redirect/git-pull?repo=https%3A%2F%2Fgithub.com%2FNASA-IMPACT%2Fveda-docs&urlpath=lab%2Ftree%2Fveda-docs%2Fnotebooks%2Fquickstarts%2Fno2-map-plot.ipynb&branch=main" + - url: "https://nasa-veda.2i2c.cloud/hub/user-redirect/git-pull?repo=https://github.com/NASA-IMPACT/veda-docs&branch=main&urlpath=lab/tree/veda-docs/notebooks/quickstarts/no2-map-plot.ipynbn" label: Run example notebook title: 'Interactive session in VEDA 2i2c JupyterHub (requires account)' media: @@ -151,12 +151,12 @@ Scientists will use these data to investigate how travel bans and lockdown order src={new URL('./no2-south-america.jpg', import.meta.url).href} alt='NO2 levels over South America from the Ozone Monitoring Instrument' /> - - NO2 levels over South America from the Ozone Monitoring Instrument. The dark green areas in the northwest indicate areas of no data, most likely associated with cloud cover or snow. - + NO2 levels over South America from the Ozone Monitoring Instrument. The dark green areas in the northwest indicate areas of no data, most likely associated with cloud cover or snow. + ## Interpreting the data diff --git a/datasets/svi_overall.ej.data.mdx b/datasets/svi_overall.ej.data.mdx index f1643de9d..232cb856b 100644 --- a/datasets/svi_overall.ej.data.mdx +++ b/datasets/svi_overall.ej.data.mdx @@ -3,10 +3,10 @@ id: svi-overall name: 'Overall Social Vulnerability' description: "Overall score for the Centers for Disease Control and Prevention (CDC) Social Vulnerability Index (SVI) gridded at a spatial resolution of 1 km" usage: - - url: 'https://nasa-impact.github.io/veda-documentation/open-and-plot.html' + - url: 'https://nasa-impact.github.io/veda-docs/notebooks/quickstarts/open-and-plot.html' label: View example notebook title: 'Open and Visualize SVI data' - - url: "https://nasa-veda.2i2c.cloud/hub/user-redirect/git-pull?repo=https://github.com/NASA-IMPACT/veda-documentation&urlpath=lab/tree/veda-documentation/svi-overall.ipynb&branch=main" + - url: "https://nasa-veda.2i2c.cloud/hub/user-redirect/git-pull?repo=https://github.com/NASA-IMPACT/veda-docs&branch=main&urlpath=lab/tree/veda-docs/notebooks/quickstarts/open-and-plot.ipynb" label: Run example notebook title: 'Open and Visualize SVI data' media: From 6fb29c61fd80ef4814b06a441a413c7f8e2d1c8b Mon Sep 17 00:00:00 2001 From: Jonas Date: Wed, 26 Jul 2023 15:59:16 +0200 Subject: [PATCH 05/11] Fix file extension typo --- datasets/no2.data.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datasets/no2.data.mdx b/datasets/no2.data.mdx index 21244c63b..fa96a1c39 100644 --- a/datasets/no2.data.mdx +++ b/datasets/no2.data.mdx @@ -7,7 +7,7 @@ usage: - url: 'https://github.com/NASA-IMPACT/veda-docs/blob/main/notebooks/quickstarts/no2-map-plot.ipynb' label: View example notebook title: 'Static view in VEDA documentation' - - url: "https://nasa-veda.2i2c.cloud/hub/user-redirect/git-pull?repo=https://github.com/NASA-IMPACT/veda-docs&branch=main&urlpath=lab/tree/veda-docs/notebooks/quickstarts/no2-map-plot.ipynbn" + - url: "https://nasa-veda.2i2c.cloud/hub/user-redirect/git-pull?repo=https://github.com/NASA-IMPACT/veda-docs&branch=main&urlpath=lab/tree/veda-docs/notebooks/quickstarts/no2-map-plot.ipynb" label: Run example notebook title: 'Interactive session in VEDA 2i2c JupyterHub (requires account)' media: From dd6b8a3472faa6931232fe171857024ae76b30f6 Mon Sep 17 00:00:00 2001 From: Slesa Adhikari Date: Wed, 26 Jul 2023 16:36:31 -0500 Subject: [PATCH 06/11] Update to OIDC deployment --- .github/workflows/deploy-prod.yml | 43 ++++++++++++++----------------- 1 file changed, 19 insertions(+), 24 deletions(-) diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index 0d177002f..fe001f64d 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -2,15 +2,20 @@ name: Deploy Production - MCP (S3) +permissions: + id-token: write + contents: read + on: push: branches: - 'main' + - test-oidc env: NODE: 16 - DOMAIN_PROD: https://www.earthdata.nasa.gov/dashboard - DEPLOY_BUCKET_PROD: climatedashboard + DOMAIN_PROD: /dashboard + DEPLOY_BUCKET_PROD: covid-eo-uat DEPLOY_BUCKET_PROD_REGION: us-east-1 jobs: @@ -97,28 +102,18 @@ jobs: mv dist deploy/dashboard cp deploy/dashboard/index.html deploy/index.html - - name: Deploy to S3 Production - uses: jakejarvis/s3-sync-action@master + - name: Configure AWS Credentials + uses: aws-actions/configure-aws-credentials@v2 with: - # acl is not permitted with current credentials - # args: --acl public-read --follow-symlinks --delete - args: --follow-symlinks --delete - env: - AWS_S3_BUCKET: ${{ env.DEPLOY_BUCKET_PROD }} - AWS_REGION: ${{ env.DEPLOY_BUCKET_PROD_REGION }} - AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - # When serving from a subpath: - # SOURCE_DIR: ./deploy - # Otherwise use the build directory directly: - # SOURCE_DIR: ./dist - SOURCE_DIR: ./deploy + role-to-assume: ${{ secrets.DEPLOYMENT_ROLE_ARN }} + role-session-name: "veda-dashboard-prod-deployment" + aws-region: "us-east-1" + + - name: Deploy to S3 Production + run: | + aws s3 sync ./deploy s3://${{ env.DEPLOY_BUCKET_PROD }} --delete - name: Invalidate CloudFront cache - uses: chetan/invalidate-cloudfront-action@v2 - env: - DISTRIBUTION: ${{ secrets.CLOUDFRONT_DISTRIBUTION_PROD }} - PATHS: "/*" - AWS_REGION: ${{ env.DEPLOY_BUCKET_PROD_REGION }} - AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + uses: oneyedev/aws-cloudfront-invalidation@v1 + with: + distribution-id: ${{ secrets.CLOUDFRONT_DISTRIBUTION_PROD }} From 702aee9adfb00a71b8504c5b5b7811d37ac49c53 Mon Sep 17 00:00:00 2001 From: Slesa Adhikari Date: Wed, 26 Jul 2023 16:47:21 -0500 Subject: [PATCH 07/11] Update to actual values --- .github/workflows/deploy-prod.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index fe001f64d..d28b8a644 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -10,12 +10,11 @@ on: push: branches: - 'main' - - test-oidc env: NODE: 16 - DOMAIN_PROD: /dashboard - DEPLOY_BUCKET_PROD: covid-eo-uat + DOMAIN_PROD: https://www.earthdata.nasa.gov/dashboard + DEPLOY_BUCKET_PROD: climatedashboard DEPLOY_BUCKET_PROD_REGION: us-east-1 jobs: @@ -107,7 +106,7 @@ jobs: with: role-to-assume: ${{ secrets.DEPLOYMENT_ROLE_ARN }} role-session-name: "veda-dashboard-prod-deployment" - aws-region: "us-east-1" + aws-region: ${{ env.DEPLOY_BUCKET_PROD_REGION }} - name: Deploy to S3 Production run: | From df03a0ca9fc75b91763c58753f12cae54439c454 Mon Sep 17 00:00:00 2001 From: Daniel da Silva Date: Wed, 26 Jul 2023 15:50:29 +0100 Subject: [PATCH 08/11] Update Ui module --- .veda/ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.veda/ui b/.veda/ui index 904bf0e09..59940de17 160000 --- a/.veda/ui +++ b/.veda/ui @@ -1 +1 @@ -Subproject commit 904bf0e092e8a8f491640068edf124a10ade46b8 +Subproject commit 59940de1789fd0b53553a9b793048fece601e76f From 5874a059e4fe71f6d905110e75a60df12f13b8fe Mon Sep 17 00:00:00 2001 From: Daniel da Silva Date: Wed, 26 Jul 2023 16:39:57 +0100 Subject: [PATCH 09/11] Update content according to migration guide --- datasets/CMIP-winter-median-pr.data.mdx | 6 +++-- datasets/CMIP-winter-median-ta.data.mdx | 6 +++-- .../bangladesh-landcover-2001-2020.data.mdx | 7 ++--- datasets/barc-thomasfire.data.mdx | 6 +++-- ...ire-characteristics-burn-severity.data.mdx | 6 +++-- datasets/co2.data.mdx | 8 +++--- datasets/conus-reach.data.mdx | 6 +++-- datasets/disalexi-etsuppression.data.mdx | 6 +++-- datasets/ecco-surface-height-change.data.mdx | 6 +++-- datasets/epa-agriculture.data.mdx | 11 +++++--- datasets/epa-coal-mines.data.mdx | 11 +++++--- datasets/epa-natural-gas-systems.data.mdx | 11 +++++--- datasets/epa-other.data.mdx | 11 +++++--- datasets/epa-petroleum-systems.data.mdx | 11 +++++--- datasets/epa-waste.data.mdx | 11 +++++--- datasets/fb_population.ej.data.mdx | 11 +++++--- datasets/fire.data.mdx | 7 ++--- datasets/frp-max-thomasfire.data.mdx | 6 +++-- datasets/geoglam.data.mdx | 11 +++++--- datasets/global-reanalysis-da.data.mdx | 6 +++-- datasets/grdi-v1.data.mdx | 11 +++++--- datasets/hls-events.ej.data.mdx | 6 +++-- datasets/is2sitmogr4.data.mdx | 6 +++-- datasets/lis-etsuppression.data.mdx | 6 +++-- datasets/lis-tvegsuppression.data.mdx | 6 +++-- datasets/lis.da.trend.data.mdx | 6 +++-- datasets/mo_npp_vgpm.data.mdx | 6 +++-- datasets/mtbs-burn-severity.data.mdx | 6 +++-- datasets/nceo_africa_2017.data.mdx | 6 +++-- datasets/nighttime-lights.data.mdx | 6 +++-- datasets/nighttime-lights.ej.data.mdx | 6 +++-- datasets/no2.data.mdx | 8 +++--- datasets/ps_blue_tarp_detections.ej.data.mdx | 6 +++-- datasets/snow-projections-diff.data.mdx | 6 +++-- datasets/snow-projections-median.data.mdx | 6 +++-- datasets/so2.data.mdx | 6 +++-- datasets/sport-lis.data.mdx | 6 +++-- datasets/svi_household.ej.data.mdx | 11 +++++--- datasets/svi_housing.ej.data.mdx | 11 +++++--- datasets/svi_minority.ej.data.mdx | 11 +++++--- datasets/svi_overall.ej.data.mdx | 11 +++++--- datasets/svi_socioeconomic.ej.data.mdx | 11 +++++--- datasets/twsanomaly.data.mdx | 6 +++-- datasets/twsnonstationarity.data.mdx | 6 +++-- datasets/twstrend.data.mdx | 6 +++-- ...-food-security-east-africa.discoveries.mdx | 6 +++-- .../air-quality-and-covid-19.discoveries.mdx | 6 +++-- .../air-quality-so2-volcanoes.discoveries.mdx | 6 +++-- ...ass-harmonization-activity.discoveries.mdx | 6 +++-- .../changing-landscapes.discoveries.mdx | 6 +++-- .../coastal-flooding-and-slr.discoveries.mdx | 6 +++-- discoveries/covid-climate.discoveries.mdx | 6 +++-- discoveries/fire-life-cycle.discoveries.mdx | 6 +++-- .../hurricane-maria-and-ida.discoveries.mdx | 6 +++-- discoveries/no2-and-so2.discoveries.mdx | 6 +++-- ...phytoplankton-algal-blooms.discoveries.mdx | 6 +++-- ...projected-changes-WUS-snow.discoveries.mdx | 6 +++-- .../sat-data-agriculture.discoveries.mdx | 6 +++-- discoveries/sea-ice-thickness.discoveries.mdx | 6 +++-- discoveries/tws-trends.discoveries.mdx | 6 +++-- discoveries/urban-heating.discoveries.mdx | 6 +++-- discoveries/wq-models.discoveries.mdx | 6 +++-- taxonomies.yml | 27 ------------------- veda.config.js | 5 ---- 64 files changed, 292 insertions(+), 188 deletions(-) delete mode 100644 taxonomies.yml diff --git a/datasets/CMIP-winter-median-pr.data.mdx b/datasets/CMIP-winter-median-pr.data.mdx index 2a0be4d7d..c17cc78ba 100644 --- a/datasets/CMIP-winter-median-pr.data.mdx +++ b/datasets/CMIP-winter-median-pr.data.mdx @@ -8,8 +8,10 @@ media: author: name: Justin Pflug url: -thematics: - - eis +taxonomy: + - name: Topics + values: + - EIS layers: - id: CMIP245-winter-median-pr stacCol: CMIP245-winter-median-pr diff --git a/datasets/CMIP-winter-median-ta.data.mdx b/datasets/CMIP-winter-median-ta.data.mdx index 579cfbfd1..6038546af 100644 --- a/datasets/CMIP-winter-median-ta.data.mdx +++ b/datasets/CMIP-winter-median-ta.data.mdx @@ -8,8 +8,10 @@ media: author: name: Justin Pflug url: -thematics: - - eis +taxonomy: + - name: Topics + values: + - EIS layers: - id: CMIP245-winter-median-ta stacCol: CMIP245-winter-median-ta diff --git a/datasets/bangladesh-landcover-2001-2020.data.mdx b/datasets/bangladesh-landcover-2001-2020.data.mdx index 6e817fcfe..03f378b42 100644 --- a/datasets/bangladesh-landcover-2001-2020.data.mdx +++ b/datasets/bangladesh-landcover-2001-2020.data.mdx @@ -3,14 +3,15 @@ id: bangladesh-landcover-2001-2020 name: 'Land Cover - Bangladesh' description: 'Annual land cover maps for 2001 and 2020 (Bangladesh)' media: - src: ::file ./bangladesh-landcover-2001-2020--dataset-cover.jpg alt: 'Annual land cover maps for 2001 and 2020 (Bangladesh)' author: name: USGS url: https://unsplash.com/photos/d59NHNtT_Ss -thematics: - - eis +taxonomy: + - name: Topics + values: + - EIS layers: - id: bangladesh-landcover-2001-2020 stacCol: bangladesh-landcover-2001-2020 diff --git a/datasets/barc-thomasfire.data.mdx b/datasets/barc-thomasfire.data.mdx index 3081d4fc1..5c951361e 100644 --- a/datasets/barc-thomasfire.data.mdx +++ b/datasets/barc-thomasfire.data.mdx @@ -8,8 +8,10 @@ media: author: name: Mike Newbry url: https://unsplash.com/photos/DwtX9mMHBJ0 -thematics: - - eis +taxonomy: + - name: Topics + values: + - EIS layers: - id: barc-thomasfire stacCol: barc-thomasfire diff --git a/datasets/caldor-fire-characteristics-burn-severity.data.mdx b/datasets/caldor-fire-characteristics-burn-severity.data.mdx index ebee7362e..49fc51d7b 100644 --- a/datasets/caldor-fire-characteristics-burn-severity.data.mdx +++ b/datasets/caldor-fire-characteristics-burn-severity.data.mdx @@ -8,8 +8,10 @@ media: author: name: Marek Piwnicki url: https://unsplash.com/photos/WiZOyYqzUss -thematics: - - eis +taxonomy: + - name: Topics + values: + - EIS layers: - id: caldor-fire-behavior stacCol: caldor-fire-behavior diff --git a/datasets/co2.data.mdx b/datasets/co2.data.mdx index e002b00c5..903211aca 100644 --- a/datasets/co2.data.mdx +++ b/datasets/co2.data.mdx @@ -8,9 +8,11 @@ media: author: name: Marek Piwnicki url: https://unsplash.com/photos/WiZOyYqzUss -thematics: - - air-quality - - eis +taxonomy: + - name: Topics + values: + - Air Quality + - EIS layers: - id: co2-mean stacCol: co2-mean diff --git a/datasets/conus-reach.data.mdx b/datasets/conus-reach.data.mdx index 05c9ab171..5ab22469b 100644 --- a/datasets/conus-reach.data.mdx +++ b/datasets/conus-reach.data.mdx @@ -9,8 +9,10 @@ media: name: NASA url: https://www.nasa.gov pubDate: 2023-03-03 -thematics: - - eis +taxonomy: + - name: Topics + values: + - EIS layers: - id: conus-reach stacCol: conus-reach diff --git a/datasets/disalexi-etsuppression.data.mdx b/datasets/disalexi-etsuppression.data.mdx index a030bf5fd..0e0edc0fa 100644 --- a/datasets/disalexi-etsuppression.data.mdx +++ b/datasets/disalexi-etsuppression.data.mdx @@ -8,8 +8,10 @@ media: author: name: Mike Newbry url: https://unsplash.com/photos/DwtX9mMHBJ0 -thematics: - - eis +taxonomy: + - name: Topics + values: + - EIS layers: - id: disalexi-etsuppression stacCol: disalexi-etsuppression diff --git a/datasets/ecco-surface-height-change.data.mdx b/datasets/ecco-surface-height-change.data.mdx index 1b41e6577..4cc9be96c 100644 --- a/datasets/ecco-surface-height-change.data.mdx +++ b/datasets/ecco-surface-height-change.data.mdx @@ -8,8 +8,10 @@ media: author: name: Lance Asper url: https://unsplash.com/photos/3P3NHLZGCp8 -thematics: - - eis +taxonomy: + - name: Topics + values: + - EIS layers: - id: ecco-surface-height-change stacCol: ecco-surface-height-change diff --git a/datasets/epa-agriculture.data.mdx b/datasets/epa-agriculture.data.mdx index ffa8a614c..bfa30c6c5 100644 --- a/datasets/epa-agriculture.data.mdx +++ b/datasets/epa-agriculture.data.mdx @@ -8,10 +8,13 @@ media: author: name: James Baltz url: https://unsplash.com/photos/jAt6cN6zl8M -thematics: - - eis -sources: - - epa-ghg +taxonomy: + - name: Topics + values: + - EIS + - name: Source + values: + - EPA GHG layers: - id: epa-annual-emissions_4b_manure_management stacCol: EPA-annual-emissions_4B_Manure_Management diff --git a/datasets/epa-coal-mines.data.mdx b/datasets/epa-coal-mines.data.mdx index 8b7c786df..79918a883 100644 --- a/datasets/epa-coal-mines.data.mdx +++ b/datasets/epa-coal-mines.data.mdx @@ -8,10 +8,13 @@ media: author: name: Dominik Vanyi url: https://unsplash.com/photos/Mk2ls9UBO2E -thematics: - - eis -sources: - - epa-ghg +taxonomy: + - name: Topics + values: + - EIS + - name: Source + values: + - EPA GHG layers: - id: epa-annual-emissions_1b1a_coal_mining_underground stacCol: EPA-annual-emissions_1B1a_Coal_Mining_Underground diff --git a/datasets/epa-natural-gas-systems.data.mdx b/datasets/epa-natural-gas-systems.data.mdx index f9fc0b51d..985f670cb 100644 --- a/datasets/epa-natural-gas-systems.data.mdx +++ b/datasets/epa-natural-gas-systems.data.mdx @@ -8,10 +8,13 @@ media: author: name: American Public Power Association url: https://unsplash.com/photos/TF-DL_2L1JM -thematics: - - eis -sources: - - epa-ghg +taxonomy: + - name: Topics + values: + - EIS + - name: Source + values: + - EPA GHG layers: - id: epa-annual-emissions_1b2b_natural_gas_processing stacCol: EPA-annual-emissions_1B2b_Natural_Gas_Processing diff --git a/datasets/epa-other.data.mdx b/datasets/epa-other.data.mdx index 82accfb42..3ed980e90 100644 --- a/datasets/epa-other.data.mdx +++ b/datasets/epa-other.data.mdx @@ -8,10 +8,13 @@ media: author: name: Harry Schaefer / Documerica url: https://unsplash.com/photos/EjSw6WdnLRA -thematics: - - eis -sources: - - epa-ghg +taxonomy: + - name: Topics + values: + - EIS + - name: Source + values: + - EPA GHG layers: - id: epa-annual-emissions_2b5_petrochemical_production stacCol: EPA-annual-emissions_2B5_Petrochemical_Production diff --git a/datasets/epa-petroleum-systems.data.mdx b/datasets/epa-petroleum-systems.data.mdx index e71a9cb08..870a2e688 100644 --- a/datasets/epa-petroleum-systems.data.mdx +++ b/datasets/epa-petroleum-systems.data.mdx @@ -8,10 +8,13 @@ media: author: name: Patrick Hendry url: https://unsplash.com/photos/6xeDIZgoPaw -thematics: - - eis -sources: - - epa-ghg +taxonomy: + - name: Topics + values: + - EIS + - name: Source + values: + - EPA GHG layers: - id: epa-annual-emissions_1b2a_petroleum stacCol: EPA-annual-emissions_1B2a_Petroleum diff --git a/datasets/epa-waste.data.mdx b/datasets/epa-waste.data.mdx index 1854259b1..6c7e1b96b 100644 --- a/datasets/epa-waste.data.mdx +++ b/datasets/epa-waste.data.mdx @@ -8,10 +8,13 @@ media: author: name: Antoine GIRET url: https://unsplash.com/photos/7_TSzqJms4w -thematics: - - eis -sources: - - epa-ghg +taxonomy: + - name: Topics + values: + - EIS + - name: Source + values: + - EPA GHG layers: - id: epa-annual-emissions_6b_wastewater_treatment_domestic stacCol: EPA-annual-emissions_6B_Wastewater_Treatment_Domestic diff --git a/datasets/fb_population.ej.data.mdx b/datasets/fb_population.ej.data.mdx index d56a50781..73a11905c 100644 --- a/datasets/fb_population.ej.data.mdx +++ b/datasets/fb_population.ej.data.mdx @@ -8,10 +8,13 @@ media: author: name: NASA url: -thematics: - - environmental-justice -sources: - - meta-pop +taxonomy: + - name: Topics + values: + - Environmental Justice + - name: Source + values: + - Meta layers: - id: facebook_population_density stacCol: facebook_population_density diff --git a/datasets/fire.data.mdx b/datasets/fire.data.mdx index 01fbdd695..c59222f52 100644 --- a/datasets/fire.data.mdx +++ b/datasets/fire.data.mdx @@ -12,9 +12,10 @@ media: author: name: Matt Howard url: https://unsplash.com/photos/eAKDzK4lo4o -thematics: - - eis - +taxonomy: + - name: Topics + values: + - EIS layers: - id: eis_fire_perimeter stacCol: eis_fire_perimeter diff --git a/datasets/frp-max-thomasfire.data.mdx b/datasets/frp-max-thomasfire.data.mdx index b87ecb4d9..ac007ffc7 100644 --- a/datasets/frp-max-thomasfire.data.mdx +++ b/datasets/frp-max-thomasfire.data.mdx @@ -8,8 +8,10 @@ media: author: name: Mike Newbry url: https://unsplash.com/photos/DwtX9mMHBJ0 -thematics: - - eis +taxonomy: + - name: Topics + values: + - EIS layers: - id: frp-max-thomasfire stacCol: frp-max-thomasfire diff --git a/datasets/geoglam.data.mdx b/datasets/geoglam.data.mdx index 0999324c3..cb98e9f82 100644 --- a/datasets/geoglam.data.mdx +++ b/datasets/geoglam.data.mdx @@ -8,10 +8,13 @@ media: author: name: Jean Wimmerlin url: https://unsplash.com/photos/RUj5b4YXaHE -thematics: - - agriculture -sources: - - geoglam +taxonomy: + - name: Topics + values: + - Agriculture + - name: Source + values: + - GEOGLAM layers: - id: geoglam stacCol: geoglam diff --git a/datasets/global-reanalysis-da.data.mdx b/datasets/global-reanalysis-da.data.mdx index 2372845e3..fc96a8903 100644 --- a/datasets/global-reanalysis-da.data.mdx +++ b/datasets/global-reanalysis-da.data.mdx @@ -9,8 +9,10 @@ media: name: NASA LIS url: pubDate: 2023-03-01 -thematics: - - eis +taxonomy: + - name: Topics + values: + - EIS layers: - id: lis-global-da-evap stacCol: lis-global-da-evap diff --git a/datasets/grdi-v1.data.mdx b/datasets/grdi-v1.data.mdx index 5176c8e5a..4471310c6 100644 --- a/datasets/grdi-v1.data.mdx +++ b/datasets/grdi-v1.data.mdx @@ -8,10 +8,13 @@ media: author: name: Jordan Opel url: https://unsplash.com/photos/3VLHF9b9Plg -thematics: - - environmental-justice -sources: - - nasa-ciesin-grdi +taxonomy: + - name: Topics + values: + - Environmental Justice + - name: Source + values: + - NASA CIESIN layers: - id: grdi-cdr-raster stacCol: grdi-cdr-raster diff --git a/datasets/hls-events.ej.data.mdx b/datasets/hls-events.ej.data.mdx index db21c5aff..8a197d027 100644 --- a/datasets/hls-events.ej.data.mdx +++ b/datasets/hls-events.ej.data.mdx @@ -15,8 +15,10 @@ media: author: name: NASA url: https://nasa.gov/ -thematics: - - environmental-justice +taxonomy: + - name: Topics + values: + - Environmental Justice layers: - id: hls-l30-002-ej stacCol: hls-l30-002-ej-reprocessed diff --git a/datasets/is2sitmogr4.data.mdx b/datasets/is2sitmogr4.data.mdx index 49cdef006..0cf7cd7ca 100644 --- a/datasets/is2sitmogr4.data.mdx +++ b/datasets/is2sitmogr4.data.mdx @@ -8,8 +8,10 @@ media: author: name: Matt Broch url: https://unsplash.com/photos/bwD3GLrV4pY -thematics: - - eis +taxonomy: + - name: Topics + values: + - EIS layers: - id: IS2SITMOGR4-cog stacCol: IS2SITMOGR4-cog diff --git a/datasets/lis-etsuppression.data.mdx b/datasets/lis-etsuppression.data.mdx index 7d4da4a1c..15d3a600d 100644 --- a/datasets/lis-etsuppression.data.mdx +++ b/datasets/lis-etsuppression.data.mdx @@ -8,8 +8,10 @@ media: author: name: Mike Newbry url: https://unsplash.com/photos/DwtX9mMHBJ0 -thematics: - - eis +taxonomy: + - name: Topics + values: + - EIS layers: - id: lis-etsuppression stacCol: lis-etsuppression diff --git a/datasets/lis-tvegsuppression.data.mdx b/datasets/lis-tvegsuppression.data.mdx index 082c460be..974c74e54 100644 --- a/datasets/lis-tvegsuppression.data.mdx +++ b/datasets/lis-tvegsuppression.data.mdx @@ -8,8 +8,10 @@ media: author: name: Mike Newbry url: https://unsplash.com/photos/DwtX9mMHBJ0 -thematics: - - eis +taxonomy: + - name: Topics + values: + - EIS layers: - id: lis-tvegsuppression stacCol: lis-tvegsuppression diff --git a/datasets/lis.da.trend.data.mdx b/datasets/lis.da.trend.data.mdx index b623df39c..98f4c6988 100644 --- a/datasets/lis.da.trend.data.mdx +++ b/datasets/lis.da.trend.data.mdx @@ -8,8 +8,10 @@ media: author: name: NASA LIS url: -thematics: - - eis +taxonomy: + - name: Topics + values: + - EIS layers: - id: lis-global-da-tws-trend stacCol: lis-global-da-tws-trend diff --git a/datasets/mo_npp_vgpm.data.mdx b/datasets/mo_npp_vgpm.data.mdx index 1a44e16d2..c50d1a4d4 100644 --- a/datasets/mo_npp_vgpm.data.mdx +++ b/datasets/mo_npp_vgpm.data.mdx @@ -15,8 +15,10 @@ media: author: name: Karl Callwood url: https://unsplash.com/photos/Ko1sGLhZm5w -thematics: - - water-quality +taxonomy: + - name: Topics + values: + - Water Quality layers: - id: MO_NPP_npp_vgpm stacCol: MO_NPP_npp_vgpm diff --git a/datasets/mtbs-burn-severity.data.mdx b/datasets/mtbs-burn-severity.data.mdx index 314ff026a..bbcb590de 100644 --- a/datasets/mtbs-burn-severity.data.mdx +++ b/datasets/mtbs-burn-severity.data.mdx @@ -8,8 +8,10 @@ media: author: name: Mike Newbry url: https://unsplash.com/photos/DwtX9mMHBJ0 -thematics: - - eis +taxonomy: + - name: Topics + values: + - EIS layers: - id: mtbs-burn-severity stacCol: mtbs-burn-severity diff --git a/datasets/nceo_africa_2017.data.mdx b/datasets/nceo_africa_2017.data.mdx index 57bffe435..aaa06cf9f 100644 --- a/datasets/nceo_africa_2017.data.mdx +++ b/datasets/nceo_africa_2017.data.mdx @@ -15,8 +15,10 @@ media: author: name: Olena Sergienko url: https://unsplash.com/photos/0Ws_-v4Y_wY -thematics: - - biomass +taxonomy: + - name: Topics + values: + - Biomass layers: - id: nceo_africa_2017 stacCol: nceo_africa_2017 diff --git a/datasets/nighttime-lights.data.mdx b/datasets/nighttime-lights.data.mdx index 1a4e7f6e8..3396f98f1 100644 --- a/datasets/nighttime-lights.data.mdx +++ b/datasets/nighttime-lights.data.mdx @@ -8,8 +8,10 @@ media: author: name: NASA Earth Observatory url: https://earthobservatory.nasa.gov/images/90008/night-light-maps-open-up-new-applications -thematics: - - covid-19 +taxonomy: + - name: Topics + values: + - Covid 19 layers: - id: nightlights-hd-monthly stacCol: nightlights-hd-monthly diff --git a/datasets/nighttime-lights.ej.data.mdx b/datasets/nighttime-lights.ej.data.mdx index 0318b0548..03aa4ad4f 100644 --- a/datasets/nighttime-lights.ej.data.mdx +++ b/datasets/nighttime-lights.ej.data.mdx @@ -8,8 +8,10 @@ media: author: name: NASA Earth Observatory url: https://appliedsciences.nasa.gov/our-impact/news/satellite-observes-power-outages-new-orleans -thematics: - - environmental-justice +taxonomy: + - name: Topics + values: + - Environmental Justice layers: - id: nightlights-hd-1band stacCol: nightlights-hd-1band diff --git a/datasets/no2.data.mdx b/datasets/no2.data.mdx index fa96a1c39..5b0fd9eb0 100644 --- a/datasets/no2.data.mdx +++ b/datasets/no2.data.mdx @@ -16,9 +16,11 @@ media: author: name: Mick Truyts url: https://unsplash.com/photos/x6WQeNYJC1w -thematics: - - air-quality - - covid-19 +taxonomy: + - name: Topics + values: + - Air Quality + - Covid 19 layers: - id: no2-monthly stacCol: no2-monthly diff --git a/datasets/ps_blue_tarp_detections.ej.data.mdx b/datasets/ps_blue_tarp_detections.ej.data.mdx index 1df3501e2..80df1f21f 100644 --- a/datasets/ps_blue_tarp_detections.ej.data.mdx +++ b/datasets/ps_blue_tarp_detections.ej.data.mdx @@ -8,8 +8,10 @@ media: author: name: NASA url: -thematics: - - environmental-justice +taxonomy: + - name: Topics + values: + - Environmental Justice layers: - id: blue-tarp-detection stacCol: blue-tarp-detection diff --git a/datasets/snow-projections-diff.data.mdx b/datasets/snow-projections-diff.data.mdx index 8f513c332..d25185265 100644 --- a/datasets/snow-projections-diff.data.mdx +++ b/datasets/snow-projections-diff.data.mdx @@ -8,8 +8,10 @@ media: author: name: Justin Pflug url: -thematics: - - eis +taxonomy: + - name: Topics + values: + - EIS layers: - id: snow-projections-diff-scenario-245 stacCol: snow-projections-diff-245 diff --git a/datasets/snow-projections-median.data.mdx b/datasets/snow-projections-median.data.mdx index b5544067e..6d0d6be85 100644 --- a/datasets/snow-projections-median.data.mdx +++ b/datasets/snow-projections-median.data.mdx @@ -8,8 +8,10 @@ media: author: name: Justin Pflug url: -thematics: - - eis +taxonomy: + - name: Topics + values: + - EIS layers: - id: snow-projections-median-scenario-245 stacCol: snow-projections-median-245 diff --git a/datasets/so2.data.mdx b/datasets/so2.data.mdx index a6e4b86c6..2dd656d69 100644 --- a/datasets/so2.data.mdx +++ b/datasets/so2.data.mdx @@ -8,8 +8,10 @@ media: author: name: NASA url: -thematics: - - air-quality +taxonomy: + - name: Topics + values: + - Air Quality layers: - id: OMSO2PCA-COG stacCol: OMSO2PCA-COG diff --git a/datasets/sport-lis.data.mdx b/datasets/sport-lis.data.mdx index 3dfbcc289..352cb438a 100644 --- a/datasets/sport-lis.data.mdx +++ b/datasets/sport-lis.data.mdx @@ -8,8 +8,10 @@ media: author: name: Clay Banks url: https://unsplash.com/photos/EdscD_R28bM -thematics: - - eis +taxonomy: + - name: Topics + values: + - EIS layers: - sourceParams: resampling: bilinear diff --git a/datasets/svi_household.ej.data.mdx b/datasets/svi_household.ej.data.mdx index 0b54726ce..f2b47690a 100644 --- a/datasets/svi_household.ej.data.mdx +++ b/datasets/svi_household.ej.data.mdx @@ -8,10 +8,13 @@ media: author: name: NASA url: https://nasa.gov/ -thematics: - - environmental-justice -sources: - - atsdr-svi +taxonomy: + - name: Topics + values: + - Environmental Justice + - name: Source + values: + - ATSDR layers: - id: social-vulnerability-index-household stacCol: social-vulnerability-index-household diff --git a/datasets/svi_housing.ej.data.mdx b/datasets/svi_housing.ej.data.mdx index a1d7b8925..cd2d83eca 100644 --- a/datasets/svi_housing.ej.data.mdx +++ b/datasets/svi_housing.ej.data.mdx @@ -8,10 +8,13 @@ media: author: name: NASA url: -thematics: - - environmental-justice -sources: - - atsdr-svi +taxonomy: + - name: Topics + values: + - Environmental Justice + - name: Source + values: + - ATSDR layers: - id: social-vulnerability-index-housing stacCol: social-vulnerability-index-housing diff --git a/datasets/svi_minority.ej.data.mdx b/datasets/svi_minority.ej.data.mdx index 0e4af24fd..5a89fe2d4 100644 --- a/datasets/svi_minority.ej.data.mdx +++ b/datasets/svi_minority.ej.data.mdx @@ -8,10 +8,13 @@ media: author: name: NASA url: -thematics: - - environmental-justice -sources: - - atsdr-svi +taxonomy: + - name: Topics + values: + - Environmental Justice + - name: Source + values: + - ATSDR layers: - id: social-vulnerability-index-minority stacCol: social-vulnerability-index-minority diff --git a/datasets/svi_overall.ej.data.mdx b/datasets/svi_overall.ej.data.mdx index 232cb856b..e7fd873f9 100644 --- a/datasets/svi_overall.ej.data.mdx +++ b/datasets/svi_overall.ej.data.mdx @@ -15,10 +15,13 @@ media: author: name: NASA url: -thematics: - - environmental-justice -sources: - - atsdr-svi +taxonomy: + - name: Topics + values: + - Environmental Justice + - name: Source + values: + - ATSDR layers: - id: social-vulnerability-index-overall stacCol: social-vulnerability-index-overall diff --git a/datasets/svi_socioeconomic.ej.data.mdx b/datasets/svi_socioeconomic.ej.data.mdx index b0734ae9f..8140f5fda 100644 --- a/datasets/svi_socioeconomic.ej.data.mdx +++ b/datasets/svi_socioeconomic.ej.data.mdx @@ -8,10 +8,13 @@ media: author: name: NASA url: -thematics: - - environmental-justice -sources: - - atsdr-svi +taxonomy: + - name: Topics + values: + - Environmental Justice + - name: Source + values: + - ATSDR layers: - id: social-vulnerability-index-socioeconomic stacCol: social-vulnerability-index-socioeconomic diff --git a/datasets/twsanomaly.data.mdx b/datasets/twsanomaly.data.mdx index 8b7436e9e..a18375f15 100644 --- a/datasets/twsanomaly.data.mdx +++ b/datasets/twsanomaly.data.mdx @@ -8,8 +8,10 @@ media: author: name: NASA LIS url: -thematics: - - eis +taxonomy: + - name: Topics + values: + - EIS layers: - id: lis-tws-anomaly stacCol: lis-tws-anomaly diff --git a/datasets/twsnonstationarity.data.mdx b/datasets/twsnonstationarity.data.mdx index a603388f5..c6f8e466f 100644 --- a/datasets/twsnonstationarity.data.mdx +++ b/datasets/twsnonstationarity.data.mdx @@ -8,8 +8,10 @@ media: author: name: NASA LIS url: -thematics: - - eis +taxonomy: + - name: Topics + values: + - EIS layers: - id: lis-tws-nonstationarity-index stacCol: lis-tws-nonstationarity-index diff --git a/datasets/twstrend.data.mdx b/datasets/twstrend.data.mdx index 7e831336e..8b93c0c09 100644 --- a/datasets/twstrend.data.mdx +++ b/datasets/twstrend.data.mdx @@ -8,8 +8,10 @@ media: author: name: NASA LIS url: -thematics: - - eis +taxonomy: + - name: Topics + values: + - EIS layers: - id: lis-tws-trend stacCol: lis-tws-trend diff --git a/discoveries/agriculture-food-security-east-africa.discoveries.mdx b/discoveries/agriculture-food-security-east-africa.discoveries.mdx index 7e09886b8..17e54b3ae 100644 --- a/discoveries/agriculture-food-security-east-africa.discoveries.mdx +++ b/discoveries/agriculture-food-security-east-africa.discoveries.mdx @@ -10,8 +10,10 @@ media: name: Damian Patkowski url: https://unsplash.com/photos/T-LfvX-7IVg pubDate: 2022-10-20 -thematics: - - agriculture +taxonomy: + - name: Topics + values: + - Agriculture --- diff --git a/discoveries/air-quality-and-covid-19.discoveries.mdx b/discoveries/air-quality-and-covid-19.discoveries.mdx index e123c1a10..ad7104001 100644 --- a/discoveries/air-quality-and-covid-19.discoveries.mdx +++ b/discoveries/air-quality-and-covid-19.discoveries.mdx @@ -10,8 +10,10 @@ media: name: Benjamin Voros url: https://unsplash.com/photos/U-Kty6HxcQc pubDate: 2020-12-01 -thematics: - - covid-19 +taxonomy: + - name: Topics + values: + - Covid 19 --- diff --git a/discoveries/air-quality-so2-volcanoes.discoveries.mdx b/discoveries/air-quality-so2-volcanoes.discoveries.mdx index e7f936acb..b981d1f18 100644 --- a/discoveries/air-quality-so2-volcanoes.discoveries.mdx +++ b/discoveries/air-quality-so2-volcanoes.discoveries.mdx @@ -10,8 +10,10 @@ media: name: Yosh Ginsu url: https://unsplash.com/photos/qexZLgMcbPc pubDate: 2023-01-25 -thematics: - - air-quality +taxonomy: + - name: Topics + values: + - Air Quality --- diff --git a/discoveries/biomass-harmonization-activity.discoveries.mdx b/discoveries/biomass-harmonization-activity.discoveries.mdx index 86e6c075d..d99f48538 100644 --- a/discoveries/biomass-harmonization-activity.discoveries.mdx +++ b/discoveries/biomass-harmonization-activity.discoveries.mdx @@ -9,8 +9,10 @@ media: name: Arnaud Mesureur url: https://unsplash.com/photos/7EqQ1s3wIAI pubDate: 2022-09-09 -thematics: - - biomass +taxonomy: + - name: Topics + values: + - Biomass --- diff --git a/discoveries/changing-landscapes.discoveries.mdx b/discoveries/changing-landscapes.discoveries.mdx index bec005740..4a39979af 100644 --- a/discoveries/changing-landscapes.discoveries.mdx +++ b/discoveries/changing-landscapes.discoveries.mdx @@ -9,8 +9,10 @@ media: name: Jared Murray url: https://unsplash.com/photos/NSuufgf-BME pubDate: 2020-12-01 -thematics: - - covid-19 +taxonomy: + - name: Topics + values: + - Covid 19 --- diff --git a/discoveries/coastal-flooding-and-slr.discoveries.mdx b/discoveries/coastal-flooding-and-slr.discoveries.mdx index 10aa1ffcb..9d745982d 100644 --- a/discoveries/coastal-flooding-and-slr.discoveries.mdx +++ b/discoveries/coastal-flooding-and-slr.discoveries.mdx @@ -10,8 +10,10 @@ media: name: Don Lodge url: https://unsplash.com/photos/P8PuYidUYMw pubDate: 2022-11-15 -thematics: - - eis +taxonomy: + - name: Topics + values: + - EIS --- diff --git a/discoveries/covid-climate.discoveries.mdx b/discoveries/covid-climate.discoveries.mdx index a0f73148c..573195994 100644 --- a/discoveries/covid-climate.discoveries.mdx +++ b/discoveries/covid-climate.discoveries.mdx @@ -9,8 +9,10 @@ media: name: Filip Zrnzević url: https://unsplash.com/photos/QsWG0kjPQRY pubDate: 2020-12-01 -thematics: - - covid-19 +taxonomy: + - name: Topics + values: + - Covid 19 --- diff --git a/discoveries/fire-life-cycle.discoveries.mdx b/discoveries/fire-life-cycle.discoveries.mdx index 2152e3bbe..1b42281f2 100644 --- a/discoveries/fire-life-cycle.discoveries.mdx +++ b/discoveries/fire-life-cycle.discoveries.mdx @@ -11,8 +11,10 @@ media: name: Lauren Dauphin/Landsat 8 url: https://eoimages.gsfc.nasa.gov/images/imagerecords/147000/147452/coloradofire752_oli_2020296_lrg.jpg pubDate: 2023-01-25 -thematics: - - eis +taxonomy: + - name: Topics + values: + - EIS --- diff --git a/discoveries/hurricane-maria-and-ida.discoveries.mdx b/discoveries/hurricane-maria-and-ida.discoveries.mdx index 73dc8679f..03bdf4028 100644 --- a/discoveries/hurricane-maria-and-ida.discoveries.mdx +++ b/discoveries/hurricane-maria-and-ida.discoveries.mdx @@ -6,8 +6,10 @@ featured: true media: src: ::file ./ej--discovery-cover.jpeg alt: Nighttime view of New Orleans -thematics: - - environmental-justice +taxonomy: + - name: Topics + values: + - Environmental Justice ---