Skip to content

Downlowd for TCWV notebook #238

@CarboneLMD

Description

@CarboneLMD

Notebook description

Hi @malmans2,

I need to download all of this datas please :

# Set parameters
year_start = 2003
year_stop = 2017
area = [30, -180, -30, 180]



# Define requests
requests = {}

time_request = {
    "year": [str(year) for year in range(year_start, year_stop + 1)],
    "month": [f"{month:02d}" for month in range(1, 13)],
    "day": [f"{day:02d}" for day in range(1, 31 + 1)],
}

requests["satellite-total-column-water-vapour-land-ocean"] = time_request | {
    "product": "near_infrared_hoaps_combined",
    "horizontal_aggregation": ["0_5_x_0_5"],
    "temporal_aggregation": "daily",
    "variable": "all",
}
requests["satellite-cloud-properties"] = time_request | {
    "product_family": "clara_a3",
    "origin": "eumetsat",
    "variable": ["cloud_fraction"],
    "climate_data_record_type": "thematic_climate_data_record",
    "time_aggregation": "daily_mean",
    "area": area,
}
requests["reanalysis-era5-single-levels"] = time_request | {
    "variable": ["skin_temperature"],
    "product_type": ["reanalysis"],
    "time": ["00:00", "01:00", "02:00",
        "03:00", "04:00", "05:00",
        "06:00", "07:00", "08:00",
        "09:00", "10:00", "11:00",
        "12:00", "13:00", "14:00",
        "15:00", "16:00", "17:00",
        "18:00", "19:00", "20:00",
        "21:00", "22:00", "23:00"
    ],
    "area": area,
}
requests["satellite-earth-radiation-budget"] = time_request | {
    "product_family": "clara_a3",
    "origin": "eumetsat",
    "variable": ["outgoing_longwave_radiation"],
    "climate_data_record_type": "thematic_climate_data_record",
    "time_aggregation": "daily_mean",
    "area": area,
}

Is it possible to aggregate "reanalysis-era5-single-levels" into daily_mean ?

Thank you !

Notebook link or upload

No response

Anything else we need to know?

No response

Environment

Details

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions