xcube-dev / xcube-cci

An xcube plugin to allow generating data cubes from the ESA CCI Open Data Portal
MIT License
2 stars 0 forks source link

Ocean Color Data not processed correctly #21

Closed AliceBalfanz closed 3 years ago

AliceBalfanz commented 3 years ago

When usin xucbe-cci to generate a dataset for dataset id esacci.OC.mon.L3S.CHLOR_A.multi-sensor.multi-platform.MERGED.3-1.geographic the resulting dataset shows no variation in time. After manually downloading the source files, they differ in time, so the problem is not located in the source data itself.

The data was requested with the following .json configuration:

{
  "input_configs": [
    {
      "store_id": "@cciodp",
      "data_id": "esacci.OC.mon.L3S.CHLOR_A.multi-sensor.multi-platform.MERGED.3-1.geographic",
      "open_params": {}
    }
  ],
  "cube_config": {
    "variable_names": [
      "chlor_a"
    ],
    "bbox": [
      -180,
      -90,
      180,
      90
    ],
    "spatial_res": 0.041666666666666664,
    "crs": "WGS84",
    "time_range": [
      "2008-01-01",
      "2009-01-01"
    ],
    "time_period": "1M"
  },
  "output_config": {
    "store_id": "s3",
    "data_id": "cci-OC_chlor_a.zarr",
    "store_params": {
      "bucket_name": "eurodatacube-scratch",
      "aws_access_key_id": "",
      "aws_secret_access_key": ""
    }
  }
}