|
14 | 14 | "ds_copernicusmarine": xr.Dataset( |
15 | 15 | # Copernicus Marine Service dataset as retrieved by the `copernicusmarine` toolkit |
16 | 16 | { |
17 | | - "uo": (["depth", "latitude", "longitude", "time"], np.random.rand(T, Z, Y, X)), |
18 | | - "vo": (["depth", "latitude", "longitude", "time"], np.random.rand(T, Z, Y, X)), |
| 17 | + "uo": ( |
| 18 | + ["depth", "latitude", "longitude", "time"], |
| 19 | + np.random.rand(T, Z, Y, X), |
| 20 | + { |
| 21 | + "valid_max": 5.0, |
| 22 | + "unit_long": "Meters per second", |
| 23 | + "units": "m s-1", |
| 24 | + "long_name": "Eastward velocity", |
| 25 | + "standard_name": "eastward_sea_water_velocity", |
| 26 | + "valid_min": -5.0, |
| 27 | + }, |
| 28 | + ), |
| 29 | + "vo": ( |
| 30 | + ["depth", "latitude", "longitude", "time"], |
| 31 | + np.random.rand(T, Z, Y, X), |
| 32 | + { |
| 33 | + "valid_max": 5.0, |
| 34 | + "unit_long": "Meters per second", |
| 35 | + "units": "m s-1", |
| 36 | + "long_name": "Northward velocity", |
| 37 | + "standard_name": "northward_sea_water_velocity", |
| 38 | + "valid_min": -5.0, |
| 39 | + }, |
| 40 | + ), |
19 | 41 | }, |
20 | 42 | coords={ |
21 | 43 | "depth": ( |
|
0 commit comments