Skip to content

API

Grid

xgcm.Grid

An object with multiple :class:xgcm.Axis objects representing different independent axes.

Source code in xgcm/grid.py
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
class Grid:
    """
    An object with multiple :class:`xgcm.Axis` objects representing different
    independent axes.
    """

    _facedim: Optional[str]
    _face_connections: Optional[Dict[str, Any]]
    _ds: xr.Dataset
    _metrics: Dict[Tuple[str, ...], List[xr.DataArray]]

    def __init__(
        self,
        ds: xr.Dataset,
        coords: Optional[Mapping[str, Mapping[str, str]]] = None,
        periodic: bool = True,
        fill_value: Optional[Union[float, Mapping[str, float]]] = None,
        default_shifts: Optional[
            Mapping[str, str]
        ] = None,  # TODO check if one default shift can be applied to many Axes
        boundary: Optional[Union[str, Mapping[str, str]]] = None,
        face_connections: Optional[
            Dict[str, Any]
        ] = None,  # TODO: add more specific typing
        metrics: Optional[Mapping[Tuple[str], List[str]]] = None,  # TODO type hint this
        autoparse_metadata: bool = True,
    ):
        """
        Create a new Grid object from an input dataset.

        Parameters
        ----------
        ds : xarray.Dataset
            Contains the relevant grid information. Coordinate attributes
            should conform to Comodo conventions [1]_.
        coords : dict, optional
            Specifies positions of dimension names along axes X, Y, Z, e.g
            ``{'X': {'center': 'XC', 'left: 'XG'}}``.
            Each key should be an axis name (e.g., `X`, `Y`, or `Z`) and map
            to a dictionary which maps positions (`center`, `left`, `right`,
            `outer`, `inner`) to dimension names in the dataset
            (in the example above, `XC` is at the `center` position and `XG`
            at the `left` position along the `X` axis).
            If the values are not present in ``ds`` or are not dimensions,
            an error will be raised.
        periodic : {True, False, list}
            Whether the grid is periodic (i.e. "wrap-around"). If a list is
            specified (e.g. ``['X', 'Y']``), the axis names in the list will be
            periodic and any other axes founds will be assumed non-periodic.
        fill_value : {float, dict}, optional
            The value to use in boundary conditions with `boundary='fill'`.
            Optionally a dict mapping axis name to seperate values for each axis
            can be passed.
        default_shifts : dict
            A dictionary of dictionaries specifying default grid position
            shifts (e.g. ``{'X': {'center': 'left', 'left': 'center'}}``)
        boundary : {None, 'fill', 'extend', 'periodic', dict}, optional
            A flag indicating how to handle boundaries:

            * None:  Do not apply any boundary conditions. Raise an error if
              boundary conditions are required for the operation.
            * 'fill':  Set values outside the array boundary to fill_value
              (i.e. a Dirichlet boundary condition.)
            * 'extend': Set values outside the array to the nearest array
              value. (i.e. a limited form of Neumann boundary condition.)
            * 'periodic': Set values by wrapping around the array on the specified
                axes. (i.e. a periodic boundary condition.)
            Optionally a dict mapping axis name to seperate values for each axis
            can be passed.
        face_connections : dict
            Grid topology
        metrics : dict, optional
            Specification of grid metrics mapping axis names (X, Y, Z) to corresponding
            metric variable names in the dataset
            (e.g. {('X',):['dx_t'], ('X', 'Y'):['area_tracer', 'area_u']}
            for the cell distance in the x-direction ``dx_t`` and the
            horizontal cell areas ``area_tracer`` and ``area_u``, located at
            different grid positions).

        REFERENCES
        ----------
        .. [1] Comodo Conventions https://web.archive.org/web/20160417032300/http://pycomodo.forge.imag.fr/norm.html
        """
        if not isinstance(ds, xr.Dataset):
            raise TypeError(
                f"ds argument to `xgcm.Grid` must be of type xarray.Dataset, but is of type {type(ds)}"
            )

        self._ds = ds

        # Attempt to autoparse metadata from various conventions
        # Default is to do this to preserve backwards compatability
        if autoparse_metadata:
            ds, parsed_kwargs = metadata_parsers.parse_metadata(ds)

            # Loop over input kwargs. If None and parsed alternative available
            # then replace local variable with autoparsed. If conflict raise error.
            duplicates = []
            if "coords" in parsed_kwargs:
                if coords is None:
                    coords = parsed_kwargs["coords"]
                else:
                    duplicates.append("coords")
            if "fill_value" in parsed_kwargs:
                if fill_value is None:
                    fill_value = parsed_kwargs["fill_value"]
                else:
                    duplicates.append("fill_value")
            if "default_shifts" in parsed_kwargs:
                if default_shifts is None:
                    default_shifts = parsed_kwargs["default_shifts"]
                else:
                    duplicates.append("default_shifts")
            if "boundary" in parsed_kwargs:
                if boundary is None:
                    boundary = parsed_kwargs["boundary"]
                else:
                    duplicates.append("boundary")
            if "face_connections" in parsed_kwargs:
                if face_connections is None:
                    face_connections = parsed_kwargs["face_connections"]
                else:
                    duplicates.append("face_connections")
            if "metrics" in parsed_kwargs:
                if metrics is None:
                    metrics = parsed_kwargs["metrics"]
                else:
                    duplicates.append("metrics")

            if len(duplicates) > 0:
                raise ValueError(
                    f"Autoparsed Grid kwargs: '{', '.join(duplicates)}' conflict with "
                    f"user-supplied kwargs. Run with 'autoparse_metadata=False', or "
                    f"autoparse and amend kwargs before calling Grid constructer."
                )

        if boundary:
            warnings.warn(
                "The `boundary` argument will be renamed "
                "to `padding` to better reflect the process "
                "of array padding and avoid confusion with "
                "physical boundary conditions (e.g. ocean land boundary).",
                category=DeprecationWarning,
            )

        # Deprecation Warnigns
        if periodic:
            warnings.warn(
                "The `periodic` argument will be deprecated. "
                "To preserve previous behavior supply `boundary = 'periodic'.",
                category=DeprecationWarning,
            )

        if fill_value:
            warnings.warn(
                "The default fill_value will be changed to nan (from 0.0 previously) "
                "in future versions. Provide `fill_value=0.0` to preserve previous behavior.",
                category=DeprecationWarning,
            )

        if coords is None:
            raise ValueError(
                "Could not determine Axis names - please provide them in the coords kwarg "
                "or provide a dataset from which they can be parsed"
            )

        all_axes = coords.keys()

        # Convert all inputs to axes-kwarg mappings
        # TODO We need a way here to check valid input. Maybe also in _as_axis_kwargs?
        # Parse axis properties
        boundary_dict = self._map_kwargs_over_axes(boundary, axes=all_axes)
        # TODO: In the future we want this the only place where we store these.
        # TODO: This info needs to then be accessible to e.g. pad()

        # Parse list input. This case does only apply to periodic.
        # Since we plan on deprecating it soon handle it here, so we can easily
        # remove it later
        if isinstance(periodic, list):
            periodic_dict = {axname: True for axname in periodic}
        else:
            periodic_dict = self._map_kwargs_over_axes(periodic, axes=all_axes)

        for ax, p in periodic_dict.items():
            if boundary_dict[ax] is None:
                if p is True:
                    boundary_dict[ax] = "periodic"
                else:
                    boundary_dict[ax] = "fill"

        default_shifts_dict = self._map_kwargs_over_axes(default_shifts, axes=all_axes)

        fill_value_dict = self._map_kwargs_over_axes(fill_value, axes=all_axes)

        # Set properties on grid object.
        if face_connections is not None and face_connections:
            self._facedim = list(face_connections.keys())[0]
            self._face_connections = face_connections
        else:
            self._facedim = None
            self._face_connections = None
        # TODO: I think of the face connection data as grid not axes properties, since they almost by defintion
        # TODO: involve multiple axes. In a future PR we should remove this info from the axes
        # TODO: but make sure to properly port the checking functionality!

        # Populate axes. Much of this is just for backward compatibility.
        self.axes = OrderedDict()
        for axis_name in all_axes:
            self.axes[axis_name] = Axis(
                ds,
                axis_name,
                coords=coords[axis_name],
                default_shifts=default_shifts_dict.get(axis_name, None),
                boundary=boundary_dict.get(axis_name, None),
                fill_value=fill_value_dict.get(axis_name, None),
            )

        if face_connections is not None:
            self._assign_face_connections(face_connections)

        self._metrics = {}

        if metrics is not None:
            for key, value in metrics.items():
                self.set_metrics(key, value)

    def _map_kwargs_over_axes(
        self,
        kwargs: Union[Any, Dict[str, Any]],
        axes: Optional[Iterable[str]] = None,
    ) -> Dict[str, Any]:
        """Convert kwarg input into dict for each available axis
        E.g. for a grid with 2 axes for the keyword argument `periodic`
        periodic = True --> periodic = {'X': True, 'Y':True}
        or if not all axes are provided, the other axes will be parsed as defaults (None)
        periodic = {'X':True} --> periodic={'X': True, 'Y':None}
        """
        if axes is None:
            axes = self.axes

        mapped_kwargs: Dict[str, Any] = dict()

        if isinstance(kwargs, dict):
            mapped_kwargs = kwargs
        else:
            for axname in axes:
                mapped_kwargs[axname] = kwargs

        return mapped_kwargs

    def _complete_user_kwargs_using_axis_defaults(
        self,
        user_kwargs: Union[Any, Dict[str, Any]],
        property: str,
    ) -> Dict[str, Any]:
        """
        Takes user choice of values for a given kwarg, and returns full per-axis mapping of kwargs,
        filling in with Axis defaults when needed.
        """

        defaults = {ax: getattr(self.axes[ax], property) for ax in self.axes}
        if user_kwargs is not None:
            user_kwargs = self._map_kwargs_over_axes(user_kwargs)
            user_kwargs = defaults | user_kwargs
        else:
            user_kwargs = defaults

        return user_kwargs

    def _assign_face_connections(self, fc):
        """Check a dictionary of face connections to make sure all the links are
        consistent.
        """

        if len(fc) > 1:
            raise ValueError(
                "Only one face dimension is supported for now. "
                "Instead found %r" % repr(fc.keys())
            )

        # we will populate this with the axes we find in face_connections
        axis_connections = {}

        facedim = list(fc.keys())[0]
        if facedim not in self._ds.dims:
            raise ValueError(
                f"Face dimension {facedim} does not exist in the dataset. Found {list(self._ds.dims)} instead"
            )

        face_links = fc[facedim]
        for fidx, face_axis_links in face_links.items():
            for axis, axis_links in face_axis_links.items():
                # initialize the axis dict if necssary
                if axis not in axis_connections:
                    axis_connections[axis] = {}
                link_left, link_right = axis_links

                def check_neighbor(link, position):
                    if link is None:
                        return
                    idx, ax, rev = link
                    # need to swap position if the link is reversed
                    correct_position = int(not position) if rev else position
                    try:
                        neighbor_link = face_links[idx][ax][correct_position]
                    except (KeyError, IndexError):
                        raise KeyError(
                            "Couldn't find a face link for face %r"
                            "in axis %r at position %r" % (idx, ax, correct_position)
                        )
                    idx_n, ax_n, rev_n = neighbor_link
                    if ax not in self.axes:
                        raise KeyError("axis %r is not a valid axis" % ax)
                    if ax_n not in self.axes:
                        raise KeyError("axis %r is not a valid axis" % ax_n)
                    if idx not in self._ds[facedim].values:
                        raise IndexError(
                            "%r is not a valid index for face"
                            "dimension %r" % (idx, facedim)
                        )
                    if idx_n not in self._ds[facedim].values:
                        raise IndexError(
                            "%r is not a valid index for face"
                            "dimension %r" % (idx, facedim)
                        )
                    # check for consistent links from / to neighbor
                    if (idx_n != fidx) or (ax_n != axis) or (rev_n != rev):
                        raise ValueError(
                            "Face link mismatch: neighbor doesn't"
                            " correctly link back to this face. "
                            "face: %r, axis: %r, position: %r, "
                            "rev: %r, link: %r, neighbor_link: %r"
                            % (fidx, axis, position, rev, link, neighbor_link)
                        )
                    # convert the axis name to an acutal axis object
                    actual_axis = self.axes[ax]
                    return idx, actual_axis, rev

                left = check_neighbor(link_left, 1)
                right = check_neighbor(link_right, 0)
                axis_connections[axis][fidx] = (left, right)

        for axis, axis_links in axis_connections.items():
            self.axes[axis]._facedim = facedim
            self.axes[axis]._face_connections = axis_links

    def set_metrics(self, key, value, overwrite=False):
        metric_axes = frozenset(_maybe_promote_str_to_list(key))
        axes_not_found = [ma for ma in metric_axes if ma not in self.axes]
        if len(axes_not_found) > 0:
            raise KeyError(
                f"Metric axes {axes_not_found!r} not compatible with grid axes {tuple(self.axes)!r}"
            )

        metric_value = _maybe_promote_str_to_list(value)
        for metric_varname in metric_value:
            if metric_varname not in self._ds.variables:
                raise KeyError(
                    f"Metric variable {metric_varname} not found in dataset."
                )

        existing_metric_axes = set(self._metrics.keys())
        if metric_axes in existing_metric_axes:
            value_exist = self._metrics.get(metric_axes)
            # resetting coords avoids potential broadcasting / alignment issues
            value_new = self._ds[metric_varname].reset_coords(drop=True)
            did_overwrite = False
            # go through each existing value until data array with matching dimensions is selected
            for idx, ve in enumerate(value_exist):
                # double check if dimensions match
                if set(value_new.dims) == set(ve.dims):
                    if overwrite:
                        # replace existing data array with new data array input
                        self._metrics[metric_axes][idx] = value_new
                        did_overwrite = True
                    else:
                        raise ValueError(
                            f"Metric variable {ve.name} with dimensions {ve.dims} already assigned in metrics."
                            f" Overwrite {ve.name} with {metric_varname} by setting overwrite=True."
                        )
            # if no existing value matches new value dimension-wise, just append new value
            if not did_overwrite:
                self._metrics[metric_axes].append(value_new)
        else:
            # no existing metrics for metric_axes yet; initialize empty list
            self._metrics[metric_axes] = []
            for metric_varname in metric_value:
                metric_var = self._ds[metric_varname].reset_coords(drop=True)
                self._metrics[metric_axes].append(metric_var)

    def _get_dims_from_axis(self, da: xr.DataArray, axis: Iterable[str]) -> List[str]:
        da = _maybe_unpack_vector_component(da)
        dim = []
        axis = _maybe_promote_str_to_list(axis)
        for ax in axis:
            if ax in self.axes:
                all_dim = self.axes[ax].coords.values()
                matching_dim = [di for di in all_dim if di in da.dims]
                if len(matching_dim) == 1:
                    dim.append(matching_dim[0])
                else:
                    raise ValueError(
                        f"Did not find single matching dimension {da.dims} from {da.name} corresponding to axis {ax}, got {matching_dim}."
                    )
            else:
                raise KeyError(f"Did not find axis {ax} from data array {da.name}")
        return dim

    def get_metric(self, array, axes):
        """
        Find the metric variable associated with a set of axes for a particular
        array.

        Parameters
        ----------
        array : xarray.DataArray
            The array for which we are looking for a metric. Only its dimensions are considered.
        axes : iterable
            A list of axes for which to find the metric.

        Returns
        -------
        metric : xarray.DataArray
            A metric which can broadcast against ``array``
        """

        metric_vars = None
        array_dims = set(array.dims)

        # Will raise a Value Error if array doesn't have a dimension corresponding to metric axes specified
        # See _get_dims_from_axis
        self._get_dims_from_axis(array, frozenset(axes))

        possible_metric_vars = set(tuple(k) for k in self._metrics.keys())
        possible_combos = set(itertools.permutations(tuple(axes)))
        overlap_metrics = possible_metric_vars.intersection(possible_combos)

        if len(overlap_metrics) > 0:
            # Condition 1: metric with matching axes and dimensions exist
            overlap_metrics = frozenset(*overlap_metrics)
            possible_metrics = self._metrics[overlap_metrics]
            for mv in possible_metrics:
                metric_dims = set(mv.dims)
                if metric_dims.issubset(array_dims):
                    metric_vars = mv
                    break
            if metric_vars is None:
                # Condition 2: interpolate metric with matching axis to desired dimensions
                warnings.warn(
                    f"Metric at {array.dims} being interpolated from metrics at dimensions {mv.dims}. Boundary value set to 'extend'."
                )
                metric_vars = self.interp_like(mv, array, "extend", None)
        else:
            for axis_combinations in iterate_axis_combinations(axes):
                try:
                    # will raise KeyError if the axis combination is not in metrics
                    possible_metric_vars = [
                        self._metrics[ac] for ac in axis_combinations
                    ]
                    for possible_combinations in itertools.product(
                        *possible_metric_vars
                    ):
                        metric_dims = set(
                            [d for mv in possible_combinations for d in mv.dims]
                        )
                        if metric_dims.issubset(array_dims):
                            # Condition 3: use provided metrics with matching dimensions to calculate for required metric
                            metric_vars = possible_combinations
                            break
                        else:
                            # Condition 4: metrics in the wrong position (must interpolate before multiplying)
                            possible_dims = [pc.dims for pc in possible_combinations]
                            warnings.warn(
                                f"Metric at {array.dims} being interpolated from metrics at dimensions {possible_dims}. Boundary value set to 'extend'."
                            )
                            metric_vars = tuple(
                                self.interp_like(pc, array, "extend", None)
                                for pc in possible_combinations
                            )
                    if metric_vars is not None:
                        # return the product of the metrics
                        metric_vars = functools.reduce(operator.mul, metric_vars, 1)
                        break
                except KeyError:
                    pass
        if metric_vars is None:
            raise KeyError(
                f"Unable to find any combinations of metrics for array dims {array_dims!r} and axes {axes!r}"
            )
        return metric_vars

    def interp_like(self, array, like, boundary=None, fill_value=None):
        """Compares positions between two data arrays and interpolates array to the position of like if necessary

        Parameters
        ----------
        array : DataArray
            DataArray to interpolate to the position of like
        like : DataArray
            DataArray with desired grid positions for source array
        boundary : {None, 'fill', 'extend', 'periodic', dict}, optional
            A flag indicating how to handle boundaries:

            * None:  Do not apply any boundary conditions. Raise an error if
              boundary conditions are required for the operation.
            * 'fill':  Set values outside the array boundary to fill_value
              (i.e. a Dirichlet boundary condition.)
            * 'extend': Set values outside the array to the nearest array
              value. (i.e. a limited form of Neumann boundary condition.)
            * 'periodic': Set values by wrapping around the array on the specified
                axes. (i.e. a periodic boundary condition.)
            Optionally a dict mapping axis name to seperate values for each axis
            can be passed.
        fill_value : float, optional
            The value to use in the boundary condition when `boundary='fill'`.

        Returns
        -------
        array : DataArray
            Source data array with updated positions along axes matching with target array
        """

        interp_axes = []
        for axname, axis in self.axes.items():
            try:
                position_array, _ = axis._get_position_name(array)
                position_like, _ = axis._get_position_name(like)
            # This will raise a KeyError if you have multiple axes contained in self,
            # since the for-loop will go through all axes, but the method is applied for only 1 axis at a time
            # This is for cases where an axis is present in self that is not available for either array or like.
            # For the axis you are interested in interpolating, there should be data for it in grid, array, and like.
            except KeyError:
                continue
            if position_like != position_array:
                interp_axes.append(axname)

        array = self.interp(
            array,
            interp_axes,
            fill_value=fill_value,
            boundary=boundary,
        )
        return array

    def __repr__(self):
        summary = ["<xgcm.Grid>"]
        for name, axis in self.axes.items():
            is_periodic = "periodic" if axis._periodic else "not periodic"
            summary.append(
                "%s Axis (%s, boundary=%r):" % (name, is_periodic, axis.boundary)
            )
            summary += axis._coord_desc()
        return "\n".join(summary)

    def _1d_grid_ufunc_dispatch(
        self,
        funcname,
        data: Union[xr.DataArray, Dict[str, xr.DataArray]],
        axis,
        to=None,
        keep_coords=False,
        metric_weighted: Optional[
            Union[str, Iterable[str], Dict[str, Union[str, Iterable[str]]]]
        ] = None,
        other_component: Optional[Dict[str, xr.DataArray]] = None,
        **kwargs,
    ):
        """
        Calls appropriate 1D grid ufuncs on data, along the specified axes, sequentially.

        Parameters
        ----------
        axis : str or list or tuple
            Name of the axis on which to act. Multiple axes can be passed as list or
            tuple (e.g. ``['X', 'Y']``). Functions will be executed over each axis in the
            given order.
        to : str or dict, optional
            The direction in which to shift the array (can be ['center','left','right','inner','outer']).
            Can be passed as a single str to use for all axis, or as a dict with separate values for each axis.
            If not specified, the `default_shifts` stored in each Axis object will be used for that axis.
        """

        if isinstance(axis, str):
            axis = [axis]

        # This function is restricted to a single data input, so we need to check the input validity
        # here early.
        # TODO: This will fail if a sequence of inputs is passed, but not with a very helpful error
        # TODO: message. @TOM do you think it is worth to check the type and raise another error in that case?
        data = _check_data_input(data, self)

        # Unpack data for various steps below
        data_unpacked = _maybe_unpack_vector_component(data)

        # convert input arguments into axes-kwarg mappings
        to = self._map_kwargs_over_axes(to)

        if isinstance(metric_weighted, str):
            metric_weighted = (metric_weighted,)
        metric_weighted = self._map_kwargs_over_axes(metric_weighted)

        signatures = self._create_1d_grid_ufunc_signatures(
            data_unpacked, axis=axis, to=to
        )

        # if any dims are chunked then we need dask
        if isinstance(data_unpacked.data, Dask_Array):
            dask = "parallelized"
        else:
            dask = "forbidden"

        if isinstance(data, dict):
            array = {k: v.copy(deep=False) for k, v in data.items()}
        else:
            # Need to copy to avoid modifying in-place. Ideally we would test for this behaviour specifically
            array = data.copy(deep=False)

        # Apply 1D function over multiple axes
        # TODO This will call xarray.apply_ufunc once for each axis, but if signatures + kwargs are the same then we
        # TODO only actually need to call apply_ufunc once for those axes
        for signature_1d, ax_name in zip(signatures, axis):
            grid_ufunc, remaining_kwargs = _select_grid_ufunc(
                funcname, signature_1d, module=gridops, **kwargs
            )
            ax_metric_weighted = metric_weighted[ax_name]

            if ax_metric_weighted:
                metric = self.get_metric(array, ax_metric_weighted)
                array = array * metric

            # if chunked along core dim then we need map_overlap
            core_dim = self._get_dims_from_axis(data, ax_name)
            if _has_chunked_core_dims(data_unpacked, core_dim):
                # cumsum is a special case because it can't be correctly applied chunk-wise with map_overlap
                # (it would need blockwise instead)
                map_overlap = True if funcname != "cumsum" else False
                dask = "allowed"
            else:
                map_overlap = False

            array = grid_ufunc(
                self,
                array,
                axis=[(ax_name,)],
                keep_coords=keep_coords,
                dask=dask,
                map_overlap=map_overlap,
                other_component=other_component,
                **remaining_kwargs,
            )

            if ax_metric_weighted:
                metric = self.get_metric(array, ax_metric_weighted)
                array = array / metric

        return self._transpose_to_keep_same_dim_order(data_unpacked, array, axis)

    def _create_1d_grid_ufunc_signatures(
        self, da, axis, to
    ) -> List[_GridUFuncSignature]:
        """
        Create a list of signatures to pass to apply_grid_ufunc.

        Created from data, list of input axes, and list of target axis positions.
        One separate signature is created for each axis the 1D ufunc is going to be applied over.
        """

        signatures = []
        for ax_name in axis:
            ax = self.axes[ax_name]

            from_pos, _ = ax._get_position_name(da)  # removed `dim` since it wasnt used

            to_pos = to[ax_name]
            if to_pos is None:
                to_pos = ax._default_shifts[from_pos]

            # TODO build this more directly?
            signature_1d = _GridUFuncSignature.from_string(
                f"({ax_name}:{from_pos})->({ax_name}:{to_pos})"
            )
            signatures.append(signature_1d)

        return signatures

    def _transpose_to_keep_same_dim_order(self, da, result, axis):
        """Reorder DataArray dimensions to match the original input."""

        initial_dims = da.dims

        shifted_dims = {}
        for ax_name in axis:
            ax = self.axes[ax_name]

            _, old_dim = ax._get_position_name(da)
            _, new_dim = ax._get_position_name(result)
            shifted_dims[old_dim] = new_dim

        output_dims_but_in_original_order = [
            shifted_dims[dim] if dim in shifted_dims else dim for dim in initial_dims
        ]

        return result.transpose(*output_dims_but_in_original_order)

    def apply_as_grid_ufunc(
        self,
        func: Callable,
        *args: xr.DataArray,
        axis: Optional[Sequence[Sequence[str]]] = None,
        signature: Union[str, _GridUFuncSignature] = "",
        boundary_width: Optional[Mapping[str, Tuple[int, int]]] = None,
        boundary: Optional[Union[str, Mapping[str, str]]] = None,
        fill_value: Optional[Union[float, Mapping[str, float]]] = None,
        dask: Literal["forbidden", "parallelized", "allowed"] = "forbidden",
        map_overlap: bool = False,
        **kwargs,
    ):
        """
        Apply a function to the given arguments in a grid-aware manner.

        The relationship between xgcm axes on the input and output are specified by
        `signature`. Wraps xarray.apply_ufunc, but determines the core dimensions
        from the grid and signature passed.

        Parameters
        ----------
        func : callable
            Function to call like `func(*args, **kwargs)` on numpy-like unlabeled
            arrays (`.data`).

            Passed directly on to `xarray.apply_ufunc`.
        *args : xarray.DataArray
            One or more xarray DataArray objects to apply the function to.
        axis : Sequence[Sequence[str]], optional
            Names of xgcm.Axes on which to act, for each array in args. Multiple axes can be passed as a sequence (e.g. ``['X', 'Y']``).
            Function will be executed over all Axes simultaneously, and each Axis must be present in the Grid.
        signature : string
            Grid universal function signature. Specifies the xgcm.Axis names and
            positions for each input and output variable, e.g.,

            ``"(X:center)->(X:left)"`` for ``diff_center_to_left(a)``.
        boundary_width : Dict[str: Tuple[int, int]
            The widths of the boundaries at the edge of each array.
            Supplied in a mapping of the form {axis_name: (lower_width, upper_width)}.
        boundary : {None, 'fill', 'extend', 'periodic', dict}, optional
            A flag indicating how to handle boundaries:

            * None:  Do not apply any boundary conditions. Raise an error if
              boundary conditions are required for the operation.
            * 'fill':  Set values outside the array boundary to fill_value
              (i.e. a Dirichlet boundary condition.)
            * 'extend': Set values outside the array to the nearest array
              value. (i.e. a limited form of Neumann boundary condition.)
            * 'periodic': Set values by wrapping around the array on the specified
                axes. (i.e. a periodic boundary condition.)
            Optionally a dict mapping axis name to seperate values for each axis
            can be passed.
        fill_value : {float, dict}, optional
            The value to use in boundary conditions with `boundary='fill'`.
            Optionally a dict mapping axis name to separate values for each axis
            can be passed. Default is 0.
        dask : {"forbidden", "allowed", "parallelized"}, default: "forbidden"
            How to handle applying to objects containing lazy data in the form of
            dask arrays. Passed directly on to `xarray.apply_ufunc`.
        map_overlap : bool, optional
            Whether or not to automatically apply the function along chunked core dimensions using dask.array.map_overlap.
            Default is False. If True, will need to be accompanied by dask='allowed'.

        Returns
        -------
        results
            The result of the call to `xarray.apply_ufunc`, but including the coordinates
            given by the signature, which are read from the grid. Output is either a single
            object or a tuple of such objects.

        See Also
        --------
        apply_as_grid_ufunc
        as_grid_ufunc
        """
        return apply_as_grid_ufunc(
            func,
            *args,
            axis=axis,
            grid=self,
            signature=signature,
            boundary_width=boundary_width,
            boundary=boundary,
            fill_value=fill_value,
            dask=dask,
            map_overlap=map_overlap,
            **kwargs,
        )

    def interp(self, da, axis, **kwargs):
        """
        Interpolate neighboring points to the intermediate grid point along
        this axis.


        Parameters
        ----------
        axis : str or list or tuple
            Name of the axis on which to act. Multiple axes can be passed as list or
            tuple (e.g. ``['X', 'Y']``). Functions will be executed over each axis in the
            given order.
        to : str or dict, optional
            The direction in which to shift the array (can be ['center','left','right','inner','outer']).
            If not specified, default will be used.
            Optionally a dict with seperate values for each axis can be passed (see example)
        boundary : None or str or dict, optional
            A flag indicating how to handle boundaries:

            * None:  Do not apply any boundary conditions. Raise an error if
              boundary conditions are required for the operation.
            * 'fill':  Set values outside the array boundary to fill_value
              (i.e. a Dirichlet boundary condition.)
            * 'extend': Set values outside the array to the nearest array
              value. (i.e. a limited form of Neumann boundary condition.)

            Optionally a dict with separate values for each axis can be passed (see example)
        fill_value : {float, dict}, optional
            The value to use in the boundary condition with `boundary='fill'`.
            Optionally a dict with seperate values for each axis can be passed (see example)
        vector_partner : dict, optional
            A single key (string), value (DataArray).
            Optionally a dict with seperate values for each axis can be passed (see example)
        metric_weighted : str or tuple of str or dict, optional
            Optionally use metrics to multiply/divide with appropriate metrics before/after the operation.
            E.g. if passing `metric_weighted=['X', 'Y']`, values will be weighted by horizontal area.
            If `False` (default), the points will be weighted equally.
            Optionally a dict with seperate values for each axis can be passed.

        Returns
        -------
        da_i : xarray.DataArray
            The interpolated data

        Examples
        --------
        Each keyword argument can be provided as a `per-axis` dictionary. For instance,
        if a global 2D dataset should be interpolated on both X and Y axis, but it is
        only periodic in the X axis, we can do this:

        >>> grid.interp(da, ["X", "Y"], periodic={"X": True, "Y": False})
        """
        return self._1d_grid_ufunc_dispatch("interp", da, axis, **kwargs)

    def diff(self, da, axis, **kwargs):
        """
        Difference neighboring points to the intermediate grid point.

        Parameters
        ----------
        axis : str or list or tuple
            Name of the axis on which to act. Multiple axes can be passed as list or
            tuple (e.g. ``['X', 'Y']``). Functions will be executed over each axis in the
            given order.
        to : str or dict, optional
            The direction in which to shift the array (can be ['center','left','right','inner','outer']).
            If not specified, default will be used.
            Optionally a dict with seperate values for each axis can be passed (see example)
        boundary : None or str or dict, optional
            A flag indicating how to handle boundaries:

            * None:  Do not apply any boundary conditions. Raise an error if
              boundary conditions are required for the operation.
            * 'fill':  Set values outside the array boundary to fill_value
              (i.e. a Dirichlet boundary condition.)
            * 'extend': Set values outside the array to the nearest array
              value. (i.e. a limited form of Neumann boundary condition.)

            Optionally a dict with separate values for each axis can be passed (see example)
        fill_value : {float, dict}, optional
            The value to use in the boundary condition with `boundary='fill'`.
            Optionally a dict with seperate values for each axis can be passed (see example)
        vector_partner : dict, optional
            A single key (string), value (DataArray).
            Optionally a dict with seperate values for each axis can be passed (see example)
        metric_weighted : str or tuple of str or dict, optional
            Optionally use metrics to multiply/divide with appropriate metrics before/after the operation.
            E.g. if passing `metric_weighted=['X', 'Y']`, values will be weighted by horizontal area.
            If `False` (default), the points will be weighted equally.
            Optionally a dict with seperate values for each axis can be passed.

        Returns
        -------
        da_i : xarray.DataArray
            The differenced data

        Examples
        --------
        Each keyword argument can be provided as a `per-axis` dictionary. For instance,
        if a global 2D dataset should be differenced on both X and Y axis, but the fill
        value at the boundary should be differenc for each axis, we can do this:

        >>> grid.diff(da, ["X", "Y"], fill_value={"X": 0, "Y": 100})
        """
        return self._1d_grid_ufunc_dispatch("diff", da, axis, **kwargs)

    def min(self, da, axis, **kwargs):
        """
        Minimum of neighboring points on the intermediate grid point.

                Parameters
        ----------
        axis : str or list or tuple
            Name of the axis on which to act. Multiple axes can be passed as list or
            tuple (e.g. ``['X', 'Y']``). Functions will be executed over each axis in the
            given order.
        to : str or dict, optional
            The direction in which to shift the array (can be ['center','left','right','inner','outer']).
            If not specified, default will be used.
            Optionally a dict with seperate values for each axis can be passed (see example)
        boundary : None or str or dict, optional
            A flag indicating how to handle boundaries:

            * None:  Do not apply any boundary conditions. Raise an error if
              boundary conditions are required for the operation.
            * 'fill':  Set values outside the array boundary to fill_value
              (i.e. a Dirichlet boundary condition.)
            * 'extend': Set values outside the array to the nearest array
              value. (i.e. a limited form of Neumann boundary condition.)

            Optionally a dict with separate values for each axis can be passed (see example)
        fill_value : {float, dict}, optional
            The value to use in the boundary condition with `boundary='fill'`.
            Optionally a dict with seperate values for each axis can be passed (see example)
        vector_partner : dict, optional
            A single key (string), value (DataArray).
            Optionally a dict with seperate values for each axis can be passed (see example)
        metric_weighted : str or tuple of str or dict, optional
            Optionally use metrics to multiply/divide with appropriate metrics before/after the operation.
            E.g. if passing `metric_weighted=['X', 'Y']`, values will be weighted by horizontal area.
            If `False` (default), the points will be weighted equally.
            Optionally a dict with seperate values for each axis can be passed.

        Returns
        -------
        da_i : xarray.DataArray
            The mimimum data

        Examples
        --------
        Each keyword argument can be provided as a `per-axis` dictionary. For instance,
        if we want to find the minimum of sourrounding grid cells for a global 2D dataset
        in both X and Y axis, but the fill value at the boundary should be different
        for each axis, we can do this:

        >>> grid.min(da, ["X", "Y"], fill_value={"X": 0, "Y": 100})
        """
        return self._1d_grid_ufunc_dispatch("min", da, axis, **kwargs)

    def max(self, da, axis, **kwargs):
        """
        Maximum of neighboring points on the intermediate grid point.

        Parameters
        ----------
        axis : str or list or tuple
            Name of the axis on which to act. Multiple axes can be passed as list or
            tuple (e.g. ``['X', 'Y']``). Functions will be executed over each axis in the
            given order.
        to : str or dict, optional
            The direction in which to shift the array (can be ['center','left','right','inner','outer']).
            If not specified, default will be used.
            Optionally a dict with seperate values for each axis can be passed (see example)
        boundary : None or str or dict, optional
            A flag indicating how to handle boundaries:

            * None:  Do not apply any boundary conditions. Raise an error if
              boundary conditions are required for the operation.
            * 'fill':  Set values outside the array boundary to fill_value
              (i.e. a Dirichlet boundary condition.)
            * 'extend': Set values outside the array to the nearest array
              value. (i.e. a limited form of Neumann boundary condition.)

            Optionally a dict with separate values for each axis can be passed (see example)
        fill_value : {float, dict}, optional
            The value to use in the boundary condition with `boundary='fill'`.
            Optionally a dict with seperate values for each axis can be passed (see example)
        vector_partner : dict, optional
            A single key (string), value (DataArray).
            Optionally a dict with seperate values for each axis can be passed (see example)
        metric_weighted : str or tuple of str or dict, optional
            Optionally use metrics to multiply/divide with appropriate metrics before/after the operation.
            E.g. if passing `metric_weighted=['X', 'Y']`, values will be weighted by horizontal area.
            If `False` (default), the points will be weighted equally.
            Optionally a dict with seperate values for each axis can be passed.

        Returns
        -------
        da_i : xarray.DataArray
            The maximum data

        Examples
        --------
        Each keyword argument can be provided as a `per-axis` dictionary. For instance,
        if we want to find the maximum of sourrounding grid cells for a global 2D dataset
        in both X and Y axis, but the fill value at the boundary should be different
        for each axis, we can do this:

        >>> grid.max(da, ["X", "Y"], fill_value={"X": 0, "Y": 100})
        """
        return self._1d_grid_ufunc_dispatch("max", da, axis, **kwargs)

    def cumsum(
        self,
        da: xr.DataArray,
        axis: Union[str, Iterable[str]],
        to=None,
        boundary=None,
        fill_value=None,
        metric_weighted=None,
        keep_coords: bool = False,
    ) -> xr.DataArray:
        """
        Cumulatively sum a DataArray, transforming to the intermediate axis
        position.

        Parameters
        ----------
        da: xarray.DataArray
            Data to apply cumsum to.
        axis : str or list or tuple
            Name of the axis on which to act. Multiple axes can be passed as list or
            tuple (e.g. ``['X', 'Y']``). Functions will be executed over each axis in the
            given order.
        to : str or dict, optional
            The direction in which to shift the array (can be ['center','left','right','inner','outer']).
            If not specified, default will be used.
            Optionally a dict with seperate values for each axis can be passed (see example)
        boundary : None or str or dict, optional
            A flag indicating how to handle boundaries:

            * None:  Do not apply any boundary conditions. Raise an error if
              boundary conditions are required for the operation.
            * 'fill':  Set values outside the array boundary to fill_value
              (i.e. a Dirichlet boundary condition.)
            * 'extend': Set values outside the array to the nearest array
              value. (i.e. a limited form of Neumann boundary condition.)

            Optionally a dict with separate values for each axis can be passed (see example)
        fill_value : {float, dict}, optional
            The value to use in the boundary condition with `boundary='fill'`.
            Optionally a dict with seperate values for each axis can be passed (see example)
        metric_weighted : str or tuple of str or dict, optional
            Optionally use metrics to multiply/divide with appropriate metrics before/after the operation.
            E.g. if passing `metric_weighted=['X', 'Y']`, values will be weighted by horizontal area.
            If `False` (default), the points will be weighted equally.
            Optionally a dict with seperate values for each axis can be passed.

        Returns
        -------
        da_i : xarray.DataArray
            The cumsummed data

        Examples
        --------
        Each keyword argument can be provided as a `per-axis` dictionary. For instance,
        if we want to compute the cumulative sum of global 2D dataset
        in both X and Y axis, but the fill value at the boundary should be different
        for each axis, we can do this:

        >>> grid.max(da, ["X", "Y"], fill_value={"X": 0, "Y": 100})
        """

        if isinstance(axis, str):
            axis = [axis]
        to = self._map_kwargs_over_axes(to)

        if isinstance(metric_weighted, str):
            metric_weighted = (metric_weighted,)
        metric_weighted = self._map_kwargs_over_axes(metric_weighted)

        data = da
        axes = [self.axes[ax_name] for ax_name in axis]
        for ax in axes:
            pos, dim = ax._get_position_name(da)

            ax_metric_weighted = metric_weighted[ax.name]
            if ax_metric_weighted:
                metric = self.get_metric(data, ax_metric_weighted)
                data = data * metric

            # first use xarray's cumsum method
            data = data.cumsum(dim=dim)

            ax_to = to[ax.name]
            if ax_to is None:
                ax_to = ax._default_shifts[pos]

            # now pad / trim the data as necessary
            # here we enumerate all the valid possible shifts
            if (pos == "center" and ax_to == "right") or (
                pos == "left" and ax_to == "center"
            ):
                # do nothing, this is the default for how cumsum works
                ax_boundary_width = {ax.name: (0, 0)}
            elif (pos == "center" and ax_to == "left") or (
                pos == "right" and ax_to == "center"
            ):
                data = data.isel(**{dim: slice(0, -1)})
                ax_boundary_width = {ax.name: (1, 0)}
            elif (pos == "center" and ax_to == "inner") or (
                pos == "outer" and ax_to == "center"
            ):
                data = data.isel(**{dim: slice(0, -1)})
                ax_boundary_width = {ax.name: (0, 0)}
            elif (pos == "center" and ax_to == "outer") or (
                pos == "inner" and ax_to == "center"
            ):
                ax_boundary_width = {ax.name: (1, 0)}
            else:
                raise ValueError(
                    f"From `{pos}` to `{ax_to}` is not a valid position "
                    f"shift for cumsum operation along axis {ax}."
                )

            padded = pad(
                data=data,
                grid=self,
                boundary_width=ax_boundary_width,
                boundary=boundary,
                fill_value=fill_value,
            )

            # get dim with position to
            new_dim_name = ax.coords[ax_to]
            renamed = padded.rename(**{dim: new_dim_name})

            # drop all coords to avoid conflicts when attaching new ones
            coordless = renamed.drop_vars(renamed.coords)

            reattached = _reattach_coords(
                [coordless],
                grid=self,
                boundary_width=ax_boundary_width,
                keep_coords=keep_coords,
            )[0]

            ax_metric_weighted = metric_weighted[ax.name]
            if ax_metric_weighted:
                metric = self.get_metric(reattached, ax_metric_weighted)
                reattached = reattached / metric

            data = reattached

        return data

    def _apply_vector_function(self, function, vector, **kwargs):
        if not (len(vector) == 2 and isinstance(vector, dict)):
            raise ValueError(
                "Input is expected to be a dictionary with two key/value pairs which map grid axis to the vector component parallel to that axis"
            )

        warnings.warn(
            "`interp_2d_vector` and `diff_2d_vector` will be removed from future releases."
            "The same functionality will be accessible under the `xgcm.Grid.diff` and `xgcm.Grid.interp` methods, please see those docstrings for details.",
            category=DeprecationWarning,
        )

        warnings.warn(
            "`interp_2d_vector` and `diff_2d_vector` will be removed from future releases."
            "The same functionality will be available under the `xgcm.Grid` methods.",
            category=DeprecationWarning,
        )

        # this is currently only tested for c-grid vectors defined on edges
        # moving to cell centers. We need to detect if we got something else
        to = kwargs.get("to", "center")
        if to != "center":
            raise NotImplementedError(
                "Only vector interpolation to cell "
                "center is implemented, but got "
                "to=%r" % to
            )
        for axis_name, component in vector.items():
            axis = self.axes[axis_name]
            position, coord = axis._get_position_name(component)
            if position == "center":
                raise NotImplementedError(
                    "Only vector interpolation to cell "
                    "center is implemented, but vector "
                    "%s component is defined at center "
                    "(dims: %r)" % (axis_name, component.dims)
                )

        x_axis_name, y_axis_name = list(vector)

        # apply for each component
        x_component = function(
            {x_axis_name: vector[x_axis_name]},
            x_axis_name,
            other_component={y_axis_name: vector[y_axis_name]},
            **kwargs,
        )

        y_component = function(
            {y_axis_name: vector[y_axis_name]},
            y_axis_name,
            other_component={x_axis_name: vector[x_axis_name]},
            **kwargs,
        )
        return {x_axis_name: x_component, y_axis_name: y_component}

    def diff_2d_vector(self, vector, **kwargs):
        """
        Difference a 2D vector to the intermediate grid point. This method is
        only necessary for complex grid topologies.

        Parameters
        ----------
        vector : dict
            A dictionary with two entries. Keys are axis names, values are
            vector components along each axis.

        %(neighbor_binary_func.parameters.no_f)s

        Returns
        -------
        vector_diff : dict
            A dictionary with two entries. Keys are axis names, values
            are differenced vector components along each axis
        """
        return self._apply_vector_function(self.diff, vector, **kwargs)

    def interp_2d_vector(self, vector, **kwargs):
        """
        Interpolate a 2D vector to the intermediate grid point. This method is
        only necessary for complex grid topologies.

        Parameters
        ----------
        vector : dict
            A dictionary with two entries. Keys are axis names, values are
            vector components along each axis.
        to : {'center', 'left', 'right', 'inner', 'outer'}
            The direction in which to shift the array. If not specified,
            default will be used.
        boundary : {None, 'fill', 'extend'}
            A flag indicating how to handle boundaries:

            * None:  Do not apply any boundary conditions. Raise an error if
              boundary conditions are required for the operation.
            * 'fill':  Set values outside the array boundary to fill_value
              (i.e. a Dirichlet boundary condition.)
            * 'extend': Set values outside the array to the nearest array
              value. (i.e. a limited form of Neumann boundary condition.)

        fill_value : float, optional
            The value to use in the boundary condition with `boundary='fill'`.
        vector_partner : dict, optional
            A single key (string), value (DataArray)
        keep_coords : boolean, optional
            Preserves compatible coordinates. False by default.

        Returns
        -------
        vector_interp : dict
            A dictionary with two entries. Keys are axis names, values
            are interpolated vector components along each axis
        """

        return self._apply_vector_function(self.interp, vector, **kwargs)

    def derivative(self, da, axis, **kwargs):
        """
        Take the centered-difference derivative along specified axis.

        Parameters
        ----------
        axis : str or list or tuple
            Name of the axis on which to act. Multiple axes can be passed as list or
            tuple (e.g. ``['X', 'Y']``). Functions will be executed over each axis in the
            given order.
        to : str or dict, optional
            The direction in which to shift the array (can be ['center','left','right','inner','outer']).
            If not specified, default will be used.
            Optionally a dict with seperate values for each axis can be passed (see example)
        boundary : None or str or dict, optional
            A flag indicating how to handle boundaries:

            * None:  Do not apply any boundary conditions. Raise an error if
              boundary conditions are required for the operation.
            * 'fill':  Set values outside the array boundary to fill_value
              (i.e. a Dirichlet boundary condition.)
            * 'extend': Set values outside the array to the nearest array
              value. (i.e. a limited form of Neumann boundary condition.)

            Optionally a dict with separate values for each axis can be passed (see example)
        fill_value : {float, dict}, optional
            The value to use in the boundary condition with `boundary='fill'`.
            Optionally a dict with seperate values for each axis can be passed (see example)
        vector_partner : dict, optional
            A single key (string), value (DataArray).
            Optionally a dict with seperate values for each axis can be passed (see example)
        metric_weighted : str or tuple of str or dict, optional
            Optionally use metrics to multiply/divide with appropriate metrics before/after the operation.
            E.g. if passing `metric_weighted=['X', 'Y']`, values will be weighted by horizontal area.
            If `False` (default), the points will be weighted equally.
            Optionally a dict with seperate values for each axis can be passed.

        Returns
        -------
        da_i : xarray.DataArray
            The differentiated data
        """
        diff = self.diff(da, axis, **kwargs)
        dx = self.get_metric(diff, (axis,))
        return diff / dx

    def integrate(self, da, axis, **kwargs):
        """
        Perform finite volume integration along specified axis or axes,
        accounting for grid metrics. (e.g. cell length, area, volume)

        Parameters
        ----------
        axis : str, list of str
            Name of the axis on which to act
        **kwargs: dict
            Additional arguments passed to `xarray.DataArray.sum`

        Returns
        -------
        da_i : xarray.DataArray
            The integrated data
        """

        weight = self.get_metric(da, axis)
        weighted = da * weight
        # TODO: We should integrate xarray.weighted once available.

        # get dimension(s) corresponding to `da` and `axis` input
        dim = self._get_dims_from_axis(da, axis)

        return weighted.sum(dim, **kwargs)

    def cumint(self, da, axis, **kwargs):
        """
        Perform cumulative integral along specified axis or axes,
        accounting for grid metrics. (e.g. cell length, area, volume)

        Parameters
        ----------
        axis : str or list or tuple
            Name of the axis on which to act. Multiple axes can be passed as list or
            tuple (e.g. ``['X', 'Y']``). Functions will be executed over each axis in the
            given order.
        to : str or dict, optional
            The direction in which to shift the array (can be ['center','left','right','inner','outer']).
            If not specified, default will be used.
            Optionally a dict with separate values for each axis can be passed (see example)
        boundary : None or str or dict, optional
            A flag indicating how to handle boundaries:

            * None:  Do not apply any boundary conditions. Raise an error if
              boundary conditions are required for the operation.
            * 'fill':  Set values outside the array boundary to fill_value
              (i.e. a Dirichlet boundary condition.)
            * 'extend': Set values outside the array to the nearest array
              value. (i.e. a limited form of Neumann boundary condition.)

            Optionally a dict with separate values for each axis can be passed.
        fill_value : {float, dict}, optional
            The value to use in the boundary condition with `boundary='fill'`.
            Optionally a dict with separate values for each axis can be passed.
        metric_weighted : str or tuple of str or dict, optional
            Optionally use metrics to multiply/divide with appropriate metrics before/after the operation.
            E.g. if passing `metric_weighted=['X', 'Y']`, values will be weighted by horizontal area.
            If `False` (default), the points will be weighted equally.
            Optionally a dict with seperate values for each axis can be passed.

        Returns
        -------
        da_i : xarray.DataArray
            The cumulatively integrated data
        """

        weight = self.get_metric(da, axis)
        weighted = da * weight
        # TODO: We should integrate xarray.weighted once available.

        return self.cumsum(weighted, axis, **kwargs)

    def average(self, da, axis, **kwargs):
        """
        Perform weighted mean reduction along specified axis or axes,
        accounting for grid metrics. (e.g. cell length, area, volume)

        Parameters
        ----------
        axis : str, list of str
            Name of the axis on which to act
        **kwargs: dict
            Additional arguments passed to `xarray.DataArray.weighted.mean`

        Returns
        -------
        da_i : xarray.DataArray
            The averaged data
        """

        weight = self.get_metric(da, axis)
        weighted = da.weighted(weight)

        # get dimension(s) corresponding to `da` and `axis` input
        dim = self._get_dims_from_axis(da, axis)
        return weighted.mean(dim, **kwargs)

    def transform(self, da, axis, target, **kwargs):
        """Convert an array of data to new 1D-coordinates along `axis`.
        The method takes a multidimensional array of data `da` and
        transforms it onto another data_array `target_data` in the
        direction of the axis (for each 1-dimensional 'column').

        `target_data` can be e.g. the existing coordinate along an
        axis, like depth. xgcm automatically detects the appropriate
        coordinate and then transforms the data from the input
        positions to the desired positions defined in `target`. This
        is the default behavior. The method can also be used for more
        complex cases like transforming a dataarray into new
        coordinates that are defined by e.g. a tracer field like
        temperature, density, etc.

        Currently three methods are supported to carry out the
        transformation:

        - 'linear': Values are linear interpolated between 1D columns
          along `axis` of `da` and `target_data`. This method requires
          `target_data` to increase/decrease monotonically. `target`
          values are interpreted as new cell centers in this case. By
          default this method will return nan for values in `target` that
          are outside of the range of `target_data`, setting
          `mask_edges=False` results in the default np.interp behavior of
          repeated values.

        - 'log': Same as 'linear', but with values interpolated
          logarithmically between 1D columns. Operates by applying `np.log`
          to the target and target data values prior to linear interpolation.

        - 'conservative': Values are transformed while conserving the
          integral of `da` along each 1D column. This method can be used
          with non-monotonic values of `target_data`. Currently this will
          only work with extensive quantities (like heat, mass, transport)
          but not with intensive quantities (like temperature, density,
          velocity). N given `target` values are interpreted as cell-bounds
          and the returned array will have N-1 elements along the newly
          created coordinate, with coordinate values that are interpolated
          between `target` values.

        Parameters
        ----------
        da : xr.DataArray
            Input data
        axis : str
            Name of the axis on which to act
        target : {np.array, xr.DataArray}
            Target points for transformation. Depending on the method is
            interpreted as cell center (method='linear' and method='log') or
            cell bounds (method='conservative).
            Values correspond to `target_data` or the existing coordinate
            along the axis (if `target_data=None`). The name of the
            resulting new coordinate is determined by the input type.
            When passed as numpy array the resulting dimension is named
            according to `target_data`, if provided as xr.Dataarray
            naming is inferred from the `target` input.
        target_data : xr.DataArray, optional
            Data to transform onto (e.g. a tracer like density or temperature).
            Defaults to None, which infers the appropriate coordinate along
            `axis` (e.g. the depth).
        method : str, optional
            Method used to transform, by default "linear"
        mask_edges : bool, optional
            If activated, `target` values outside the range of `target_data`
            are masked with nan, by default True. Only applies to 'linear' and
            'log' methods.
        bypass_checks : bool, optional
            Only applies for `method='linear'` and `method='log'`.
            Option to bypass logic to flip data if monotonically decreasing along the axis.
            This will improve performance if True, but the user needs to ensure that values
            are increasing along the axis.
        suffix : str, optional
            Customizable suffix to the name of the output array. This will
            be added to the original name of `da`. Defaults to `_transformed`.

        Returns
        -------
        xr.DataArray
            The transformed data


        """
        try:
            from .transform import transform
        except ImportError:
            raise ImportError(
                "The transform functionality of xgcm requires numba. Install using `conda install numba`."
            )
        return transform(self, axis, da, target, **kwargs)

