Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
108 changes: 96 additions & 12 deletions esmvaltool/cmorizers/data/cmor_config/ESACCI-LST.yml
Original file line number Diff line number Diff line change
@@ -1,31 +1,115 @@
# CMORIZE ESA CCI LST
# Follwing CRU and ESACCI-OC as examples
# Only looking at AQUA MONTHLY data but python has placeholders for different platforms
# For MW datasets
---


# Common global attributes for Cmorizer output
attributes:
dataset_id: ESACCI-LST
version: '1.00'
version: '5.11'
tier: 2
project_id: OBS
source: 'ESA CCI'
modeling_realm: sat
reference: 'esacci_lst'
comment: ''
start_year: 2003
end_year: 2018
end_year: 2020

# Variables to cmorize
# These go into the vals dictionary in the python script
# decimal hours for overpass times
# ECT taken from https://space.oscar.wmo.int/satellites
# times with a comment are what is on the Oscar website (HHMM)
variables:
ts:
mip: Amon
# new variable format to match CCI Ozone approach
ts_amsre:
# mip: Eday for daily files, Amon for monthly
mip: Eday
raw: land surface temperature
raw_units: kelvin

# file_base for the start of the file, don't put the final - in the string
file_base: 'ESACCI-LST-L3C-LST'

# These parameters build the file name
platform: 'AMSR_E'
spatial_resolution: '0.125deg'
temporal_resolution: '1DAILY'
# MW datasets need ASC and DES
# IR datasets need DAY and NIGHT
ir_or_mw: 'mw'

asc_overpass_time: 2.30
des_overpass_time: 14.30

start_year: 2003
end_year: 2011

ts_amsr2:
# mip: Eday for daily files, Amon for monthly
mip: Eday
raw: land surface temperature
raw_units: kelvin

# file_base for the start of the file, don't put the final - in the string
file_base: 'ESACCI-LST-L3C-LST'

# These parameters build the file name
platform: 'AMSR_2'
spatial_resolution: '0.125deg'
temporal_resolution: '1DAILY'
# MW datasets need ASC and DES
# IR datasets need DAY and NIGHT
ir_or_mw: 'mw'

asc_overpass_time: 1.50
des_overpass_time: 13.50

start_year: 2013
end_year: 2020

ts_ssmi13:
# mip: Eday for daily files, Amon for monthly
mip: Eday
raw: land surface temperature
raw_units: kelvin
file_day: 'ESACCI-LST-L3C-LST-MODISA-0.05deg_1MONTHLY_DAY-'
file_night: 'ESACCI-LST-L3C-LST-MODISA-0.05deg_1MONTHLY_NIGHT-'
# plan to make it possible to change MODISA here but only placeholders in the python there for now
# Period covered: 2003-2018
# 2003 Only has data from July onwards for Aqua MODIS

# file_base for the start of the file, don't put the final - in the string
file_base: 'ESACCI-LST-L3C-LST'

# These parameters build the file name
platform: 'SSMI13'
spatial_resolution: '0.125deg'
temporal_resolution: '1DAILY'
# MW datasets need ASC and DES
# IR datasets need DAY and NIGHT
ir_or_mw: 'mw'

asc_overpass_time: 17.85
des_overpass_time: 5.85

start_year: 2003
end_year: 2008

ts_ssmi17:
# mip: Eday for daily files, Amon for monthly
mip: Eday
raw: land surface temperature
raw_units: kelvin

# file_base for the start of the file, don't put the final - in the string
file_base: 'ESACCI-LST-L3C-LST'

# These parameters build the file name
platform: 'SSMI17'
spatial_resolution: '0.125deg'
temporal_resolution: '1DAILY'
# MW datasets need ASC and DES
# IR datasets need DAY and NIGHT
ir_or_mw: 'mw'

asc_overpass_time: 18.58
des_overpass_time: 6.58

start_year: 2009
end_year: 2020
7 changes: 5 additions & 2 deletions esmvaltool/cmorizers/data/datasets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -516,17 +516,20 @@ datasets:
ESACCI-LST:
tier: 2
source: On CEDA-JASMIN, /gws/nopw/j04/esacci_lst/public
last_access: 2022-01-26
last_access: 2025-11-20
info: |
For access to this JASMIN group workspace please register at:
https://accounts.jasmin.ac.uk/services/group_workspaces/esacci_lst/
Older compatible versions are available from CEDA see:
https://data.ceda.ac.uk/neodc/esacci/land_surface_temperature/data
Download and processing instructions:
Put all files under a single directory (no subdirectories with years)
in ${RAWOBS}/Tier2/ESACCI-LST
BOTH DAY and NIGHT files are needed for each month

Caveats
Currently set to work with only the MODIS AQUA L3 monthly data
Works with daily MW data from V5.11 SSMI and AMSR Products (mip = Eday)
Works with monthly IR data from V3 MODIS: MODISA (Aqua) and MODIST (Terra) (mip = Amon)

ESACCI-OC:
tier: 2
Expand Down
Loading