From aaf2450dbea7859b9d631825e2f81a791ca93e46 Mon Sep 17 00:00:00 2001 From: j08lue Date: Thu, 21 Mar 2024 17:34:42 +0100 Subject: [PATCH] Replace latency with temporalResolution in layer info --- docs/content/frontmatter/layer.md | 6 +++--- mock/datasets/data-from-ghg.data.mdx | 2 +- mock/datasets/no2.data.mdx | 2 +- parcel-resolver-veda/index.d.ts | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/content/frontmatter/layer.md b/docs/content/frontmatter/layer.md index f32d35356..38b13ca76 100644 --- a/docs/content/frontmatter/layer.md +++ b/docs/content/frontmatter/layer.md @@ -268,7 +268,7 @@ Example: info: source: NASA spatialExtent: Global - latency: Monthly + temporalResolution: Monthly unit: 10¹⁵ molecules cm⁻² ``` @@ -280,9 +280,9 @@ This key indicates the origin or the provider of the data. `string` This key describes s the geographic coverage of the data. -**info.latency** +**info.temporalResolution** `string` -This key refers to the frequency with which the data is updated or made available. +This key describes the periodicity of the data. **info.unit** `string` diff --git a/mock/datasets/data-from-ghg.data.mdx b/mock/datasets/data-from-ghg.data.mdx index 5658a228f..be62e4dac 100644 --- a/mock/datasets/data-from-ghg.data.mdx +++ b/mock/datasets/data-from-ghg.data.mdx @@ -90,7 +90,7 @@ layers: info: source: NASA spatialExtent: Global - latency: Monthly + temporalResolution: Monthly unit: 10¹⁵ molecules cm⁻² - id: casa-gfed-co2-flux-hr stacApiEndpoint: https://ghg.center/api/stac diff --git a/mock/datasets/no2.data.mdx b/mock/datasets/no2.data.mdx index c68f9478a..49fc9ae11 100644 --- a/mock/datasets/no2.data.mdx +++ b/mock/datasets/no2.data.mdx @@ -107,7 +107,7 @@ layers: info: source: NASA spatialExtent: Global - latency: Monthly + temporalResolution: Monthly unit: 10¹⁵ molecules cm⁻² - id: no2-monthly-2 stacCol: no2-monthly diff --git a/parcel-resolver-veda/index.d.ts b/parcel-resolver-veda/index.d.ts index c242788b1..7b28fce3c 100644 --- a/parcel-resolver-veda/index.d.ts +++ b/parcel-resolver-veda/index.d.ts @@ -59,7 +59,7 @@ declare module 'veda' { export interface LayerInfo { source: string; spatialExtent: string; - latency: string; + temporalResolution: string; unit: string; } export interface DatasetLayer extends DatasetLayerCommonProps {