_facedim instance-attribute

_facedim: Optional[str]

_face_connections instance-attribute

_face_connections: Optional[Dict[str, Any]]

_ds instance-attribute

_ds: Dataset = ds

_metrics instance-attribute

_metrics: Dict[Tuple[str, ...], List[DataArray]] = {}

axes instance-attribute

axes = OrderedDict()

__init__

__init__(ds: Dataset, coords: Optional[Mapping[str, Mapping[str, str]]] = None, periodic: bool = True, fill_value: Optional[Union[float, Mapping[str, float]]] = None, default_shifts: Optional[Mapping[str, str]] = None, boundary: Optional[Union[str, Mapping[str, str]]] = None, face_connections: Optional[Dict[str, Any]] = None, metrics: Optional[Mapping[Tuple[str], List[str]]] = None, autoparse_metadata: bool = True)

Create a new Grid object from an input dataset.

Parameters

ds : xarray.Dataset Contains the relevant grid information. Coordinate attributes should conform to Comodo conventions [1]_. coords : dict, optional Specifies positions of dimension names along axes X, Y, Z, e.g {'X': {'center': 'XC', 'left: 'XG'}}. Each key should be an axis name (e.g., X, Y, or Z) and map to a dictionary which maps positions (center, left, right, outer, inner) to dimension names in the dataset (in the example above, XC is at the center position and XG at the left position along the X axis). If the values are not present in ds or are not dimensions, an error will be raised. periodic : {True, False, list} Whether the grid is periodic (i.e. "wrap-around"). If a list is specified (e.g. ['X', 'Y']), the axis names in the list will be periodic and any other axes founds will be assumed non-periodic. fill_value : {float, dict}, optional The value to use in boundary conditions with boundary='fill'. Optionally a dict mapping axis name to seperate values for each axis can be passed. default_shifts : dict A dictionary of dictionaries specifying default grid position shifts (e.g. {'X': {'center': 'left', 'left': 'center'}}) boundary : {None, 'fill', 'extend', 'periodic', dict}, optional A flag indicating how to handle boundaries:

* None:  Do not apply any boundary conditions. Raise an error if
  boundary conditions are required for the operation.
* 'fill':  Set values outside the array boundary to fill_value
  (i.e. a Dirichlet boundary condition.)
* 'extend': Set values outside the array to the nearest array
  value. (i.e. a limited form of Neumann boundary condition.)
* 'periodic': Set values by wrapping around the array on the specified
    axes. (i.e. a periodic boundary condition.)
Optionally a dict mapping axis name to seperate values for each axis
can be passed.

face_connections : dict Grid topology metrics : dict, optional Specification of grid metrics mapping axis names (X, Y, Z) to corresponding metric variable names in the dataset (e.g. {('X',):['dx_t'], ('X', 'Y'):['area_tracer', 'area_u']} for the cell distance in the x-direction dx_t and the horizontal cell areas area_tracer and area_u, located at different grid positions).

REFERENCES

.. [1] Comodo Conventions https://web.archive.org/web/20160417032300/http://pycomodo.forge.imag.fr/norm.html

Source code in xgcm/grid.py
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
def __init__(
    self,
    ds: xr.Dataset,
    coords: Optional[Mapping[str, Mapping[str, str]]] = None,
    periodic: bool = True,
    fill_value: Optional[Union[float, Mapping[str, float]]] = None,
    default_shifts: Optional[
        Mapping[str, str]
    ] = None,  # TODO check if one default shift can be applied to many Axes
    boundary: Optional[Union[str, Mapping[str, str]]] = None,
    face_connections: Optional[
        Dict[str, Any]
    ] = None,  # TODO: add more specific typing
    metrics: Optional[Mapping[Tuple[str], List[str]]] = None,  # TODO type hint this
    autoparse_metadata: bool = True,
):
    """
    Create a new Grid object from an input dataset.

    Parameters
    ----------
    ds : xarray.Dataset
        Contains the relevant grid information. Coordinate attributes
        should conform to Comodo conventions [1]_.
    coords : dict, optional
        Specifies positions of dimension names along axes X, Y, Z, e.g
        ``{'X': {'center': 'XC', 'left: 'XG'}}``.
        Each key should be an axis name (e.g., `X`, `Y`, or `Z`) and map
        to a dictionary which maps positions (`center`, `left`, `right`,
        `outer`, `inner`) to dimension names in the dataset
        (in the example above, `XC` is at the `center` position and `XG`
        at the `left` position along the `X` axis).
        If the values are not present in ``ds`` or are not dimensions,
        an error will be raised.
    periodic : {True, False, list}
        Whether the grid is periodic (i.e. "wrap-around"). If a list is
        specified (e.g. ``['X', 'Y']``), the axis names in the list will be
        periodic and any other axes founds will be assumed non-periodic.
    fill_value : {float, dict}, optional
        The value to use in boundary conditions with `boundary='fill'`.
        Optionally a dict mapping axis name to seperate values for each axis
        can be passed.
    default_shifts : dict
        A dictionary of dictionaries specifying default grid position
        shifts (e.g. ``{'X': {'center': 'left', 'left': 'center'}}``)
    boundary : {None, 'fill', 'extend', 'periodic', dict}, optional
        A flag indicating how to handle boundaries:

        * None:  Do not apply any boundary conditions. Raise an error if
          boundary conditions are required for the operation.
        * 'fill':  Set values outside the array boundary to fill_value
          (i.e. a Dirichlet boundary condition.)
        * 'extend': Set values outside the array to the nearest array
          value. (i.e. a limited form of Neumann boundary condition.)
        * 'periodic': Set values by wrapping around the array on the specified
            axes. (i.e. a periodic boundary condition.)
        Optionally a dict mapping axis name to seperate values for each axis
        can be passed.
    face_connections : dict
        Grid topology
    metrics : dict, optional
        Specification of grid metrics mapping axis names (X, Y, Z) to corresponding
        metric variable names in the dataset
        (e.g. {('X',):['dx_t'], ('X', 'Y'):['area_tracer', 'area_u']}
        for the cell distance in the x-direction ``dx_t`` and the
        horizontal cell areas ``area_tracer`` and ``area_u``, located at
        different grid positions).

    REFERENCES
    ----------
    .. [1] Comodo Conventions https://web.archive.org/web/20160417032300/http://pycomodo.forge.imag.fr/norm.html
    """
    if not isinstance(ds, xr.Dataset):
        raise TypeError(
            f"ds argument to `xgcm.Grid` must be of type xarray.Dataset, but is of type {type(ds)}"
        )

    self._ds = ds

    # Attempt to autoparse metadata from various conventions
    # Default is to do this to preserve backwards compatability
    if autoparse_metadata:
        ds, parsed_kwargs = metadata_parsers.parse_metadata(ds)

        # Loop over input kwargs. If None and parsed alternative available
        # then replace local variable with autoparsed. If conflict raise error.
        duplicates = []
        if "coords" in parsed_kwargs:
            if coords is None:
                coords = parsed_kwargs["coords"]
            else:
                duplicates.append("coords")
        if "fill_value" in parsed_kwargs:
            if fill_value is None:
                fill_value = parsed_kwargs["fill_value"]
            else:
                duplicates.append("fill_value")
        if "default_shifts" in parsed_kwargs:
            if default_shifts is None:
                default_shifts = parsed_kwargs["default_shifts"]
            else:
                duplicates.append("default_shifts")
        if "boundary" in parsed_kwargs:
            if boundary is None:
                boundary = parsed_kwargs["boundary"]
            else:
                duplicates.append("boundary")
        if "face_connections" in parsed_kwargs:
            if face_connections is None:
                face_connections = parsed_kwargs["face_connections"]
            else:
                duplicates.append("face_connections")
        if "metrics" in parsed_kwargs:
            if metrics is None:
                metrics = parsed_kwargs["metrics"]
            else:
                duplicates.append("metrics")

        if len(duplicates) > 0:
            raise ValueError(
                f"Autoparsed Grid kwargs: '{', '.join(duplicates)}' conflict with "
                f"user-supplied kwargs. Run with 'autoparse_metadata=False', or "
                f"autoparse and amend kwargs before calling Grid constructer."
            )

    if boundary:
        warnings.warn(
            "The `boundary` argument will be renamed "
            "to `padding` to better reflect the process "
            "of array padding and avoid confusion with "
            "physical boundary conditions (e.g. ocean land boundary).",
            category=DeprecationWarning,
        )

    # Deprecation Warnigns
    if periodic:
        warnings.warn(
            "The `periodic` argument will be deprecated. "
            "To preserve previous behavior supply `boundary = 'periodic'.",
            category=DeprecationWarning,
        )

    if fill_value:
        warnings.warn(
            "The default fill_value will be changed to nan (from 0.0 previously) "
            "in future versions. Provide `fill_value=0.0` to preserve previous behavior.",
            category=DeprecationWarning,
        )

    if coords is None:
        raise ValueError(
            "Could not determine Axis names - please provide them in the coords kwarg "
            "or provide a dataset from which they can be parsed"
        )

    all_axes = coords.keys()

    # Convert all inputs to axes-kwarg mappings
    # TODO We need a way here to check valid input. Maybe also in _as_axis_kwargs?
    # Parse axis properties
    boundary_dict = self._map_kwargs_over_axes(boundary, axes=all_axes)
    # TODO: In the future we want this the only place where we store these.
    # TODO: This info needs to then be accessible to e.g. pad()

    # Parse list input. This case does only apply to periodic.
    # Since we plan on deprecating it soon handle it here, so we can easily
    # remove it later
    if isinstance(periodic, list):
        periodic_dict = {axname: True for axname in periodic}
    else:
        periodic_dict = self._map_kwargs_over_axes(periodic, axes=all_axes)

    for ax, p in periodic_dict.items():
        if boundary_dict[ax] is None:
            if p is True:
                boundary_dict[ax] = "periodic"
            else:
                boundary_dict[ax] = "fill"

    default_shifts_dict = self._map_kwargs_over_axes(default_shifts, axes=all_axes)

    fill_value_dict = self._map_kwargs_over_axes(fill_value, axes=all_axes)

    # Set properties on grid object.
    if face_connections is not None and face_connections:
        self._facedim = list(face_connections.keys())[0]
        self._face_connections = face_connections
    else:
        self._facedim = None
        self._face_connections = None
    # TODO: I think of the face connection data as grid not axes properties, since they almost by defintion
    # TODO: involve multiple axes. In a future PR we should remove this info from the axes
    # TODO: but make sure to properly port the checking functionality!

    # Populate axes. Much of this is just for backward compatibility.
    self.axes = OrderedDict()
    for axis_name in all_axes:
        self.axes[axis_name] = Axis(
            ds,
            axis_name,
            coords=coords[axis_name],
            default_shifts=default_shifts_dict.get(axis_name, None),
            boundary=boundary_dict.get(axis_name, None),
            fill_value=fill_value_dict.get(axis_name, None),
        )

    if face_connections is not None:
        self._assign_face_connections(face_connections)

    self._metrics = {}

    if metrics is not None:
        for key, value in metrics.items():
            self.set_metrics(key, value)

_map_kwargs_over_axes

_map_kwargs_over_axes(kwargs: Union[Any, Dict[str, Any]], axes: Optional[Iterable[str]] = None) -> Dict[str, Any]

Convert kwarg input into dict for each available axis E.g. for a grid with 2 axes for the keyword argument periodic periodic = True --> periodic = {'X': True, 'Y':True} or if not all axes are provided, the other axes will be parsed as defaults (None) periodic = {'X':True} --> periodic={'X': True, 'Y':None}

Source code in xgcm/grid.py
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
def _map_kwargs_over_axes(
    self,
    kwargs: Union[Any, Dict[str, Any]],
    axes: Optional[Iterable[str]] = None,
) -> Dict[str, Any]:
    """Convert kwarg input into dict for each available axis
    E.g. for a grid with 2 axes for the keyword argument `periodic`
    periodic = True --> periodic = {'X': True, 'Y':True}
    or if not all axes are provided, the other axes will be parsed as defaults (None)
    periodic = {'X':True} --> periodic={'X': True, 'Y':None}
    """
    if axes is None:
        axes = self.axes

    mapped_kwargs: Dict[str, Any] = dict()

    if isinstance(kwargs, dict):
        mapped_kwargs = kwargs
    else:
        for axname in axes:
            mapped_kwargs[axname] = kwargs

    return mapped_kwargs

_complete_user_kwargs_using_axis_defaults

_complete_user_kwargs_using_axis_defaults(user_kwargs: Union[Any, Dict[str, Any]], property: str) -> Dict[str, Any]

Takes user choice of values for a given kwarg, and returns full per-axis mapping of kwargs, filling in with Axis defaults when needed.

Source code in xgcm/grid.py
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
def _complete_user_kwargs_using_axis_defaults(
    self,
    user_kwargs: Union[Any, Dict[str, Any]],
    property: str,
) -> Dict[str, Any]:
    """
    Takes user choice of values for a given kwarg, and returns full per-axis mapping of kwargs,
    filling in with Axis defaults when needed.
    """

    defaults = {ax: getattr(self.axes[ax], property) for ax in self.axes}
    if user_kwargs is not None:
        user_kwargs = self._map_kwargs_over_axes(user_kwargs)
        user_kwargs = defaults | user_kwargs
    else:
        user_kwargs = defaults

    return user_kwargs

_assign_face_connections

_assign_face_connections(fc)

Check a dictionary of face connections to make sure all the links are consistent.

Source code in xgcm/grid.py
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
def _assign_face_connections(self, fc):
    """Check a dictionary of face connections to make sure all the links are
    consistent.
    """

    if len(fc) > 1:
        raise ValueError(
            "Only one face dimension is supported for now. "
            "Instead found %r" % repr(fc.keys())
        )

    # we will populate this with the axes we find in face_connections
    axis_connections = {}

    facedim = list(fc.keys())[0]
    if facedim not in self._ds.dims:
        raise ValueError(
            f"Face dimension {facedim} does not exist in the dataset. Found {list(self._ds.dims)} instead"
        )

    face_links = fc[facedim]
    for fidx, face_axis_links in face_links.items():
        for axis, axis_links in face_axis_links.items():
            # initialize the axis dict if necssary
            if axis not in axis_connections:
                axis_connections[axis] = {}
            link_left, link_right = axis_links

            def check_neighbor(link, position):
                if link is None:
                    return
                idx, ax, rev = link
                # need to swap position if the link is reversed
                correct_position = int(not position) if rev else position
                try:
                    neighbor_link = face_links[idx][ax][correct_position]
                except (KeyError, IndexError):
                    raise KeyError(
                        "Couldn't find a face link for face %r"
                        "in axis %r at position %r" % (idx, ax, correct_position)
                    )
                idx_n, ax_n, rev_n = neighbor_link
                if ax not in self.axes:
                    raise KeyError("axis %r is not a valid axis" % ax)
                if ax_n not in self.axes:
                    raise KeyError("axis %r is not a valid axis" % ax_n)
                if idx not in self._ds[facedim].values:
                    raise IndexError(
                        "%r is not a valid index for face"
                        "dimension %r" % (idx, facedim)
                    )
                if idx_n not in self._ds[facedim].values:
                    raise IndexError(
                        "%r is not a valid index for face"
                        "dimension %r" % (idx, facedim)
                    )
                # check for consistent links from / to neighbor
                if (idx_n != fidx) or (ax_n != axis) or (rev_n != rev):
                    raise ValueError(
                        "Face link mismatch: neighbor doesn't"
                        " correctly link back to this face. "
                        "face: %r, axis: %r, position: %r, "
                        "rev: %r, link: %r, neighbor_link: %r"
                        % (fidx, axis, position, rev, link, neighbor_link)
                    )
                # convert the axis name to an acutal axis object
                actual_axis = self.axes[ax]
                return idx, actual_axis, rev

            left = check_neighbor(link_left, 1)
            right = check_neighbor(link_right, 0)
            axis_connections[axis][fidx] = (left, right)

    for axis, axis_links in axis_connections.items():
        self.axes[axis]._facedim = facedim
        self.axes[axis]._face_connections = axis_links

set_metrics

set_metrics(key, value, overwrite=False)
Source code in xgcm/grid.py
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
def set_metrics(self, key, value, overwrite=False):
    metric_axes = frozenset(_maybe_promote_str_to_list(key))
    axes_not_found = [ma for ma in metric_axes if ma not in self.axes]
    if len(axes_not_found) > 0:
        raise KeyError(
            f"Metric axes {axes_not_found!r} not compatible with grid axes {tuple(self.axes)!r}"
        )

    metric_value = _maybe_promote_str_to_list(value)
    for metric_varname in metric_value:
        if metric_varname not in self._ds.variables:
            raise KeyError(
                f"Metric variable {metric_varname} not found in dataset."
            )

    existing_metric_axes = set(self._metrics.keys())
    if metric_axes in existing_metric_axes:
        value_exist = self._metrics.get(metric_axes)
        # resetting coords avoids potential broadcasting / alignment issues
        value_new = self._ds[metric_varname].reset_coords(drop=True)
        did_overwrite = False
        # go through each existing value until data array with matching dimensions is selected
        for idx, ve in enumerate(value_exist):
            # double check if dimensions match
            if set(value_new.dims) == set(ve.dims):
                if overwrite:
                    # replace existing data array with new data array input
                    self._metrics[metric_axes][idx] = value_new
                    did_overwrite = True
                else:
                    raise ValueError(
                        f"Metric variable {ve.name} with dimensions {ve.dims} already assigned in metrics."
                        f" Overwrite {ve.name} with {metric_varname} by setting overwrite=True."
                    )
        # if no existing value matches new value dimension-wise, just append new value
        if not did_overwrite:
            self._metrics[metric_axes].append(value_new)
    else:
        # no existing metrics for metric_axes yet; initialize empty list
        self._metrics[metric_axes] = []
        for metric_varname in metric_value:
            metric_var = self._ds[metric_varname].reset_coords(drop=True)
            self._metrics[metric_axes].append(metric_var)

_get_dims_from_axis

_get_dims_from_axis(da: DataArray, axis: Iterable[str]) -> List[str]
Source code in xgcm/grid.py
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
def _get_dims_from_axis(self, da: xr.DataArray, axis: Iterable[str]) -> List[str]:
    da = _maybe_unpack_vector_component(da)
    dim = []
    axis = _maybe_promote_str_to_list(axis)
    for ax in axis:
        if ax in self.axes:
            all_dim = self.axes[ax].coords.values()
            matching_dim = [di for di in all_dim if di in da.dims]
            if len(matching_dim) == 1:
                dim.append(matching_dim[0])
            else:
                raise ValueError(
                    f"Did not find single matching dimension {da.dims} from {da.name} corresponding to axis {ax}, got {matching_dim}."
                )
        else:
            raise KeyError(f"Did not find axis {ax} from data array {da.name}")
    return dim

get_metric

get_metric(array, axes)

Find the metric variable associated with a set of axes for a particular array.

Parameters

array : xarray.DataArray The array for which we are looking for a metric. Only its dimensions are considered. axes : iterable A list of axes for which to find the metric.

Returns

metric : xarray.DataArray A metric which can broadcast against array

Source code in xgcm/grid.py
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
def get_metric(self, array, axes):
    """
    Find the metric variable associated with a set of axes for a particular
    array.

    Parameters
    ----------
    array : xarray.DataArray
        The array for which we are looking for a metric. Only its dimensions are considered.
    axes : iterable
        A list of axes for which to find the metric.

    Returns
    -------
    metric : xarray.DataArray
        A metric which can broadcast against ``array``
    """

    metric_vars = None
    array_dims = set(array.dims)

    # Will raise a Value Error if array doesn't have a dimension corresponding to metric axes specified
    # See _get_dims_from_axis
    self._get_dims_from_axis(array, frozenset(axes))

    possible_metric_vars = set(tuple(k) for k in self._metrics.keys())
    possible_combos = set(itertools.permutations(tuple(axes)))
    overlap_metrics = possible_metric_vars.intersection(possible_combos)

    if len(overlap_metrics) > 0:
        # Condition 1: metric with matching axes and dimensions exist
        overlap_metrics = frozenset(*overlap_metrics)
        possible_metrics = self._metrics[overlap_metrics]
        for mv in possible_metrics:
            metric_dims = set(mv.dims)
            if metric_dims.issubset(array_dims):
                metric_vars = mv
                break
        if metric_vars is None:
            # Condition 2: interpolate metric with matching axis to desired dimensions
            warnings.warn(
                f"Metric at {array.dims} being interpolated from metrics at dimensions {mv.dims}. Boundary value set to 'extend'."
            )
            metric_vars = self.interp_like(mv, array, "extend", None)
    else:
        for axis_combinations in iterate_axis_combinations(axes):
            try:
                # will raise KeyError if the axis combination is not in metrics
                possible_metric_vars = [
                    self._metrics[ac] for ac in axis_combinations
                ]
                for possible_combinations in itertools.product(
                    *possible_metric_vars
                ):
                    metric_dims = set(
                        [d for mv in possible_combinations for d in mv.dims]
                    )
                    if metric_dims.issubset(array_dims):
                        # Condition 3: use provided metrics with matching dimensions to calculate for required metric
                        metric_vars = possible_combinations
                        break
                    else:
                        # Condition 4: metrics in the wrong position (must interpolate before multiplying)
                        possible_dims = [pc.dims for pc in possible_combinations]
                        warnings.warn(
                            f"Metric at {array.dims} being interpolated from metrics at dimensions {possible_dims}. Boundary value set to 'extend'."
                        )
                        metric_vars = tuple(
                            self.interp_like(pc, array, "extend", None)
                            for pc in possible_combinations
                        )
                if metric_vars is not None:
                    # return the product of the metrics
                    metric_vars = functools.reduce(operator.mul, metric_vars, 1)
                    break
            except KeyError:
                pass
    if metric_vars is None:
        raise KeyError(
            f"Unable to find any combinations of metrics for array dims {array_dims!r} and axes {axes!r}"
        )
    return metric_vars

interp_like

interp_like(array, like, boundary=None, fill_value=None)

Compares positions between two data arrays and interpolates array to the position of like if necessary

Parameters

array : DataArray DataArray to interpolate to the position of like like : DataArray DataArray with desired grid positions for source array boundary : {None, 'fill', 'extend', 'periodic', dict}, optional A flag indicating how to handle boundaries:

* None:  Do not apply any boundary conditions. Raise an error if
  boundary conditions are required for the operation.
* 'fill':  Set values outside the array boundary to fill_value
  (i.e. a Dirichlet boundary condition.)
* 'extend': Set values outside the array to the nearest array
  value. (i.e. a limited form of Neumann boundary condition.)
* 'periodic': Set values by wrapping around the array on the specified
    axes. (i.e. a periodic boundary condition.)
Optionally a dict mapping axis name to seperate values for each axis
can be passed.

fill_value : float, optional The value to use in the boundary condition when boundary='fill'.

Returns

array : DataArray Source data array with updated positions along axes matching with target array

Source code in xgcm/grid.py
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
def interp_like(self, array, like, boundary=None, fill_value=None):
    """Compares positions between two data arrays and interpolates array to the position of like if necessary

    Parameters
    ----------
    array : DataArray
        DataArray to interpolate to the position of like
    like : DataArray
        DataArray with desired grid positions for source array
    boundary : {None, 'fill', 'extend', 'periodic', dict}, optional
        A flag indicating how to handle boundaries:

        * None:  Do not apply any boundary conditions. Raise an error if
          boundary conditions are required for the operation.
        * 'fill':  Set values outside the array boundary to fill_value
          (i.e. a Dirichlet boundary condition.)
        * 'extend': Set values outside the array to the nearest array
          value. (i.e. a limited form of Neumann boundary condition.)
        * 'periodic': Set values by wrapping around the array on the specified
            axes. (i.e. a periodic boundary condition.)
        Optionally a dict mapping axis name to seperate values for each axis
        can be passed.
    fill_value : float, optional
        The value to use in the boundary condition when `boundary='fill'`.

    Returns
    -------
    array : DataArray
        Source data array with updated positions along axes matching with target array
    """

    interp_axes = []
    for axname, axis in self.axes.items():
        try:
            position_array, _ = axis._get_position_name(array)
            position_like, _ = axis._get_position_name(like)
        # This will raise a KeyError if you have multiple axes contained in self,
        # since the for-loop will go through all axes, but the method is applied for only 1 axis at a time
        # This is for cases where an axis is present in self that is not available for either array or like.
        # For the axis you are interested in interpolating, there should be data for it in grid, array, and like.
        except KeyError:
            continue
        if position_like != position_array:
            interp_axes.append(axname)

    array = self.interp(
        array,
        interp_axes,
        fill_value=fill_value,
        boundary=boundary,
    )
    return array

__repr__

__repr__()
Source code in xgcm/grid.py
593
594
595
596
597
598
599
600
601
def __repr__(self):
    summary = ["<xgcm.Grid>"]
    for name, axis in self.axes.items():
        is_periodic = "periodic" if axis._periodic else "not periodic"
        summary.append(
            "%s Axis (%s, boundary=%r):" % (name, is_periodic, axis.boundary)
        )
        summary += axis._coord_desc()
    return "\n".join(summary)

_1d_grid_ufunc_dispatch

_1d_grid_ufunc_dispatch(funcname, data: Union[DataArray, Dict[str, DataArray]], axis, to=None, keep_coords=False, metric_weighted: Optional[Union[str, Iterable[str], Dict[str, Union[str, Iterable[str]]]]] = None, other_component: Optional[Dict[str, DataArray]] = None, **kwargs)

Calls appropriate 1D grid ufuncs on data, along the specified axes, sequentially.

Parameters

axis : str or list or tuple Name of the axis on which to act. Multiple axes can be passed as list or tuple (e.g. ['X', 'Y']). Functions will be executed over each axis in the given order. to : str or dict, optional The direction in which to shift the array (can be ['center','left','right','inner','outer']). Can be passed as a single str to use for all axis, or as a dict with separate values for each axis. If not specified, the default_shifts stored in each Axis object will be used for that axis.

Source code in xgcm/grid.py
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
def _1d_grid_ufunc_dispatch(
    self,
    funcname,
    data: Union[xr.DataArray, Dict[str, xr.DataArray]],
    axis,
    to=None,
    keep_coords=False,
    metric_weighted: Optional[
        Union[str, Iterable[str], Dict[str, Union[str, Iterable[str]]]]
    ] = None,
    other_component: Optional[Dict[str, xr.DataArray]] = None,
    **kwargs,
):
    """
    Calls appropriate 1D grid ufuncs on data, along the specified axes, sequentially.

    Parameters
    ----------
    axis : str or list or tuple
        Name of the axis on which to act. Multiple axes can be passed as list or
        tuple (e.g. ``['X', 'Y']``). Functions will be executed over each axis in the
        given order.
    to : str or dict, optional
        The direction in which to shift the array (can be ['center','left','right','inner','outer']).
        Can be passed as a single str to use for all axis, or as a dict with separate values for each axis.
        If not specified, the `default_shifts` stored in each Axis object will be used for that axis.
    """

    if isinstance(axis, str):
        axis = [axis]

    # This function is restricted to a single data input, so we need to check the input validity
    # here early.
    # TODO: This will fail if a sequence of inputs is passed, but not with a very helpful error
    # TODO: message. @TOM do you think it is worth to check the type and raise another error in that case?
    data = _check_data_input(data, self)

    # Unpack data for various steps below
    data_unpacked = _maybe_unpack_vector_component(data)

    # convert input arguments into axes-kwarg mappings
    to = self._map_kwargs_over_axes(to)

    if isinstance(metric_weighted, str):
        metric_weighted = (metric_weighted,)
    metric_weighted = self._map_kwargs_over_axes(metric_weighted)

    signatures = self._create_1d_grid_ufunc_signatures(
        data_unpacked, axis=axis, to=to
    )

    # if any dims are chunked then we need dask
    if isinstance(data_unpacked.data, Dask_Array):
        dask = "parallelized"
    else:
        dask = "forbidden"

    if isinstance(data, dict):
        array = {k: v.copy(deep=False) for k, v in data.items()}
    else:
        # Need to copy to avoid modifying in-place. Ideally we would test for this behaviour specifically
        array = data.copy(deep=False)

    # Apply 1D function over multiple axes
    # TODO This will call xarray.apply_ufunc once for each axis, but if signatures + kwargs are the same then we
    # TODO only actually need to call apply_ufunc once for those axes
    for signature_1d, ax_name in zip(signatures, axis):
        grid_ufunc, remaining_kwargs = _select_grid_ufunc(
            funcname, signature_1d, module=gridops, **kwargs
        )
        ax_metric_weighted = metric_weighted[ax_name]

        if ax_metric_weighted:
            metric = self.get_metric(array, ax_metric_weighted)
            array = array * metric

        # if chunked along core dim then we need map_overlap
        core_dim = self._get_dims_from_axis(data, ax_name)
        if _has_chunked_core_dims(data_unpacked, core_dim):
            # cumsum is a special case because it can't be correctly applied chunk-wise with map_overlap
            # (it would need blockwise instead)
            map_overlap = True if funcname != "cumsum" else False
            dask = "allowed"
        else:
            map_overlap = False

        array = grid_ufunc(
            self,
            array,
            axis=[(ax_name,)],
            keep_coords=keep_coords,
            dask=dask,
            map_overlap=map_overlap,
            other_component=other_component,
            **remaining_kwargs,
        )

        if ax_metric_weighted:
            metric = self.get_metric(array, ax_metric_weighted)
            array = array / metric

    return self._transpose_to_keep_same_dim_order(data_unpacked, array, axis)

_create_1d_grid_ufunc_signatures

_create_1d_grid_ufunc_signatures(da, axis, to) -> List[_GridUFuncSignature]

Create a list of signatures to pass to apply_grid_ufunc.

Created from data, list of input axes, and list of target axis positions. One separate signature is created for each axis the 1D ufunc is going to be applied over.

Source code in xgcm/grid.py
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
def _create_1d_grid_ufunc_signatures(
    self, da, axis, to
) -> List[_GridUFuncSignature]:
    """
    Create a list of signatures to pass to apply_grid_ufunc.

    Created from data, list of input axes, and list of target axis positions.
    One separate signature is created for each axis the 1D ufunc is going to be applied over.
    """

    signatures = []
    for ax_name in axis:
        ax = self.axes[ax_name]

        from_pos, _ = ax._get_position_name(da)  # removed `dim` since it wasnt used

        to_pos = to[ax_name]
        if to_pos is None:
            to_pos = ax._default_shifts[from_pos]

        # TODO build this more directly?
        signature_1d = _GridUFuncSignature.from_string(
            f"({ax_name}:{from_pos})->({ax_name}:{to_pos})"
        )
        signatures.append(signature_1d)

    return signatures

_transpose_to_keep_same_dim_order

_transpose_to_keep_same_dim_order(da, result, axis)

Reorder DataArray dimensions to match the original input.

Source code in xgcm/grid.py
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
def _transpose_to_keep_same_dim_order(self, da, result, axis):
    """Reorder DataArray dimensions to match the original input."""

    initial_dims = da.dims

    shifted_dims = {}
    for ax_name in axis:
        ax = self.axes[ax_name]

        _, old_dim = ax._get_position_name(da)
        _, new_dim = ax._get_position_name(result)
        shifted_dims[old_dim] = new_dim

    output_dims_but_in_original_order = [
        shifted_dims[dim] if dim in shifted_dims else dim for dim in initial_dims
    ]

    return result.transpose(*output_dims_but_in_original_order)

apply_as_grid_ufunc

apply_as_grid_ufunc(func: Callable, *args: DataArray, axis: Optional[Sequence[Sequence[str]]] = None, signature: Union[str, _GridUFuncSignature] = '', boundary_width: Optional[Mapping[str, Tuple[int, int]]] = None, boundary: Optional[Union[str, Mapping[str, str]]] = None, fill_value: Optional[Union[float, Mapping[str, float]]] = None, dask: Literal['forbidden', 'parallelized', 'allowed'] = 'forbidden', map_overlap: bool = False, **kwargs)

Apply a function to the given arguments in a grid-aware manner.

The relationship between xgcm axes on the input and output are specified by signature. Wraps xarray.apply_ufunc, but determines the core dimensions from the grid and signature passed.

Parameters

func : callable Function to call like func(*args, **kwargs) on numpy-like unlabeled arrays (.data).

Passed directly on to `xarray.apply_ufunc`.

*args : xarray.DataArray One or more xarray DataArray objects to apply the function to. axis : Sequence[Sequence[str]], optional Names of xgcm.Axes on which to act, for each array in args. Multiple axes can be passed as a sequence (e.g. ['X', 'Y']). Function will be executed over all Axes simultaneously, and each Axis must be present in the Grid. signature : string Grid universal function signature. Specifies the xgcm.Axis names and positions for each input and output variable, e.g.,

``"(X:center)->(X:left)"`` for ``diff_center_to_left(a)``.

boundary_width : Dict[str: Tuple[int, int] The widths of the boundaries at the edge of each array. Supplied in a mapping of the form {axis_name: (lower_width, upper_width)}. boundary : {None, 'fill', 'extend', 'periodic', dict}, optional A flag indicating how to handle boundaries:

* None:  Do not apply any boundary conditions. Raise an error if
  boundary conditions are required for the operation.
* 'fill':  Set values outside the array boundary to fill_value
  (i.e. a Dirichlet boundary condition.)
* 'extend': Set values outside the array to the nearest array
  value. (i.e. a limited form of Neumann boundary condition.)
* 'periodic': Set values by wrapping around the array on the specified
    axes. (i.e. a periodic boundary condition.)
Optionally a dict mapping axis name to seperate values for each axis
can be passed.

fill_value : {float, dict}, optional The value to use in boundary conditions with boundary='fill'. Optionally a dict mapping axis name to separate values for each axis can be passed. Default is 0. dask : {"forbidden", "allowed", "parallelized"}, default: "forbidden" How to handle applying to objects containing lazy data in the form of dask arrays. Passed directly on to xarray.apply_ufunc. map_overlap : bool, optional Whether or not to automatically apply the function along chunked core dimensions using dask.array.map_overlap. Default is False. If True, will need to be accompanied by dask='allowed'.

Returns

results The result of the call to xarray.apply_ufunc, but including the coordinates given by the signature, which are read from the grid. Output is either a single object or a tuple of such objects.

See Also

apply_as_grid_ufunc as_grid_ufunc

Source code in xgcm/grid.py
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
def apply_as_grid_ufunc(
    self,
    func: Callable,
    *args: xr.DataArray,
    axis: Optional[Sequence[Sequence[str]]] = None,
    signature: Union[str, _GridUFuncSignature] = "",
    boundary_width: Optional[Mapping[str, Tuple[int, int]]] = None,
    boundary: Optional[Union[str, Mapping[str, str]]] = None,
    fill_value: Optional[Union[float, Mapping[str, float]]] = None,
    dask: Literal["forbidden", "parallelized", "allowed"] = "forbidden",
    map_overlap: bool = False,
    **kwargs,
):
    """
    Apply a function to the given arguments in a grid-aware manner.

    The relationship between xgcm axes on the input and output are specified by
    `signature`. Wraps xarray.apply_ufunc, but determines the core dimensions
    from the grid and signature passed.

    Parameters
    ----------
    func : callable
        Function to call like `func(*args, **kwargs)` on numpy-like unlabeled
        arrays (`.data`).

        Passed directly on to `xarray.apply_ufunc`.
    *args : xarray.DataArray
        One or more xarray DataArray objects to apply the function to.
    axis : Sequence[Sequence[str]], optional
        Names of xgcm.Axes on which to act, for each array in args. Multiple axes can be passed as a sequence (e.g. ``['X', 'Y']``).
        Function will be executed over all Axes simultaneously, and each Axis must be present in the Grid.
    signature : string
        Grid universal function signature. Specifies the xgcm.Axis names and
        positions for each input and output variable, e.g.,

        ``"(X:center)->(X:left)"`` for ``diff_center_to_left(a)``.
    boundary_width : Dict[str: Tuple[int, int]
        The widths of the boundaries at the edge of each array.
        Supplied in a mapping of the form {axis_name: (lower_width, upper_width)}.
    boundary : {None, 'fill', 'extend', 'periodic', dict}, optional
        A flag indicating how to handle boundaries:

        * None:  Do not apply any boundary conditions. Raise an error if
          boundary conditions are required for the operation.
        * 'fill':  Set values outside the array boundary to fill_value
          (i.e. a Dirichlet boundary condition.)
        * 'extend': Set values outside the array to the nearest array
          value. (i.e. a limited form of Neumann boundary condition.)
        * 'periodic': Set values by wrapping around the array on the specified
            axes. (i.e. a periodic boundary condition.)
        Optionally a dict mapping axis name to seperate values for each axis
        can be passed.
    fill_value : {float, dict}, optional
        The value to use in boundary conditions with `boundary='fill'`.
        Optionally a dict mapping axis name to separate values for each axis
        can be passed. Default is 0.
    dask : {"forbidden", "allowed", "parallelized"}, default: "forbidden"
        How to handle applying to objects containing lazy data in the form of
        dask arrays. Passed directly on to `xarray.apply_ufunc`.
    map_overlap : bool, optional
        Whether or not to automatically apply the function along chunked core dimensions using dask.array.map_overlap.
        Default is False. If True, will need to be accompanied by dask='allowed'.

    Returns
    -------
    results
        The result of the call to `xarray.apply_ufunc`, but including the coordinates
        given by the signature, which are read from the grid. Output is either a single
        object or a tuple of such objects.

    See Also
    --------
    apply_as_grid_ufunc
    as_grid_ufunc
    """
    return apply_as_grid_ufunc(
        func,
        *args,
        axis=axis,
        grid=self,
        signature=signature,
        boundary_width=boundary_width,
        boundary=boundary,
        fill_value=fill_value,
        dask=dask,
        map_overlap=map_overlap,
        **kwargs,
    )

interp

interp(da, axis, **kwargs)

Interpolate neighboring points to the intermediate grid point along this axis.

Parameters

axis : str or list or tuple Name of the axis on which to act. Multiple axes can be passed as list or tuple (e.g. ['X', 'Y']). Functions will be executed over each axis in the given order. to : str or dict, optional The direction in which to shift the array (can be ['center','left','right','inner','outer']). If not specified, default will be used. Optionally a dict with seperate values for each axis can be passed (see example) boundary : None or str or dict, optional A flag indicating how to handle boundaries:

* None:  Do not apply any boundary conditions. Raise an error if
  boundary conditions are required for the operation.
* 'fill':  Set values outside the array boundary to fill_value
  (i.e. a Dirichlet boundary condition.)
* 'extend': Set values outside the array to the nearest array
  value. (i.e. a limited form of Neumann boundary condition.)

Optionally a dict with separate values for each axis can be passed (see example)

fill_value : {float, dict}, optional The value to use in the boundary condition with boundary='fill'. Optionally a dict with seperate values for each axis can be passed (see example) vector_partner : dict, optional A single key (string), value (DataArray). Optionally a dict with seperate values for each axis can be passed (see example) metric_weighted : str or tuple of str or dict, optional Optionally use metrics to multiply/divide with appropriate metrics before/after the operation. E.g. if passing metric_weighted=['X', 'Y'], values will be weighted by horizontal area. If False (default), the points will be weighted equally. Optionally a dict with seperate values for each axis can be passed.

Returns

da_i : xarray.DataArray The interpolated data

Examples

Each keyword argument can be provided as a per-axis dictionary. For instance, if a global 2D dataset should be interpolated on both X and Y axis, but it is only periodic in the X axis, we can do this:

grid.interp(da, ["X", "Y"], periodic={"X": True, "Y": False})

Source code in xgcm/grid.py
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
def interp(self, da, axis, **kwargs):
    """
    Interpolate neighboring points to the intermediate grid point along
    this axis.


    Parameters
    ----------
    axis : str or list or tuple
        Name of the axis on which to act. Multiple axes can be passed as list or
        tuple (e.g. ``['X', 'Y']``). Functions will be executed over each axis in the
        given order.
    to : str or dict, optional
        The direction in which to shift the array (can be ['center','left','right','inner','outer']).
        If not specified, default will be used.
        Optionally a dict with seperate values for each axis can be passed (see example)
    boundary : None or str or dict, optional
        A flag indicating how to handle boundaries:

        * None:  Do not apply any boundary conditions. Raise an error if
          boundary conditions are required for the operation.
        * 'fill':  Set values outside the array boundary to fill_value
          (i.e. a Dirichlet boundary condition.)
        * 'extend': Set values outside the array to the nearest array
          value. (i.e. a limited form of Neumann boundary condition.)

        Optionally a dict with separate values for each axis can be passed (see example)
    fill_value : {float, dict}, optional
        The value to use in the boundary condition with `boundary='fill'`.
        Optionally a dict with seperate values for each axis can be passed (see example)
    vector_partner : dict, optional
        A single key (string), value (DataArray).
        Optionally a dict with seperate values for each axis can be passed (see example)
    metric_weighted : str or tuple of str or dict, optional
        Optionally use metrics to multiply/divide with appropriate metrics before/after the operation.
        E.g. if passing `metric_weighted=['X', 'Y']`, values will be weighted by horizontal area.
        If `False` (default), the points will be weighted equally.
        Optionally a dict with seperate values for each axis can be passed.

    Returns
    -------
    da_i : xarray.DataArray
        The interpolated data

    Examples
    --------
    Each keyword argument can be provided as a `per-axis` dictionary. For instance,
    if a global 2D dataset should be interpolated on both X and Y axis, but it is
    only periodic in the X axis, we can do this:

    >>> grid.interp(da, ["X", "Y"], periodic={"X": True, "Y": False})
    """
    return self._1d_grid_ufunc_dispatch("interp", da, axis, **kwargs)

diff

diff(da, axis, **kwargs)

Difference neighboring points to the intermediate grid point.

Parameters

axis : str or list or tuple Name of the axis on which to act. Multiple axes can be passed as list or tuple (e.g. ['X', 'Y']). Functions will be executed over each axis in the given order. to : str or dict, optional The direction in which to shift the array (can be ['center','left','right','inner','outer']). If not specified, default will be used. Optionally a dict with seperate values for each axis can be passed (see example) boundary : None or str or dict, optional A flag indicating how to handle boundaries:

* None:  Do not apply any boundary conditions. Raise an error if
  boundary conditions are required for the operation.
* 'fill':  Set values outside the array boundary to fill_value
  (i.e. a Dirichlet boundary condition.)
* 'extend': Set values outside the array to the nearest array
  value. (i.e. a limited form of Neumann boundary condition.)

Optionally a dict with separate values for each axis can be passed (see example)

fill_value : {float, dict}, optional The value to use in the boundary condition with boundary='fill'. Optionally a dict with seperate values for each axis can be passed (see example) vector_partner : dict, optional A single key (string), value (DataArray). Optionally a dict with seperate values for each axis can be passed (see example) metric_weighted : str or tuple of str or dict, optional Optionally use metrics to multiply/divide with appropriate metrics before/after the operation. E.g. if passing metric_weighted=['X', 'Y'], values will be weighted by horizontal area. If False (default), the points will be weighted equally. Optionally a dict with seperate values for each axis can be passed.

Returns

da_i : xarray.DataArray The differenced data

Examples

Each keyword argument can be provided as a per-axis dictionary. For instance, if a global 2D dataset should be differenced on both X and Y axis, but the fill value at the boundary should be differenc for each axis, we can do this:

grid.diff(da, ["X", "Y"], fill_value={"X": 0, "Y": 100})

Source code in xgcm/grid.py
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
def diff(self, da, axis, **kwargs):
    """
    Difference neighboring points to the intermediate grid point.

    Parameters
    ----------
    axis : str or list or tuple
        Name of the axis on which to act. Multiple axes can be passed as list or
        tuple (e.g. ``['X', 'Y']``). Functions will be executed over each axis in the
        given order.
    to : str or dict, optional
        The direction in which to shift the array (can be ['center','left','right','inner','outer']).
        If not specified, default will be used.
        Optionally a dict with seperate values for each axis can be passed (see example)
    boundary : None or str or dict, optional
        A flag indicating how to handle boundaries:

        * None:  Do not apply any boundary conditions. Raise an error if
          boundary conditions are required for the operation.
        * 'fill':  Set values outside the array boundary to fill_value
          (i.e. a Dirichlet boundary condition.)
        * 'extend': Set values outside the array to the nearest array
          value. (i.e. a limited form of Neumann boundary condition.)

        Optionally a dict with separate values for each axis can be passed (see example)
    fill_value : {float, dict}, optional
        The value to use in the boundary condition with `boundary='fill'`.
        Optionally a dict with seperate values for each axis can be passed (see example)
    vector_partner : dict, optional
        A single key (string), value (DataArray).
        Optionally a dict with seperate values for each axis can be passed (see example)
    metric_weighted : str or tuple of str or dict, optional
        Optionally use metrics to multiply/divide with appropriate metrics before/after the operation.
        E.g. if passing `metric_weighted=['X', 'Y']`, values will be weighted by horizontal area.
        If `False` (default), the points will be weighted equally.
        Optionally a dict with seperate values for each axis can be passed.

    Returns
    -------
    da_i : xarray.DataArray
        The differenced data

    Examples
    --------
    Each keyword argument can be provided as a `per-axis` dictionary. For instance,
    if a global 2D dataset should be differenced on both X and Y axis, but the fill
    value at the boundary should be differenc for each axis, we can do this:

    >>> grid.diff(da, ["X", "Y"], fill_value={"X": 0, "Y": 100})
    """
    return self._1d_grid_ufunc_dispatch("diff", da, axis, **kwargs)

min

min(da, axis, **kwargs)

Minimum of neighboring points on the intermediate grid point.

    Parameters

axis : str or list or tuple Name of the axis on which to act. Multiple axes can be passed as list or tuple (e.g. ['X', 'Y']). Functions will be executed over each axis in the given order. to : str or dict, optional The direction in which to shift the array (can be ['center','left','right','inner','outer']). If not specified, default will be used. Optionally a dict with seperate values for each axis can be passed (see example) boundary : None or str or dict, optional A flag indicating how to handle boundaries:

* None:  Do not apply any boundary conditions. Raise an error if
  boundary conditions are required for the operation.
* 'fill':  Set values outside the array boundary to fill_value
  (i.e. a Dirichlet boundary condition.)
* 'extend': Set values outside the array to the nearest array
  value. (i.e. a limited form of Neumann boundary condition.)

Optionally a dict with separate values for each axis can be passed (see example)

fill_value : {float, dict}, optional The value to use in the boundary condition with boundary='fill'. Optionally a dict with seperate values for each axis can be passed (see example) vector_partner : dict, optional A single key (string), value (DataArray). Optionally a dict with seperate values for each axis can be passed (see example) metric_weighted : str or tuple of str or dict, optional Optionally use metrics to multiply/divide with appropriate metrics before/after the operation. E.g. if passing metric_weighted=['X', 'Y'], values will be weighted by horizontal area. If False (default), the points will be weighted equally. Optionally a dict with seperate values for each axis can be passed.

Returns

da_i : xarray.DataArray The mimimum data

Examples

Each keyword argument can be provided as a per-axis dictionary. For instance, if we want to find the minimum of sourrounding grid cells for a global 2D dataset in both X and Y axis, but the fill value at the boundary should be different for each axis, we can do this:

grid.min(da, ["X", "Y"], fill_value={"X": 0, "Y": 100})

Source code in xgcm/grid.py
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
def min(self, da, axis, **kwargs):
    """
    Minimum of neighboring points on the intermediate grid point.

            Parameters
    ----------
    axis : str or list or tuple
        Name of the axis on which to act. Multiple axes can be passed as list or
        tuple (e.g. ``['X', 'Y']``). Functions will be executed over each axis in the
        given order.
    to : str or dict, optional
        The direction in which to shift the array (can be ['center','left','right','inner','outer']).
        If not specified, default will be used.
        Optionally a dict with seperate values for each axis can be passed (see example)
    boundary : None or str or dict, optional
        A flag indicating how to handle boundaries:

        * None:  Do not apply any boundary conditions. Raise an error if
          boundary conditions are required for the operation.
        * 'fill':  Set values outside the array boundary to fill_value
          (i.e. a Dirichlet boundary condition.)
        * 'extend': Set values outside the array to the nearest array
          value. (i.e. a limited form of Neumann boundary condition.)

        Optionally a dict with separate values for each axis can be passed (see example)
    fill_value : {float, dict}, optional
        The value to use in the boundary condition with `boundary='fill'`.
        Optionally a dict with seperate values for each axis can be passed (see example)
    vector_partner : dict, optional
        A single key (string), value (DataArray).
        Optionally a dict with seperate values for each axis can be passed (see example)
    metric_weighted : str or tuple of str or dict, optional
        Optionally use metrics to multiply/divide with appropriate metrics before/after the operation.
        E.g. if passing `metric_weighted=['X', 'Y']`, values will be weighted by horizontal area.
        If `False` (default), the points will be weighted equally.
        Optionally a dict with seperate values for each axis can be passed.

    Returns
    -------
    da_i : xarray.DataArray
        The mimimum data

    Examples
    --------
    Each keyword argument can be provided as a `per-axis` dictionary. For instance,
    if we want to find the minimum of sourrounding grid cells for a global 2D dataset
    in both X and Y axis, but the fill value at the boundary should be different
    for each axis, we can do this:

    >>> grid.min(da, ["X", "Y"], fill_value={"X": 0, "Y": 100})
    """
    return self._1d_grid_ufunc_dispatch("min", da, axis, **kwargs)

max

max(da, axis, **kwargs)

Maximum of neighboring points on the intermediate grid point.

Parameters

axis : str or list or tuple Name of the axis on which to act. Multiple axes can be passed as list or tuple (e.g. ['X', 'Y']). Functions will be executed over each axis in the given order. to : str or dict, optional The direction in which to shift the array (can be ['center','left','right','inner','outer']). If not specified, default will be used. Optionally a dict with seperate values for each axis can be passed (see example) boundary : None or str or dict, optional A flag indicating how to handle boundaries:

* None:  Do not apply any boundary conditions. Raise an error if
  boundary conditions are required for the operation.
* 'fill':  Set values outside the array boundary to fill_value
  (i.e. a Dirichlet boundary condition.)
* 'extend': Set values outside the array to the nearest array
  value. (i.e. a limited form of Neumann boundary condition.)

Optionally a dict with separate values for each axis can be passed (see example)

fill_value : {float, dict}, optional The value to use in the boundary condition with boundary='fill'. Optionally a dict with seperate values for each axis can be passed (see example) vector_partner : dict, optional A single key (string), value (DataArray). Optionally a dict with seperate values for each axis can be passed (see example) metric_weighted : str or tuple of str or dict, optional Optionally use metrics to multiply/divide with appropriate metrics before/after the operation. E.g. if passing metric_weighted=['X', 'Y'], values will be weighted by horizontal area. If False (default), the points will be weighted equally. Optionally a dict with seperate values for each axis can be passed.

Returns

da_i : xarray.DataArray The maximum data

Examples

Each keyword argument can be provided as a per-axis dictionary. For instance, if we want to find the maximum of sourrounding grid cells for a global 2D dataset in both X and Y axis, but the fill value at the boundary should be different for each axis, we can do this:

grid.max(da, ["X", "Y"], fill_value={"X": 0, "Y": 100})

Source code in xgcm/grid.py
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
def max(self, da, axis, **kwargs):
    """
    Maximum of neighboring points on the intermediate grid point.

    Parameters
    ----------
    axis : str or list or tuple
        Name of the axis on which to act. Multiple axes can be passed as list or
        tuple (e.g. ``['X', 'Y']``). Functions will be executed over each axis in the
        given order.
    to : str or dict, optional
        The direction in which to shift the array (can be ['center','left','right','inner','outer']).
        If not specified, default will be used.
        Optionally a dict with seperate values for each axis can be passed (see example)
    boundary : None or str or dict, optional
        A flag indicating how to handle boundaries:

        * None:  Do not apply any boundary conditions. Raise an error if
          boundary conditions are required for the operation.
        * 'fill':  Set values outside the array boundary to fill_value
          (i.e. a Dirichlet boundary condition.)
        * 'extend': Set values outside the array to the nearest array
          value. (i.e. a limited form of Neumann boundary condition.)

        Optionally a dict with separate values for each axis can be passed (see example)
    fill_value : {float, dict}, optional
        The value to use in the boundary condition with `boundary='fill'`.
        Optionally a dict with seperate values for each axis can be passed (see example)
    vector_partner : dict, optional
        A single key (string), value (DataArray).
        Optionally a dict with seperate values for each axis can be passed (see example)
    metric_weighted : str or tuple of str or dict, optional
        Optionally use metrics to multiply/divide with appropriate metrics before/after the operation.
        E.g. if passing `metric_weighted=['X', 'Y']`, values will be weighted by horizontal area.
        If `False` (default), the points will be weighted equally.
        Optionally a dict with seperate values for each axis can be passed.

    Returns
    -------
    da_i : xarray.DataArray
        The maximum data

    Examples
    --------
    Each keyword argument can be provided as a `per-axis` dictionary. For instance,
    if we want to find the maximum of sourrounding grid cells for a global 2D dataset
    in both X and Y axis, but the fill value at the boundary should be different
    for each axis, we can do this:

    >>> grid.max(da, ["X", "Y"], fill_value={"X": 0, "Y": 100})
    """
    return self._1d_grid_ufunc_dispatch("max", da, axis, **kwargs)

cumsum

cumsum(da: DataArray, axis: Union[str, Iterable[str]], to=None, boundary=None, fill_value=None, metric_weighted=None, keep_coords: bool = False) -> xr.DataArray

Cumulatively sum a DataArray, transforming to the intermediate axis position.

Parameters

da: xarray.DataArray Data to apply cumsum to. axis : str or list or tuple Name of the axis on which to act. Multiple axes can be passed as list or tuple (e.g. ['X', 'Y']). Functions will be executed over each axis in the given order. to : str or dict, optional The direction in which to shift the array (can be ['center','left','right','inner','outer']). If not specified, default will be used. Optionally a dict with seperate values for each axis can be passed (see example) boundary : None or str or dict, optional A flag indicating how to handle boundaries:

* None:  Do not apply any boundary conditions. Raise an error if
  boundary conditions are required for the operation.
* 'fill':  Set values outside the array boundary to fill_value
  (i.e. a Dirichlet boundary condition.)
* 'extend': Set values outside the array to the nearest array
  value. (i.e. a limited form of Neumann boundary condition.)

Optionally a dict with separate values for each axis can be passed (see example)

fill_value : {float, dict}, optional The value to use in the boundary condition with boundary='fill'. Optionally a dict with seperate values for each axis can be passed (see example) metric_weighted : str or tuple of str or dict, optional Optionally use metrics to multiply/divide with appropriate metrics before/after the operation. E.g. if passing metric_weighted=['X', 'Y'], values will be weighted by horizontal area. If False (default), the points will be weighted equally. Optionally a dict with seperate values for each axis can be passed.

Returns

da_i : xarray.DataArray The cumsummed data

Examples

Each keyword argument can be provided as a per-axis dictionary. For instance, if we want to compute the cumulative sum of global 2D dataset in both X and Y axis, but the fill value at the boundary should be different for each axis, we can do this:

grid.max(da, ["X", "Y"], fill_value={"X": 0, "Y": 100})

Source code in xgcm/grid.py
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
def cumsum(
    self,
    da: xr.DataArray,
    axis: Union[str, Iterable[str]],
    to=None,
    boundary=None,
    fill_value=None,
    metric_weighted=None,
    keep_coords: bool = False,
) -> xr.DataArray:
    """
    Cumulatively sum a DataArray, transforming to the intermediate axis
    position.

    Parameters
    ----------
    da: xarray.DataArray
        Data to apply cumsum to.
    axis : str or list or tuple
        Name of the axis on which to act. Multiple axes can be passed as list or
        tuple (e.g. ``['X', 'Y']``). Functions will be executed over each axis in the
        given order.
    to : str or dict, optional
        The direction in which to shift the array (can be ['center','left','right','inner','outer']).
        If not specified, default will be used.
        Optionally a dict with seperate values for each axis can be passed (see example)
    boundary : None or str or dict, optional
        A flag indicating how to handle boundaries:

        * None:  Do not apply any boundary conditions. Raise an error if
          boundary conditions are required for the operation.
        * 'fill':  Set values outside the array boundary to fill_value
          (i.e. a Dirichlet boundary condition.)
        * 'extend': Set values outside the array to the nearest array
          value. (i.e. a limited form of Neumann boundary condition.)

        Optionally a dict with separate values for each axis can be passed (see example)
    fill_value : {float, dict}, optional
        The value to use in the boundary condition with `boundary='fill'`.
        Optionally a dict with seperate values for each axis can be passed (see example)
    metric_weighted : str or tuple of str or dict, optional
        Optionally use metrics to multiply/divide with appropriate metrics before/after the operation.
        E.g. if passing `metric_weighted=['X', 'Y']`, values will be weighted by horizontal area.
        If `False` (default), the points will be weighted equally.
        Optionally a dict with seperate values for each axis can be passed.

    Returns
    -------
    da_i : xarray.DataArray
        The cumsummed data

    Examples
    --------
    Each keyword argument can be provided as a `per-axis` dictionary. For instance,
    if we want to compute the cumulative sum of global 2D dataset
    in both X and Y axis, but the fill value at the boundary should be different
    for each axis, we can do this:

    >>> grid.max(da, ["X", "Y"], fill_value={"X": 0, "Y": 100})
    """

    if isinstance(axis, str):
        axis = [axis]
    to = self._map_kwargs_over_axes(to)

    if isinstance(metric_weighted, str):
        metric_weighted = (metric_weighted,)
    metric_weighted = self._map_kwargs_over_axes(metric_weighted)

    data = da
    axes = [self.axes[ax_name] for ax_name in axis]
    for ax in axes:
        pos, dim = ax._get_position_name(da)

        ax_metric_weighted = metric_weighted[ax.name]
        if ax_metric_weighted:
            metric = self.get_metric(data, ax_metric_weighted)
            data = data * metric

        # first use xarray's cumsum method
        data = data.cumsum(dim=dim)

        ax_to = to[ax.name]
        if ax_to is None:
            ax_to = ax._default_shifts[pos]

        # now pad / trim the data as necessary
        # here we enumerate all the valid possible shifts
        if (pos == "center" and ax_to == "right") or (
            pos == "left" and ax_to == "center"
        ):
            # do nothing, this is the default for how cumsum works
            ax_boundary_width = {ax.name: (0, 0)}
        elif (pos == "center" and ax_to == "left") or (
            pos == "right" and ax_to == "center"
        ):
            data = data.isel(**{dim: slice(0, -1)})
            ax_boundary_width = {ax.name: (1, 0)}
        elif (pos == "center" and ax_to == "inner") or (
            pos == "outer" and ax_to == "center"
        ):
            data = data.isel(**{dim: slice(0, -1)})
            ax_boundary_width = {ax.name: (0, 0)}
        elif (pos == "center" and ax_to == "outer") or (
            pos == "inner" and ax_to == "center"
        ):
            ax_boundary_width = {ax.name: (1, 0)}
        else:
            raise ValueError(
                f"From `{pos}` to `{ax_to}` is not a valid position "
                f"shift for cumsum operation along axis {ax}."
            )

        padded = pad(
            data=data,
            grid=self,
            boundary_width=ax_boundary_width,
            boundary=boundary,
            fill_value=fill_value,
        )

        # get dim with position to
        new_dim_name = ax.coords[ax_to]
        renamed = padded.rename(**{dim: new_dim_name})

        # drop all coords to avoid conflicts when attaching new ones
        coordless = renamed.drop_vars(renamed.coords)

        reattached = _reattach_coords(
            [coordless],
            grid=self,
            boundary_width=ax_boundary_width,
            keep_coords=keep_coords,
        )[0]

        ax_metric_weighted = metric_weighted[ax.name]
        if ax_metric_weighted:
            metric = self.get_metric(reattached, ax_metric_weighted)
            reattached = reattached / metric

        data = reattached

    return data

_apply_vector_function

_apply_vector_function(function, vector, **kwargs)
Source code in xgcm/grid.py
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
def _apply_vector_function(self, function, vector, **kwargs):
    if not (len(vector) == 2 and isinstance(vector, dict)):
        raise ValueError(
            "Input is expected to be a dictionary with two key/value pairs which map grid axis to the vector component parallel to that axis"
        )

    warnings.warn(
        "`interp_2d_vector` and `diff_2d_vector` will be removed from future releases."
        "The same functionality will be accessible under the `xgcm.Grid.diff` and `xgcm.Grid.interp` methods, please see those docstrings for details.",
        category=DeprecationWarning,
    )

    warnings.warn(
        "`interp_2d_vector` and `diff_2d_vector` will be removed from future releases."
        "The same functionality will be available under the `xgcm.Grid` methods.",
        category=DeprecationWarning,
    )

    # this is currently only tested for c-grid vectors defined on edges
    # moving to cell centers. We need to detect if we got something else
    to = kwargs.get("to", "center")
    if to != "center":
        raise NotImplementedError(
            "Only vector interpolation to cell "
            "center is implemented, but got "
            "to=%r" % to
        )
    for axis_name, component in vector.items():
        axis = self.axes[axis_name]
        position, coord = axis._get_position_name(component)
        if position == "center":
            raise NotImplementedError(
                "Only vector interpolation to cell "
                "center is implemented, but vector "
                "%s component is defined at center "
                "(dims: %r)" % (axis_name, component.dims)
            )

    x_axis_name, y_axis_name = list(vector)

    # apply for each component
    x_component = function(
        {x_axis_name: vector[x_axis_name]},
        x_axis_name,
        other_component={y_axis_name: vector[y_axis_name]},
        **kwargs,
    )

    y_component = function(
        {y_axis_name: vector[y_axis_name]},
        y_axis_name,
        other_component={x_axis_name: vector[x_axis_name]},
        **kwargs,
    )
    return {x_axis_name: x_component, y_axis_name: y_component}

diff_2d_vector

diff_2d_vector(vector, **kwargs)

Difference a 2D vector to the intermediate grid point. This method is only necessary for complex grid topologies.

Parameters

vector : dict A dictionary with two entries. Keys are axis names, values are vector components along each axis.

%(neighbor_binary_func.parameters.no_f)s

Returns

vector_diff : dict A dictionary with two entries. Keys are axis names, values are differenced vector components along each axis

Source code in xgcm/grid.py
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
def diff_2d_vector(self, vector, **kwargs):
    """
    Difference a 2D vector to the intermediate grid point. This method is
    only necessary for complex grid topologies.

    Parameters
    ----------
    vector : dict
        A dictionary with two entries. Keys are axis names, values are
        vector components along each axis.

    %(neighbor_binary_func.parameters.no_f)s

    Returns
    -------
    vector_diff : dict
        A dictionary with two entries. Keys are axis names, values
        are differenced vector components along each axis
    """
    return self._apply_vector_function(self.diff, vector, **kwargs)

interp_2d_vector

interp_2d_vector(vector, **kwargs)

Interpolate a 2D vector to the intermediate grid point. This method is only necessary for complex grid topologies.

Parameters

vector : dict A dictionary with two entries. Keys are axis names, values are vector components along each axis. to : {'center', 'left', 'right', 'inner', 'outer'} The direction in which to shift the array. If not specified, default will be used. boundary : {None, 'fill', 'extend'} A flag indicating how to handle boundaries:

* None:  Do not apply any boundary conditions. Raise an error if
  boundary conditions are required for the operation.
* 'fill':  Set values outside the array boundary to fill_value
  (i.e. a Dirichlet boundary condition.)
* 'extend': Set values outside the array to the nearest array
  value. (i.e. a limited form of Neumann boundary condition.)
float, optional

The value to use in the boundary condition with boundary='fill'.

vector_partner : dict, optional A single key (string), value (DataArray) keep_coords : boolean, optional Preserves compatible coordinates. False by default.

Returns

vector_interp : dict A dictionary with two entries. Keys are axis names, values are interpolated vector components along each axis

Source code in xgcm/grid.py
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
def interp_2d_vector(self, vector, **kwargs):
    """
    Interpolate a 2D vector to the intermediate grid point. This method is
    only necessary for complex grid topologies.

    Parameters
    ----------
    vector : dict
        A dictionary with two entries. Keys are axis names, values are
        vector components along each axis.
    to : {'center', 'left', 'right', 'inner', 'outer'}
        The direction in which to shift the array. If not specified,
        default will be used.
    boundary : {None, 'fill', 'extend'}
        A flag indicating how to handle boundaries:

        * None:  Do not apply any boundary conditions. Raise an error if
          boundary conditions are required for the operation.
        * 'fill':  Set values outside the array boundary to fill_value
          (i.e. a Dirichlet boundary condition.)
        * 'extend': Set values outside the array to the nearest array
          value. (i.e. a limited form of Neumann boundary condition.)

    fill_value : float, optional
        The value to use in the boundary condition with `boundary='fill'`.
    vector_partner : dict, optional
        A single key (string), value (DataArray)
    keep_coords : boolean, optional
        Preserves compatible coordinates. False by default.

    Returns
    -------
    vector_interp : dict
        A dictionary with two entries. Keys are axis names, values
        are interpolated vector components along each axis
    """

    return self._apply_vector_function(self.interp, vector, **kwargs)

derivative

derivative(da, axis, **kwargs)

Take the centered-difference derivative along specified axis.

Parameters

axis : str or list or tuple Name of the axis on which to act. Multiple axes can be passed as list or tuple (e.g. ['X', 'Y']). Functions will be executed over each axis in the given order. to : str or dict, optional The direction in which to shift the array (can be ['center','left','right','inner','outer']). If not specified, default will be used. Optionally a dict with seperate values for each axis can be passed (see example) boundary : None or str or dict, optional A flag indicating how to handle boundaries:

* None:  Do not apply any boundary conditions. Raise an error if
  boundary conditions are required for the operation.
* 'fill':  Set values outside the array boundary to fill_value
  (i.e. a Dirichlet boundary condition.)
* 'extend': Set values outside the array to the nearest array
  value. (i.e. a limited form of Neumann boundary condition.)

Optionally a dict with separate values for each axis can be passed (see example)

fill_value : {float, dict}, optional The value to use in the boundary condition with boundary='fill'. Optionally a dict with seperate values for each axis can be passed (see example) vector_partner : dict, optional A single key (string), value (DataArray). Optionally a dict with seperate values for each axis can be passed (see example) metric_weighted : str or tuple of str or dict, optional Optionally use metrics to multiply/divide with appropriate metrics before/after the operation. E.g. if passing metric_weighted=['X', 'Y'], values will be weighted by horizontal area. If False (default), the points will be weighted equally. Optionally a dict with seperate values for each axis can be passed.

Returns

da_i : xarray.DataArray The differentiated data

Source code in xgcm/grid.py
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
def derivative(self, da, axis, **kwargs):
    """
    Take the centered-difference derivative along specified axis.

    Parameters
    ----------
    axis : str or list or tuple
        Name of the axis on which to act. Multiple axes can be passed as list or
        tuple (e.g. ``['X', 'Y']``). Functions will be executed over each axis in the
        given order.
    to : str or dict, optional
        The direction in which to shift the array (can be ['center','left','right','inner','outer']).
        If not specified, default will be used.
        Optionally a dict with seperate values for each axis can be passed (see example)
    boundary : None or str or dict, optional
        A flag indicating how to handle boundaries:

        * None:  Do not apply any boundary conditions. Raise an error if
          boundary conditions are required for the operation.
        * 'fill':  Set values outside the array boundary to fill_value
          (i.e. a Dirichlet boundary condition.)
        * 'extend': Set values outside the array to the nearest array
          value. (i.e. a limited form of Neumann boundary condition.)

        Optionally a dict with separate values for each axis can be passed (see example)
    fill_value : {float, dict}, optional
        The value to use in the boundary condition with `boundary='fill'`.
        Optionally a dict with seperate values for each axis can be passed (see example)
    vector_partner : dict, optional
        A single key (string), value (DataArray).
        Optionally a dict with seperate values for each axis can be passed (see example)
    metric_weighted : str or tuple of str or dict, optional
        Optionally use metrics to multiply/divide with appropriate metrics before/after the operation.
        E.g. if passing `metric_weighted=['X', 'Y']`, values will be weighted by horizontal area.
        If `False` (default), the points will be weighted equally.
        Optionally a dict with seperate values for each axis can be passed.

    Returns
    -------
    da_i : xarray.DataArray
        The differentiated data
    """
    diff = self.diff(da, axis, **kwargs)
    dx = self.get_metric(diff, (axis,))
    return diff / dx

integrate

integrate(da, axis, **kwargs)

Perform finite volume integration along specified axis or axes, accounting for grid metrics. (e.g. cell length, area, volume)

Parameters

axis : str, list of str Name of the axis on which to act **kwargs: dict Additional arguments passed to xarray.DataArray.sum

Returns

da_i : xarray.DataArray The integrated data

Source code in xgcm/grid.py
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
def integrate(self, da, axis, **kwargs):
    """
    Perform finite volume integration along specified axis or axes,
    accounting for grid metrics. (e.g. cell length, area, volume)

    Parameters
    ----------
    axis : str, list of str
        Name of the axis on which to act
    **kwargs: dict
        Additional arguments passed to `xarray.DataArray.sum`

    Returns
    -------
    da_i : xarray.DataArray
        The integrated data
    """

    weight = self.get_metric(da, axis)
    weighted = da * weight
    # TODO: We should integrate xarray.weighted once available.

    # get dimension(s) corresponding to `da` and `axis` input
    dim = self._get_dims_from_axis(da, axis)

    return weighted.sum(dim, **kwargs)

cumint

cumint(da, axis, **kwargs)

Perform cumulative integral along specified axis or axes, accounting for grid metrics. (e.g. cell length, area, volume)

Parameters

axis : str or list or tuple Name of the axis on which to act. Multiple axes can be passed as list or tuple (e.g. ['X', 'Y']). Functions will be executed over each axis in the given order. to : str or dict, optional The direction in which to shift the array (can be ['center','left','right','inner','outer']). If not specified, default will be used. Optionally a dict with separate values for each axis can be passed (see example) boundary : None or str or dict, optional A flag indicating how to handle boundaries:

* None:  Do not apply any boundary conditions. Raise an error if
  boundary conditions are required for the operation.
* 'fill':  Set values outside the array boundary to fill_value
  (i.e. a Dirichlet boundary condition.)
* 'extend': Set values outside the array to the nearest array
  value. (i.e. a limited form of Neumann boundary condition.)

Optionally a dict with separate values for each axis can be passed.

fill_value : {float, dict}, optional The value to use in the boundary condition with boundary='fill'. Optionally a dict with separate values for each axis can be passed. metric_weighted : str or tuple of str or dict, optional Optionally use metrics to multiply/divide with appropriate metrics before/after the operation. E.g. if passing metric_weighted=['X', 'Y'], values will be weighted by horizontal area. If False (default), the points will be weighted equally. Optionally a dict with seperate values for each axis can be passed.

Returns

da_i : xarray.DataArray The cumulatively integrated data

Source code in xgcm/grid.py
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
def cumint(self, da, axis, **kwargs):
    """
    Perform cumulative integral along specified axis or axes,
    accounting for grid metrics. (e.g. cell length, area, volume)

    Parameters
    ----------
    axis : str or list or tuple
        Name of the axis on which to act. Multiple axes can be passed as list or
        tuple (e.g. ``['X', 'Y']``). Functions will be executed over each axis in the
        given order.
    to : str or dict, optional
        The direction in which to shift the array (can be ['center','left','right','inner','outer']).
        If not specified, default will be used.
        Optionally a dict with separate values for each axis can be passed (see example)
    boundary : None or str or dict, optional
        A flag indicating how to handle boundaries:

        * None:  Do not apply any boundary conditions. Raise an error if
          boundary conditions are required for the operation.
        * 'fill':  Set values outside the array boundary to fill_value
          (i.e. a Dirichlet boundary condition.)
        * 'extend': Set values outside the array to the nearest array
          value. (i.e. a limited form of Neumann boundary condition.)

        Optionally a dict with separate values for each axis can be passed.
    fill_value : {float, dict}, optional
        The value to use in the boundary condition with `boundary='fill'`.
        Optionally a dict with separate values for each axis can be passed.
    metric_weighted : str or tuple of str or dict, optional
        Optionally use metrics to multiply/divide with appropriate metrics before/after the operation.
        E.g. if passing `metric_weighted=['X', 'Y']`, values will be weighted by horizontal area.
        If `False` (default), the points will be weighted equally.
        Optionally a dict with seperate values for each axis can be passed.

    Returns
    -------
    da_i : xarray.DataArray
        The cumulatively integrated data
    """

    weight = self.get_metric(da, axis)
    weighted = da * weight
    # TODO: We should integrate xarray.weighted once available.

    return self.cumsum(weighted, axis, **kwargs)

average

average(da, axis, **kwargs)

Perform weighted mean reduction along specified axis or axes, accounting for grid metrics. (e.g. cell length, area, volume)

Parameters

axis : str, list of str Name of the axis on which to act **kwargs: dict Additional arguments passed to xarray.DataArray.weighted.mean

Returns

da_i : xarray.DataArray The averaged data

Source code in xgcm/grid.py
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
def average(self, da, axis, **kwargs):
    """
    Perform weighted mean reduction along specified axis or axes,
    accounting for grid metrics. (e.g. cell length, area, volume)

    Parameters
    ----------
    axis : str, list of str
        Name of the axis on which to act
    **kwargs: dict
        Additional arguments passed to `xarray.DataArray.weighted.mean`

    Returns
    -------
    da_i : xarray.DataArray
        The averaged data
    """

    weight = self.get_metric(da, axis)
    weighted = da.weighted(weight)

    # get dimension(s) corresponding to `da` and `axis` input
    dim = self._get_dims_from_axis(da, axis)
    return weighted.mean(dim, **kwargs)

transform

transform(da, axis, target, **kwargs)

Convert an array of data to new 1D-coordinates along axis. The method takes a multidimensional array of data da and transforms it onto another data_array target_data in the direction of the axis (for each 1-dimensional 'column').

target_data can be e.g. the existing coordinate along an axis, like depth. xgcm automatically detects the appropriate coordinate and then transforms the data from the input positions to the desired positions defined in target. This is the default behavior. The method can also be used for more complex cases like transforming a dataarray into new coordinates that are defined by e.g. a tracer field like temperature, density, etc.

Currently three methods are supported to carry out the transformation:

  • 'linear': Values are linear interpolated between 1D columns along axis of da and target_data. This method requires target_data to increase/decrease monotonically. target values are interpreted as new cell centers in this case. By default this method will return nan for values in target that are outside of the range of target_data, setting mask_edges=False results in the default np.interp behavior of repeated values.

  • 'log': Same as 'linear', but with values interpolated logarithmically between 1D columns. Operates by applying np.log to the target and target data values prior to linear interpolation.

  • 'conservative': Values are transformed while conserving the integral of da along each 1D column. This method can be used with non-monotonic values of target_data. Currently this will only work with extensive quantities (like heat, mass, transport) but not with intensive quantities (like temperature, density, velocity). N given target values are interpreted as cell-bounds and the returned array will have N-1 elements along the newly created coordinate, with coordinate values that are interpolated between target values.

Parameters

da : xr.DataArray Input data axis : str Name of the axis on which to act target : {np.array, xr.DataArray} Target points for transformation. Depending on the method is interpreted as cell center (method='linear' and method='log') or cell bounds (method='conservative). Values correspond to target_data or the existing coordinate along the axis (if target_data=None). The name of the resulting new coordinate is determined by the input type. When passed as numpy array the resulting dimension is named according to target_data, if provided as xr.Dataarray naming is inferred from the target input. target_data : xr.DataArray, optional Data to transform onto (e.g. a tracer like density or temperature). Defaults to None, which infers the appropriate coordinate along axis (e.g. the depth). method : str, optional Method used to transform, by default "linear" mask_edges : bool, optional If activated, target values outside the range of target_data are masked with nan, by default True. Only applies to 'linear' and 'log' methods. bypass_checks : bool, optional Only applies for method='linear' and method='log'. Option to bypass logic to flip data if monotonically decreasing along the axis. This will improve performance if True, but the user needs to ensure that values are increasing along the axis. suffix : str, optional Customizable suffix to the name of the output array. This will be added to the original name of da. Defaults to _transformed.

Returns

xr.DataArray The transformed data

Source code in xgcm/grid.py
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
def transform(self, da, axis, target, **kwargs):
    """Convert an array of data to new 1D-coordinates along `axis`.
    The method takes a multidimensional array of data `da` and
    transforms it onto another data_array `target_data` in the
    direction of the axis (for each 1-dimensional 'column').

    `target_data` can be e.g. the existing coordinate along an
    axis, like depth. xgcm automatically detects the appropriate
    coordinate and then transforms the data from the input
    positions to the desired positions defined in `target`. This
    is the default behavior. The method can also be used for more
    complex cases like transforming a dataarray into new
    coordinates that are defined by e.g. a tracer field like
    temperature, density, etc.

    Currently three methods are supported to carry out the
    transformation:

    - 'linear': Values are linear interpolated between 1D columns
      along `axis` of `da` and `target_data`. This method requires
      `target_data` to increase/decrease monotonically. `target`
      values are interpreted as new cell centers in this case. By
      default this method will return nan for values in `target` that
      are outside of the range of `target_data`, setting
      `mask_edges=False` results in the default np.interp behavior of
      repeated values.

    - 'log': Same as 'linear', but with values interpolated
      logarithmically between 1D columns. Operates by applying `np.log`
      to the target and target data values prior to linear interpolation.

    - 'conservative': Values are transformed while conserving the
      integral of `da` along each 1D column. This method can be used
      with non-monotonic values of `target_data`. Currently this will
      only work with extensive quantities (like heat, mass, transport)
      but not with intensive quantities (like temperature, density,
      velocity). N given `target` values are interpreted as cell-bounds
      and the returned array will have N-1 elements along the newly
      created coordinate, with coordinate values that are interpolated
      between `target` values.

    Parameters
    ----------
    da : xr.DataArray
        Input data
    axis : str
        Name of the axis on which to act
    target : {np.array, xr.DataArray}
        Target points for transformation. Depending on the method is
        interpreted as cell center (method='linear' and method='log') or
        cell bounds (method='conservative).
        Values correspond to `target_data` or the existing coordinate
        along the axis (if `target_data=None`). The name of the
        resulting new coordinate is determined by the input type.
        When passed as numpy array the resulting dimension is named
        according to `target_data`, if provided as xr.Dataarray
        naming is inferred from the `target` input.
    target_data : xr.DataArray, optional
        Data to transform onto (e.g. a tracer like density or temperature).
        Defaults to None, which infers the appropriate coordinate along
        `axis` (e.g. the depth).
    method : str, optional
        Method used to transform, by default "linear"
    mask_edges : bool, optional
        If activated, `target` values outside the range of `target_data`
        are masked with nan, by default True. Only applies to 'linear' and
        'log' methods.
    bypass_checks : bool, optional
        Only applies for `method='linear'` and `method='log'`.
        Option to bypass logic to flip data if monotonically decreasing along the axis.
        This will improve performance if True, but the user needs to ensure that values
        are increasing along the axis.
    suffix : str, optional
        Customizable suffix to the name of the output array. This will
        be added to the original name of `da`. Defaults to `_transformed`.

    Returns
    -------
    xr.DataArray
        The transformed data


    """
    try:
        from .transform import transform
    except ImportError:
        raise ImportError(
            "The transform functionality of xgcm requires numba. Install using `conda install numba`."
        )
    return transform(self, axis, da, target, **kwargs)

Grid ufuncs

xgcm.apply_as_grid_ufunc

apply_as_grid_ufunc(func: Callable, *args: Union[DataArray, Dict[str, DataArray]], axis: Optional[Sequence[Sequence[str]]] = None, grid: Optional[Grid] = None, signature: Union[str, _GridUFuncSignature] = '', boundary_width: Optional[Mapping[str, Tuple[int, int]]] = None, boundary: Optional[Union[str, Mapping[str, str]]] = None, fill_value: Optional[Union[float, Mapping[str, float]]] = None, keep_coords: bool = True, dask: Literal['forbidden', 'parallelized', 'allowed'] = 'forbidden', map_overlap: bool = False, pad_before_func: bool = True, other_component: Optional[Union[Dict[str, DataArray], Sequence[Dict[str, DataArray]]]] = None, **kwargs) -> List[Any]

Apply a function to the given arguments in a grid-aware manner.

The relationship between xgcm axes on the input and output are specified by signature. Wraps xarray.apply_ufunc, but determines the core dimensions from the grid and signature passed.

Parameters

func : function Function to call like func(*args, **kwargs) on numpy-like unlabeled arrays (.data). Passed directly on to xarray.apply_ufunc. *args : xarray.DataArray One or more input argument to apply the function to. Inputs can be either scalar fields (xr.Dataarray) Or vector components (Dictionaries mapping the axis parallel to the vector direction to an xr.Dataarray). If vector components are provided, complex grids may require input to other_component (see below). axis : Sequence[Sequence[str]], optional Names of xgcm.Axes on which to act, for each array in args. Multiple axes can be passed as a sequence (e.g. ['X', 'Y']). Function will be executed over all Axes simultaneously, and each Axis must be present in the Grid. grid : xgcm.Grid The xgcm Grid object which contains the various xgcm.Axis named in the axis kwarg, with positions matching the first half of the signature. signature : string Grid universal function signature. Specifies the relationship between xgcm.Axis positions before and after the operation for each input and output variable, e.g.,

``signature="(X:center)->(X:left)"`` for ``func=diff_center_to_left(a)``.

The axis names in the signature are dummy variables, so do not have to present in the Grid. Instead, these dummy
variables will be identified with the actual named Axes in the `axis` kwarg in order of appearance. For
instance, ``"(Z:center)->(Z:left)"`` is equivalent to ``"(X:center)->(X:left)"`` - both choices of `signature`
require only that there is exactly one xgcm.Axis name in `axis` which exists in Grid and starts on position
`center`.

boundary_width : Dict[str: Tuple[int, int] The widths of the boundaries at the edge of each array. Supplied in a mapping of the form {dummy_axis_name: (lower_width, upper_width)}. The axis names here are again dummy variables, each of which must be present in the signature. boundary : {None, 'fill', 'extend', 'periodic', dict}, optional A flag indicating how to handle boundaries:

* None:  Do not apply any boundary conditions. Raise an error if
    boundary conditions are required for the operation.
* 'fill':  Set values outside the array boundary to fill_value
    (i.e. a Dirichlet boundary condition.)
* 'extend': Set values outside the array to the nearest array
    value. (i.e. a limited form of Neumann boundary condition.)
* 'periodic': Set values by wrapping around the array on the specified
    axes. (i.e. a periodic boundary condition.)
Optionally a dict mapping axis name to seperate values for each axis
can be passed.

fill_value : {float, dict}, optional The value to use in boundary conditions with boundary='fill'. Optionally a dict mapping axis name to separate values for each axis can be passed. Default is 0. dask : {"forbidden", "allowed", "parallelized"}, default: "forbidden" How to handle applying to objects containing lazy data in the form of dask arrays. Passed directly on to xarray.apply_ufunc. map_overlap : bool, optional Whether or not to automatically apply the function along chunked core dimensions using dask.array.map_overlap. Default is False. If True, will need to be accompanied by dask='allowed'. pad_before_func : bool, optional Whether padding should occur before applying func or after it. Default is True. (For no padding at all pass boundary_width=None). other_component : Union[None, Dict[str,xr.DataArray], Sequence[Dict[str,xr.DataArray]]], default: None Matching vector component for input provided as dictionary. Needed for complex vector padding. For multiple arguments, other_components needs to provide one element per input. **kwargs Keyword arguments are passed directly onto xarray.apply_ufunc. (As such then kwargs should not be xarray data objects, as they will not be subject to alignment, nor downcast to numpy-like arrays.)

Returns

results The result of the call to xarray.apply_ufunc, but including the coordinates given by the signature, which are read from the grid. Output is either a single object or a tuple of such objects.

See Also

as_grid_ufunc Grid.apply_as_grid_ufunc xarray.apply_ufunc

Source code in xgcm/grid_ufunc.py
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
def apply_as_grid_ufunc(
    func: Callable,
    *args: Union[xr.DataArray, Dict[str, xr.DataArray]],
    axis: Optional[Sequence[Sequence[str]]] = None,
    grid: Optional["Grid"] = None,
    signature: Union[str, _GridUFuncSignature] = "",
    boundary_width: Optional[Mapping[str, Tuple[int, int]]] = None,
    boundary: Optional[Union[str, Mapping[str, str]]] = None,
    fill_value: Optional[Union[float, Mapping[str, float]]] = None,
    keep_coords: bool = True,
    dask: Literal["forbidden", "parallelized", "allowed"] = "forbidden",
    map_overlap: bool = False,
    pad_before_func: bool = True,
    other_component: Optional[
        Union[Dict[str, xr.DataArray], Sequence[Dict[str, xr.DataArray]]]
    ] = None,
    **kwargs,
) -> List[Any]:
    """
    Apply a function to the given arguments in a grid-aware manner.

    The relationship between xgcm axes on the input and output are specified by
    `signature`. Wraps xarray.apply_ufunc, but determines the core dimensions
    from the grid and signature passed.

    Parameters
    ----------
    func : function
        Function to call like `func(*args, **kwargs)` on numpy-like unlabeled
        arrays (`.data`).
        Passed directly on to `xarray.apply_ufunc`.
    *args : xarray.DataArray
        One or more input argument to apply the function to. Inputs can be either scalar fields (xr.Dataarray)
        Or vector components (Dictionaries mapping the axis parallel to the vector direction to an xr.Dataarray).
        If vector components are provided, complex grids may require input to `other_component` (see below).
    axis : Sequence[Sequence[str]], optional
        Names of xgcm.Axes on which to act, for each array in args. Multiple axes can be passed as a sequence (e.g. ``['X', 'Y']``).
        Function will be executed over all Axes simultaneously, and each Axis must be present in the Grid.
    grid : xgcm.Grid
        The xgcm Grid object which contains the various xgcm.Axis named in the axis kwarg, with positions matching the
         first half of the `signature`.
    signature : string
        Grid universal function signature. Specifies the relationship between xgcm.Axis positions before and after the
        operation for each input and output variable, e.g.,

        ``signature="(X:center)->(X:left)"`` for ``func=diff_center_to_left(a)``.

        The axis names in the signature are dummy variables, so do not have to present in the Grid. Instead, these dummy
        variables will be identified with the actual named Axes in the `axis` kwarg in order of appearance. For
        instance, ``"(Z:center)->(Z:left)"`` is equivalent to ``"(X:center)->(X:left)"`` - both choices of `signature`
        require only that there is exactly one xgcm.Axis name in `axis` which exists in Grid and starts on position
        `center`.
    boundary_width : Dict[str: Tuple[int, int]
        The widths of the boundaries at the edge of each array.
        Supplied in a mapping of the form {dummy_axis_name: (lower_width, upper_width)}.
        The axis names here are again dummy variables, each of which must be present in the signature.
    boundary : {None, 'fill', 'extend', 'periodic', dict}, optional
        A flag indicating how to handle boundaries:

        * None:  Do not apply any boundary conditions. Raise an error if
            boundary conditions are required for the operation.
        * 'fill':  Set values outside the array boundary to fill_value
            (i.e. a Dirichlet boundary condition.)
        * 'extend': Set values outside the array to the nearest array
            value. (i.e. a limited form of Neumann boundary condition.)
        * 'periodic': Set values by wrapping around the array on the specified
            axes. (i.e. a periodic boundary condition.)
        Optionally a dict mapping axis name to seperate values for each axis
        can be passed.
    fill_value : {float, dict}, optional
        The value to use in boundary conditions with `boundary='fill'`.
        Optionally a dict mapping axis name to separate values for each axis
        can be passed. Default is 0.
    dask : {"forbidden", "allowed", "parallelized"}, default: "forbidden"
        How to handle applying to objects containing lazy data in the form of
        dask arrays. Passed directly on to `xarray.apply_ufunc`.
    map_overlap : bool, optional
        Whether or not to automatically apply the function along chunked core dimensions using dask.array.map_overlap.
        Default is False. If True, will need to be accompanied by dask='allowed'.
    pad_before_func : bool, optional
        Whether padding should occur before applying func or after it. Default is True.
        (For no padding at all pass `boundary_width=None`).
    other_component : Union[None, Dict[str,xr.DataArray], Sequence[Dict[str,xr.DataArray]]], default: None
        Matching vector component for input provided as dictionary. Needed for complex vector padding.
        For multiple arguments, `other_components` needs to provide one element per input.
    **kwargs
        Keyword arguments are passed directly onto xarray.apply_ufunc.
        (As such then kwargs should not be xarray data objects, as they will not be subject to
        alignment, nor downcast to numpy-like arrays.)

    Returns
    -------
    results
        The result of the call to `xarray.apply_ufunc`, but including the coordinates
        given by the signature, which are read from the grid. Output is either a single
        object or a tuple of such objects.

    See Also
    --------
    as_grid_ufunc
    Grid.apply_as_grid_ufunc
    xarray.apply_ufunc
    """

    if grid is None:
        raise ValueError("Must provide a grid object to describe the Axes")
    # ? Why is this actually an optional input? This causes some mypy issues on pre-commit too.

    # Check data input arguments
    args = _promote_to_sequence_and_check(args, grid)  # type: ignore
    other_component = _promote_to_sequence_and_check(other_component, grid)

    if len(other_component) == 1 and other_component[0] is None:
        # Make sure that the default (None) for other_component is properly broadcasted
        other_component = other_component * len(args)

    if not len(args) == len(other_component):
        raise ValueError(
            "When providing multiple input arguments, `other_component`"
            " needs to provide one dictionary per input."
        )

    if axis is None:
        raise ValueError("Must provide an axis along which to apply the grid ufunc")

    if len(args) != len(axis):
        raise ValueError(
            "Number of entries in `axis` does not match the number of data arguments supplied"
        )

    # Extract Axes information from signature
    if not isinstance(signature, _GridUFuncSignature):
        sig = _GridUFuncSignature.from_string(signature)
    else:
        sig = signature

    dummy_to_real_axes_mapping = _identify_dummy_axes_with_real_axes(
        sig.in_ax_names, axis
    )

    # Determine names of output axes from names in signature
    # TODO what if we need to add a new core dim to the output that does match an input axis? Where do we get the name from?
    out_ax_names = [
        [dummy_to_real_axes_mapping[ax] for ax in arg] for arg in sig.out_ax_names
    ]

    # Check that input args are in correct grid positions
    for i, (arg_ns, arg_ps, arg) in enumerate(zip(axis, sig.in_ax_positions, args)):
        for n, p in zip(arg_ns, arg_ps):
            try:
                ax_pos = grid.axes[n].coords[p]
            except KeyError:
                raise ValueError(f"Axis position ({n}:{p}) does not exist in grid")

            arg = _maybe_unpack_vector_component(arg)
            if ax_pos not in arg.dims:
                raise ValueError(
                    f"Mismatch between signature and input argument {i}: "
                    f"Signature specified data to lie at Axis Position ({n}:{p}), "
                    f"but the corresponding grid coordinate {grid.axes[n].coords[p]} "
                    f"does not appear in argument"
                    f"{arg}"
                )

            # TODO also check that dims are the right length for their stated Axis positions on inputs?

    # Determine core dimensions for apply_ufunc
    in_core_dims = [
        [grid.axes[n].coords[p] for n, p in zip(arg_ns, arg_ps)]
        for arg_ns, arg_ps in zip(axis, sig.in_ax_positions)
    ]
    out_core_dims = [
        [grid.axes[n].coords[p] for n, p in zip(arg_ns, arg_ps)]
        for arg_ns, arg_ps in zip(out_ax_names, sig.out_ax_positions)
    ]

    # TODO allow users to specify new output dtypes
    n_output_vars = len(sig.out_ax_names)
    out_dtypes = [
        _maybe_unpack_vector_component(args[0]).dtype
    ] * n_output_vars  # assume uniformity of dtypes

    # Pad arrays according to boundary condition information
    boundary_width_real_axes = _substitute_dummy_axis_names(
        boundary_width, dummy_to_real_axes_mapping
    )

    # Maybe map function over chunked core dims using dask.array.map_overlap
    if map_overlap:
        # Disallow situations where shifting axis position would cause chunk size to change
        _check_if_length_would_change(sig)

        mapped_func = _map_func_over_core_dims(
            func,
            args,
            grid,
            in_core_dims,
            boundary_width_real_axes,
            out_dtypes,
        )
    else:
        mapped_func = func

    # For most ufuncs we want to pad before applying, but for some (especially cumsum) we must apply then pad
    # TODO could we bind a bunch of these arguments into a namedtuple/dataclass or something to save space?
    if pad_before_func:
        rechunked_padded_args = _pad_then_rechunk(
            args,
            grid,
            in_core_dims,
            boundary_width_real_axes,
            boundary,
            fill_value,
            other_component,
        )
        results = _apply(
            mapped_func,
            rechunked_padded_args,
            grid,
            in_core_dims,
            out_core_dims,
            out_dtypes,
            dask,
            **kwargs,
        )
    else:  # pad after func
        unpadded_results = _apply(
            mapped_func,
            args,
            grid,
            in_core_dims,
            out_core_dims,
            out_dtypes,
            dask,
            **kwargs,
        )
        results = _pad_then_rechunk(
            unpadded_results,
            grid,
            out_core_dims,
            boundary_width_real_axes,
            boundary,
            fill_value,
            other_component,
        )

    # TODO add option to trim result if not done in ufunc

    # Restore any dimension coordinates associated with new output dims that are present in grid
    # Also throws loud warning if ufunc returns array of incorrect size
    results_with_coords = _reattach_coords(results, grid, boundary_width, keep_coords)

    # Return single results not wrapped in 1-element tuple, like xr.apply_ufunc does
    if len(results_with_coords) == 1:
        (results_with_coords,) = results_with_coords

    # TODO handle metrics and boundary? Or should that happen in the ufuncs themselves?

    return results_with_coords

xgcm.as_grid_ufunc

as_grid_ufunc(signature: str = '', boundary_width: Optional[Mapping[str, Tuple[int, int]]] = None, **kwargs) -> Callable

Decorator which turns a numpy ufunc into a "grid-aware ufunc".

Parameters

ufunc : callable Function to call like func(*args, **kwargs) on numpy-like unlabeled arrays (.data). Passed directly on to xarray.apply_ufunc. signature : string Grid universal function signature. Specifies the xgcm.Axis names and positions for each input and output variable, e.g.,

``"(X:center)->(X:left)"`` for ``diff_center_to_left(a)``.

boundary_width : Dict[str: Tuple[int, int], optional The widths of the boundaries at the edge of each array. Supplied in a mapping of the form {axis_name: (lower_width, upper_width)}. boundary : {None, 'fill', 'extend', 'periodic', dict}, optional A flag indicating how to handle boundaries:

* None:  Do not apply any boundary conditions. Raise an error if
    boundary conditions are required for the operation.
* 'fill':  Set values outside the array boundary to fill_value
    (i.e. a Dirichlet boundary condition.)
* 'extend': Set values outside the array to the nearest array
    value. (i.e. a limited form of Neumann boundary condition.)
* 'periodic': Set values by wrapping around the array on the specified
    axes. (i.e. a periodic boundary condition.)
Optionally a dict mapping axis name to seperate values for each axis
can be passed.

fill_value : {float, dict}, optional The value to use in boundary conditions with boundary='fill'. Optionally a dict mapping axis name to separate values for each axis can be passed. Default is 0. dask : {"forbidden", "allowed", "parallelized"}, default: "forbidden" How to handle applying to objects containing lazy data in the form of dask arrays. Passed directly on to xarray.apply_ufunc. map_overlap : bool, optional Whether or not to automatically apply the function along chunked core dimensions using dask.array.map_overlap. Default is False. If True, will need to be accompanied by dask='allowed'. **kwargs Keyword arguments are passed directly onto xarray.apply_ufunc. (As such then kwargs should not be xarray data objects, as they will not be subject to alignment, nor downcast to numpy-like arrays.)

Returns

grid_ufunc : callable Function which consumes and produces xarray objects, whose xgcm Axis names and positions must conform to the pattern specified by signature. Function has an additional positional argument grid, of type xgcm.Grid, and another additional positional argument axis, of type Sequence[Tuple[str]], so that func's new signature is func(grid, *args, axis, **kwargs). The grid and axis arguments are passed on to apply_grid_ufunc.

See Also

apply_as_grid_ufunc Grid.apply_as_grid_ufunc

Source code in xgcm/grid_ufunc.py
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
def as_grid_ufunc(
    signature: str = "",
    boundary_width: Optional[Mapping[str, Tuple[int, int]]] = None,
    **kwargs,
) -> Callable:
    """
    Decorator which turns a numpy ufunc into a "grid-aware ufunc".

    Parameters
    ----------
    ufunc : callable
        Function to call like `func(*args, **kwargs)` on numpy-like unlabeled
        arrays (`.data`). Passed directly on to `xarray.apply_ufunc`.
    signature : string
        Grid universal function signature. Specifies the xgcm.Axis names and
        positions for each input and output variable, e.g.,

        ``"(X:center)->(X:left)"`` for ``diff_center_to_left(a)``.
    boundary_width : Dict[str: Tuple[int, int], optional
        The widths of the boundaries at the edge of each array.
        Supplied in a mapping of the form {axis_name: (lower_width, upper_width)}.
    boundary : {None, 'fill', 'extend', 'periodic', dict}, optional
        A flag indicating how to handle boundaries:

        * None:  Do not apply any boundary conditions. Raise an error if
            boundary conditions are required for the operation.
        * 'fill':  Set values outside the array boundary to fill_value
            (i.e. a Dirichlet boundary condition.)
        * 'extend': Set values outside the array to the nearest array
            value. (i.e. a limited form of Neumann boundary condition.)
        * 'periodic': Set values by wrapping around the array on the specified
            axes. (i.e. a periodic boundary condition.)
        Optionally a dict mapping axis name to seperate values for each axis
        can be passed.
    fill_value : {float, dict}, optional
        The value to use in boundary conditions with `boundary='fill'`.
        Optionally a dict mapping axis name to separate values for each axis
        can be passed. Default is 0.
    dask : {"forbidden", "allowed", "parallelized"}, default: "forbidden"
        How to handle applying to objects containing lazy data in the form of
        dask arrays. Passed directly on to `xarray.apply_ufunc`.
    map_overlap : bool, optional
        Whether or not to automatically apply the function along chunked core dimensions using dask.array.map_overlap.
        Default is False. If True, will need to be accompanied by dask='allowed'.
    **kwargs
        Keyword arguments are passed directly onto xarray.apply_ufunc.
        (As such then kwargs should not be xarray data objects, as they will not be subject to
        alignment, nor downcast to numpy-like arrays.)

    Returns
    -------
    grid_ufunc : callable
        Function which consumes and produces xarray objects, whose xgcm Axis
        names and positions must conform to the pattern specified by `signature`.
        Function has an additional positional argument `grid`, of type `xgcm.Grid`,
        and another additional positional argument `axis`, of type Sequence[Tuple[str]],
        so that `func`'s new signature is `func(grid, *args, axis, **kwargs)`.
        The grid and axis arguments are passed on to `apply_grid_ufunc`.

    See Also
    --------
    apply_as_grid_ufunc
    Grid.apply_as_grid_ufunc
    """
    _allowedkwargs = {
        "boundary",
        "fill_value",
        "dask",
        "map_overlap",
        "pad_before_func",
    }
    forbidden_kwargs = list(kwargs.keys() - _allowedkwargs)
    if forbidden_kwargs:
        raise TypeError(f"Unsupported keyword argument(s) provided: {forbidden_kwargs}")

    def _as_grid_ufunc(ufunc):
        return GridUFunc(
            ufunc, signature=signature, boundary_width=boundary_width, **kwargs
        )

    return _as_grid_ufunc