Skip to content

Commit

Permalink
Update SPEIbase Version 2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
B0RJA committed Aug 29, 2023
1 parent 70191fd commit 6282c13
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions catalog/CSIC/CSIC_SPEI_2_9.jsonnet
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
local id = 'CSIC/SPEI/2_8';
local version = '2.8';
local id = 'CSIC/SPEI/2_9';
local version = '2.9';
local subdir = 'CSIC';

local ee_const = import 'earthengine_const.libsonnet';
Expand Down Expand Up @@ -71,7 +71,7 @@ local self_ee_catalog_url = ee_const.ee_catalog_url + basename;
'https://spei.csic.es/'),
ee.host_provider(self_ee_catalog_url),
],
extent: ee.extent_global('1901-01-01T00:00:00Z', '2021-01-01T00:00:00Z'),
extent: ee.extent_global('1901-01-01T00:00:00Z', '2023-01-01T00:00:00Z'),
summaries: {
gsd: [55660],
'eo:bands': [
Expand Down Expand Up @@ -431,8 +431,8 @@ local self_ee_catalog_url = ee_const.ee_catalog_url + basename;
'sci:citation': |||
Product: Beguería, Santiago; Vicente Serrano, Sergio M.;
Reig-Gracia, Fergus; Latorre Garcés, Borja; 2023;
SPEIbase v.2.8 [Dataset]; DIGITAL.CSIC; Version 2.8.
[doi:10.20350/digitalCSIC/15121](https://doi.org/10.20350/digitalCSIC/15121)
SPEIbase v.2.9 [Dataset]; DIGITAL.CSIC; Version 2.9.
[doi:10.20350/digitalCSIC/15470](https://doi.org/10.20350/digitalCSIC/15470)
|||,
'sci:publications': [
{
Expand Down Expand Up @@ -461,8 +461,8 @@ local self_ee_catalog_url = ee_const.ee_catalog_url + basename;
Attribution should be given by referencing the document titled:
Beguería, Santiago; Vicente Serrano, Sergio M.; Reig-Gracia, Fergus;
Latorre Garcés, Borja; 2023;
SPEIbase v.2.8 [Dataset]; DIGITAL.CSIC; Version 2.8.
[doi:10.20350/digitalCSIC/15121](https://doi.org/10.20350/digitalCSIC/15121)
SPEIbase v.2.9 [Dataset]; DIGITAL.CSIC; Version 2.9.
[doi:10.20350/digitalCSIC/15470](https://doi.org/10.20350/digitalCSIC/15470)
|||,
'gee:user_uploaded': true,
}
4 changes: 2 additions & 2 deletions examples/CSIC/CSIC_SPEI_2_9.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Retrieve the last date from the SPEI dataset.
var dataset = ee.ImageCollection("CSIC/SPEI/2_8").
filterDate('2021-12-01', '2022-01-01');
var dataset = ee.ImageCollection('CSIC/SPEI/2_9').
filterDate('2022-12-01', '2023-01-01');

// Select the 24-month analysis.
var spei24 = dataset.select('SPEI_24_month');
Expand Down
4 changes: 2 additions & 2 deletions examples/CSIC/CSIC_SPEI_2_9_preview.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Retrieve the last date from the SPEI dataset.
var dataset = ee.ImageCollection('CSIC/SPEI/2_8').
filterDate('2021-12-01', '2022-01-01');
var dataset = ee.ImageCollection('CSIC/SPEI/2_9').
filterDate('2022-12-01', '2023-01-01');

// Select the 24-month analysis.
var et = dataset.select('SPEI_24_month').first();
Expand Down

0 comments on commit 6282c13

Please sign in to comment.