@@ -422,12 +422,12 @@ def reindex(
422
422
):
423
423
"""unit-aware version of reindex
424
424
425
- Just like :py:meth:`xarray.DataArray.reindex`, except the object's indexes are converted
426
- to the units of the indexers first.
425
+ Like :py:meth:`xarray.DataArray.reindex`, except the object's indexes are
426
+ converted to the units of the indexers first.
427
427
428
428
.. note::
429
- ``tolerance`` and ``fill_value`` are not supported, yet. They will be passed through to
430
- ``DataArray.reindex`` unmodified.
429
+ ``tolerance`` and ``fill_value`` are not supported, yet. They will be passed
430
+ through to ``DataArray.reindex`` unmodified.
431
431
432
432
See Also
433
433
--------
@@ -490,12 +490,12 @@ def reindex_like(
490
490
):
491
491
"""unit-aware version of reindex_like
492
492
493
- Just like :py:meth:`xarray.DataArray.reindex_like`, except the object's indexes are converted
494
- to the units of the indexers first.
493
+ Like :py:meth:`xarray.DataArray.reindex_like`, except the object's indexes
494
+ are converted to the units of the indexers first.
495
495
496
496
.. note::
497
- ``tolerance`` and ``fill_value`` are not supported, yet. They will be passed through to
498
- ``DataArray.reindex_like`` unmodified.
497
+ ``tolerance`` and ``fill_value`` are not supported, yet. They will be passed
498
+ through to ``DataArray.reindex_like`` unmodified.
499
499
500
500
See Also
501
501
--------
@@ -550,12 +550,11 @@ def interp(
550
550
):
551
551
"""unit-aware version of interp
552
552
553
- Just like :py:meth:`xarray.DataArray.interp`, except the object's indexes are converted
554
- to the units of the indexers first.
553
+ Like :py:meth:`xarray.DataArray.interp`, except the object's indexes are
554
+ converted to the units of the indexers first.
555
555
556
556
.. note::
557
- ``tolerance`` and ``fill_value`` are not supported, yet. They will be passed through to
558
- ``DataArray.interp`` unmodified.
557
+ ``kwargs`` is passed unmodified to ``DataArray.interp``
559
558
560
559
See Also
561
560
--------
@@ -614,12 +613,11 @@ def interp(
614
613
def interp_like (self , other , method = "linear" , assume_sorted = False , kwargs = None ):
615
614
"""unit-aware version of interp_like
616
615
617
- Just like :py:meth:`xarray.DataArray.interp_like`, except the object's indexes are converted
616
+ Like :py:meth:`xarray.DataArray.interp_like`, except the object's indexes are converted
618
617
to the units of the indexers first.
619
618
620
619
.. note::
621
- ``tolerance`` and ``fill_value`` are not supported, yet. They will be passed through to
622
- ``DataArray.interp_like`` unmodified.
620
+ ``kwargs`` is passed unmodified to ``DataArray.interp``
623
621
624
622
See Also
625
623
--------
@@ -668,7 +666,7 @@ def sel(
668
666
):
669
667
"""unit-aware version of sel
670
668
671
- Just like :py:meth:`xarray.DataArray.sel`, except the object's indexes are converted
669
+ Like :py:meth:`xarray.DataArray.sel`, except the object's indexes are converted
672
670
to the units of the indexers first.
673
671
674
672
.. note::
@@ -1014,7 +1012,7 @@ def reindex(
1014
1012
):
1015
1013
"""unit-aware version of reindex
1016
1014
1017
- Just like :py:meth:`xarray.Dataset.reindex`, except the object's indexes are converted
1015
+ Like :py:meth:`xarray.Dataset.reindex`, except the object's indexes are converted
1018
1016
to the units of the indexers first.
1019
1017
1020
1018
.. note::
@@ -1082,7 +1080,7 @@ def reindex_like(
1082
1080
):
1083
1081
"""unit-aware version of reindex_like
1084
1082
1085
- Just like :py:meth:`xarray.Dataset.reindex_like`, except the object's indexes are converted
1083
+ Like :py:meth:`xarray.Dataset.reindex_like`, except the object's indexes are converted
1086
1084
to the units of the indexers first.
1087
1085
1088
1086
.. note::
@@ -1142,12 +1140,11 @@ def interp(
1142
1140
):
1143
1141
"""unit-aware version of interp
1144
1142
1145
- Just like :py:meth:`xarray.Dataset.interp`, except the object's indexes are converted
1143
+ Like :py:meth:`xarray.Dataset.interp`, except the object's indexes are converted
1146
1144
to the units of the indexers first.
1147
1145
1148
1146
.. note::
1149
- ``tolerance`` and ``fill_value`` are not supported, yet. They will be passed through to
1150
- ``Dataset.interp`` unmodified.
1147
+ ``kwargs`` is passed unmodified to ``Dataset.interp``
1151
1148
1152
1149
See Also
1153
1150
--------
@@ -1206,12 +1203,11 @@ def interp(
1206
1203
def interp_like (self , other , method = "linear" , assume_sorted = False , kwargs = None ):
1207
1204
"""unit-aware version of interp_like
1208
1205
1209
- Just like :py:meth:`xarray.Dataset.interp_like`, except the object's indexes are converted
1210
- to the units of the indexers first.
1206
+ Like :py:meth:`xarray.Dataset.interp_like`, except the object's indexes are
1207
+ converted to the units of the indexers first.
1211
1208
1212
1209
.. note::
1213
- ``tolerance`` and ``fill_value`` are not supported, yet. They will be passed through to
1214
- ``Dataset.interp_like`` unmodified.
1210
+ ``kwargs`` is passed unmodified to ``Dataset.interp``
1215
1211
1216
1212
See Also
1217
1213
--------
@@ -1260,8 +1256,8 @@ def sel(
1260
1256
):
1261
1257
"""unit-aware version of sel
1262
1258
1263
- Just like :py:meth:`xarray.Dataset.sel`, except the object's indexes are converted to the units
1264
- of the indexers first.
1259
+ Like :py:meth:`xarray.Dataset.sel`, except the object's indexes are converted to
1260
+ the units of the indexers first.
1265
1261
1266
1262
.. note::
1267
1263
``tolerance`` is not supported, yet. It will be passed through to
0 commit comments