Skip to content

Commit aa01465

Browse files
Fixing dimension order in copernicusmarine dataset
1 parent 87bb34b commit aa01465

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

parcels/_datasets/structured/circulation_models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# Copernicus Marine Service dataset as retrieved by the `copernicusmarine` toolkit
1616
{
1717
"uo": (
18-
["depth", "latitude", "longitude", "time"],
18+
["time", "depth", "latitude", "longitude"],
1919
np.random.rand(T, Z, Y, X),
2020
{
2121
"valid_max": 5.0,
@@ -27,7 +27,7 @@
2727
},
2828
),
2929
"vo": (
30-
["depth", "latitude", "longitude", "time"],
30+
["time", "depth", "latitude", "longitude"],
3131
np.random.rand(T, Z, Y, X),
3232
{
3333
"valid_max": 5.0,

0 commit comments

Comments
 (0)