Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Now you can conduct search based on the above unique values, such as below ( note the special character ^ means all entries whose time range starts with 1959 or 1960)

Code Block
catalog_subset = data_catalog.search(
    variable=["t","u","v","r","z","10u","10v","100u","100v","2t","sp","msl","tcwv"],
    product="era5-reanalysis",
    time_range=["1959^1959/*","1960^1960/*"],
    levtype=["sfc"])

It will produce a catalog subset

...