Skip to content

Spatial Operations#

Crop, align, reproject, resample, CRS handling, and coordinate conversion.

Hold "Ctrl" to enable pan & zoom
flowchart LR
    SP(("Spatial<br/>ds.spatial"))
    SP --> C["<b>clip / align</b><br/>crop · align"]
    SP --> R["<b>reproject / resample</b><br/>to_crs · warped_view · resample"]
    SP --> M["<b>CRS & longitude</b><br/>set_crs · wrap_longitude"]
    SP --> G["<b>gap fill</b><br/>fill_gaps"]

Crop with a polygon, raster, or bbox tuple#

Dataset.crop(mask) accepts a FeatureCollection / GeoDataFrame polygon mask or another Dataset as a raster mask. For the common "clip to a geographic bounding box" case, pass the keyword-only bbox=(W, S, E, N) (and epsg= if the bbox isn't in the dataset's own CRS) — pyramids builds the one-row FeatureCollection for you and routes through the same polygon path. The same bbox= / epsg= pair is accepted by DatasetCollection.crop (built once and reused across timesteps) and by Dataset.read_array (for a windowed read).

from pyramids.dataset import Dataset

ds = Dataset.read_file("dem.tif")

# bbox in the dataset's own CRS
ds.crop(bbox=(6.8, 50.3, 7.2, 50.6))

# bbox in WGS84 against a Web-Mercator raster
ds.crop(bbox=(6.8, 50.3, 7.2, 50.6), epsg=4326)

mask= and bbox= are mutually exclusive. If you need the underlying one-row FeatureCollection for other ops, build it with FeatureCollection.from_bbox((W, S, E, N), epsg=…).

Reproject — eager to_crs(...) vs lazy warped_view(...)#

Dataset.to_crs(to_epsg) materialises a reprojected raster: it warps every pixel into the target CRS and returns a new Dataset. Use it when you will consume the whole reprojected result.

Dataset.warped_view(crs) returns a lazy reprojected view — an in-memory warped VRT where nothing is resampled until a window is read, and a windowed read warps only that window. Prefer it for tile serving, partial reads, and chained virtual pipelines. The view pins its source alive.

to_crs warped_view
When pixels warp immediately (whole raster) lazily, per window read
Returns a fully materialised Dataset a VRT-backed view Dataset
Best for consuming the whole result tile serving / partial reads
from pyramids.dataset import Dataset

ds = Dataset.read_file("dem.tif")               # e.g. EPSG:4326
webmerc = ds.to_crs(3857)                       # eager: all pixels warped now
view = ds.warped_view(3857)                     # lazy: warps only what you read
tile = view.read_array(bbox=(...), epsg=3857)   # this window is warped on demand

Both accept a method= resampling name; warped_view also takes cell_size= and bbox= to fix the output grid/extent up front.

pyramids.dataset.engines.Spatial #

Bases: _Engine['Dataset']

Source code in src/pyramids/dataset/engines/spatial.py
 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
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
class Spatial(_Engine["Dataset"]):

    def _get_crs(self) -> str:
        """Get coordinate reference system."""
        return str(self._ds.raster.GetProjection())

    def set_crs(self, crs: str | None = None, epsg: int | None = None) -> None:
        """Set the Coordinate Reference System (CRS).

        Assign the CRS of the raster in place, from either a WKT string (``crs``) or an EPSG
        code (``epsg``). Exactly one of the two must be supplied.

        Args:
            crs (str | None):
                Optional if epsg is specified. WKT string. i.e.
                    ```
                    'GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84", 6378137,298.257223563,AUTHORITY["EPSG","7030"],
                    AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",
                    0.0174532925199433,AUTHORITY["EPSG","9122"]],AXIS["Latitude",NORTH],AXIS["Longitude",EAST],
                    AUTHORITY["EPSG","4326"]]'
                    ```
            epsg (int | None):
                Optional if crs is specified. EPSG code specifying the projection.

        Returns:
            None: The CRS is set on the underlying dataset in place.

        Raises:
            TypeError: If the dataset is backed by an ASCII driver, which cannot store a CRS.
            ValueError: If neither ``crs`` nor ``epsg`` is provided.
        """
        # first change the projection of the gdal dataset object
        # second change the epsg attribute of the Dataset object
        if self._ds.driver_type == "ascii":
            raise TypeError(
                "Setting CRS for ASCII file is not possible, you can save the files to a geotiff and then "
                "reset the crs"
            )
        else:
            if crs is not None:
                self._ds.raster.SetProjection(crs)
                # fallback to 4326 when crs is an empty string
                # (get_epsg_from_prj raises in that case); epsg_from_wkt
                # absorbs the fallback in one place.
                self._ds._epsg = epsg_from_wkt(crs)
            elif epsg is not None:
                sr = sr_from_epsg(epsg)
                self._ds.raster.SetProjection(sr.ExportToWkt())
                self._ds._epsg = epsg
            else:
                raise ValueError("Either crs or epsg must be provided.")

    def to_crs(
        self,
        to_epsg: int | str | Any,
        method: str = "nearest neighbor",
        maintain_alignment: bool = False,
        *,
        cell_size: float | tuple[float, float] | None = None,
    ) -> Dataset:
        """Reproject the dataset to any projection.

            (default the WGS84 web mercator projection, without resampling)

        Args:
            to_epsg (int | str | pyproj.CRS):
                The target CRS. Accepts any form :meth:`pyproj.CRS.from_user_input`
                understands: an EPSG reference number (``3857``), an authority string
                (``"EPSG:3857"``, ``"ESRI:54030"`` for Robinson, ``"ESRI:54009"`` for
                Mollweide), a bare numeric string (``"3857"``), a WKT or PROJ4 string
                (``"+proj=ortho +lat_0=39 +lon_0=-9 +datum=WGS84"``), or a
                :class:`pyproj.CRS`. Projections without an EPSG code (orthographic,
                Robinson, Mollweide, polar-stereographic variants) are warped directly
                against the spatial reference; cells outside the projection domain
                are filled with the source's nodata value when one is configured, or
                with GDAL's dtype-default fill value otherwise.
            method (str):
                Resampling method, case-insensitive. Default is "nearest neighbor". Allowed values: "nearest"
                (alias "nearest neighbor"), "bilinear", "cubic", "cubic_spline", "lanczos", "average",
                "mode", "max", "min", "med", "q1", "q3", "sum", and "rms" (the GDAL warp algorithms;
                "sum"/"rms" need GDAL >= 3.1/3.3). See https://gisgeography.com/raster-resampling/.
                Note: the aggregating algorithms ("average", "mode", "med", "q1", "q3", "sum", "rms")
                are not no-data-aware on this warp path — no-data cells inside a resampling kernel are
                mixed into the result. Prefer "nearest" on rasters that carry a no-data marker.
            maintain_alignment (bool):
                True to maintain the number of rows and columns of the raster the same after reprojection.
                Default is False.
            cell_size (float | tuple, keyword-only):
                Optional output pixel size in target-CRS units. A scalar gives square cells; an
                ``(x_res, y_res)`` pair gives non-square cells. ``None`` (default) lets GDAL pick the
                output resolution. Not supported together with ``maintain_alignment=True``.

        Returns:
            Dataset:
                A new reprojected Dataset.

        Raises:
            CRSError:
                ``to_epsg`` cannot be interpreted as a CRS.
            TypeError:
                ``method`` is not a string.
            ValueError:
                ``method`` is not one of the supported interpolation methods.

        Examples:
            - Reproject a small 4326 raster to Web Mercator (EPSG:3857). The
              source cell size of 0.05° expands to roughly 5566 m near the
              equator and the EPSG of the result confirms the warp:

              ```python
              >>> import numpy as np
              >>> from pyramids.dataset import Dataset
              >>> arr = np.random.rand(4, 5, 5)
              >>> dataset = Dataset.create_from_array(
              ...     arr,
              ...     top_left_corner=(0.0, 0.0),
              ...     cell_size=0.05,
              ...     epsg=4326,
              ... )
              >>> dataset.epsg
              4326
              >>> reprojected = dataset.to_crs(to_epsg=3857)
              >>> reprojected.epsg
              3857
              >>> reprojected.band_count
              4

              ```
            - Reproject to a non-EPSG CRS via an ESRI authority string
              (Robinson, ``ESRI:54030``):

              ```python
              >>> import numpy as np
              >>> from osgeo import osr
              >>> from pyramids.dataset import Dataset
              >>> arr = np.ones((5, 5), dtype=np.float32)
              >>> dataset = Dataset.create_from_array(
              ...     arr, top_left_corner=(0.0, 10.0), cell_size=1.0, epsg=4326
              ... )
              >>> robinson = dataset.to_crs(to_epsg="ESRI:54030")
              >>> "Robinson" in osr.SpatialReference(wkt=robinson.crs).GetName()
              True

              ```
            - Reproject to a bespoke orthographic projection via a proj4 string
              (no authority code at all):

              ```python
              >>> import numpy as np
              >>> from osgeo import osr
              >>> from pyramids.dataset import Dataset
              >>> arr = np.ones((5, 5), dtype=np.float32)
              >>> dataset = Dataset.create_from_array(
              ...     arr, top_left_corner=(0.0, 10.0), cell_size=1.0, epsg=4326
              ... )
              >>> proj4 = "+proj=ortho +lat_0=39 +lon_0=-9 +datum=WGS84 +units=m +no_defs"
              >>> ortho = dataset.to_crs(to_epsg=proj4)
              >>> osr.SpatialReference(wkt=ortho.crs).IsProjected()
              1
              >>> ortho.epsg
              4326

              ```
            - Contrast ``maintain_alignment=False`` (default) with
              ``maintain_alignment=True``. At 60°N a 4326 → 3857 warp distorts
              cell sizes substantially, so the default `gdal.Warp` heuristic
              picks a different output shape from the source; the alignment-
              preserving path keeps the source row/column count and absorbs the
              distortion into the per-axis cell size instead:

              ```python
              >>> import numpy as np
              >>> from pyramids.dataset import Dataset
              >>> arr = np.ones((10, 10), dtype=np.float32)
              >>> dataset = Dataset.create_from_array(
              ...     arr, top_left_corner=(10.0, 60.5), cell_size=0.1, epsg=4326
              ... )
              >>> default_warp = dataset.to_crs(to_epsg=3857)
              >>> (default_warp.rows, default_warp.columns)
              (13, 6)
              >>> aligned = dataset.to_crs(to_epsg=3857, maintain_alignment=True)
              >>> (aligned.rows, aligned.columns)
              (10, 10)

              ```

        See Also:
            - :meth:`Spatial.set_crs`: Tag the dataset with a new CRS *without*
              warping the pixels (use when the source CRS metadata is wrong,
              not when you want a reprojection).
            - :meth:`Spatial.resample`: Change the cell size without changing
              the CRS.
            - :func:`pyramids.base.crs.sr_from_user_input`: The helper that
              resolves every accepted CRS form to an
              :class:`osr.SpatialReference`.

        """
        dst_sr = sr_from_user_input(to_epsg)
        resampling_method: int = resolve_resampling(method)

        if maintain_alignment:
            # Reject cell_size before validating it, so the more specific "not supported with
            # maintain_alignment" error wins over the generic shape/positivity check.
            if cell_size is not None:
                raise ValueError(
                    "cell_size is not supported with maintain_alignment=True (that path keeps the "
                    "source row/column count). Use maintain_alignment=False to set the output cell size."
                )
            dst_obj = self._reproject_with_ReprojectImage(dst_sr, resampling_method)
        else:
            # cell_size may be a scalar (square) or an (x_res, y_res) pair (non-square output).
            x_res, y_res = _resolve_resolution(cell_size)
            dst = gdal.Warp(
                "",
                self._ds.raster,
                dstSRS=_dst_srs_arg(dst_sr),
                format="VRT",
                resampleAlg=resampling_method,
                xRes=x_res,
                yRes=y_res,
            )
            dst_obj = self._ds.__class__(dst)

        return dst_obj

    def warped_view(
        self,
        crs: int | str | Any,
        method: str = "nearest neighbor",
        *,
        cell_size: float | tuple[float, float] | None = None,
        bbox: tuple[float, float, float, float] | None = None,
    ) -> Dataset:
        """Return a lazy, reprojected **view** of the dataset (no pixels warped yet).

        Builds an in-memory warped VRT: nothing is resampled until a window is
        read, and a windowed read warps **only that window**. This is the lazy
        counterpart of :meth:`to_crs` — prefer it for tile serving, partial
        reads of reprojected data, and chained virtual pipelines; prefer
        :meth:`to_crs` when you will consume the whole reprojected raster.

        The returned Dataset keeps a reference to its source, so the source
        handle cannot be garbage-collected underneath the view.

        Note:
            The view captures its source **by handle, not by value**: the VRT
            re-reads the source's geotransform, projection, and pixels lazily on
            each windowed read. Mutating the source in place after the view is
            built (for example :meth:`set_crs` or anything that rewrites the
            geotransform) leaves the view reading from the now-changed source and
            is undefined. Treat the source as read-only for the lifetime of the
            view, or rebuild the view after mutating the source.

        Args:
            crs: Target CRS in any form :meth:`pyproj.CRS.from_user_input`
                accepts (EPSG int, ``"EPSG:3857"``, WKT, PROJ4, pyproj CRS).
            method: Resampling method used when windows are read. Any name
                accepted by :func:`pyramids.base._utils.resolve_resampling`
                (case- and whitespace-insensitive). Default is
                ``"nearest neighbor"``.
            cell_size: Optional output pixel size in target-CRS units. A scalar
                applies to both axes (square cells); an ``(x_res, y_res)`` pair
                gives non-square cells. ``None`` lets GDAL pick the size that
                preserves the source resolution.
            bbox: Optional ``(min_x, min_y, max_x, max_y)`` output extent in
                the **target** CRS; ``None`` covers the warped source extent.

        Returns:
            Dataset: A read-only, VRT-backed reprojected view.

        Raises:
            CRSError: ``crs`` cannot be interpreted as a CRS.
            TypeError: ``method`` is not a string.
            ValueError: ``method`` is not a supported resampling method.
            RuntimeError: GDAL could not build the warped VRT.

        Examples:
            - A view reports the warped CRS without materialising pixels, and
              a windowed read matches the eager reprojection:
                ```python
                >>> import numpy as np
                >>> from pyramids.dataset import Dataset
                >>> src = Dataset.create_from_array(
                ...     np.random.rand(8, 8).astype("float32"),
                ...     top_left_corner=(0, 8), cell_size=0.01, epsg=4326,
                ... )
                >>> view = src.warped_view(3857)
                >>> view.epsg
                3857
                >>> eager = src.to_crs(3857)
                >>> bool(np.allclose(view.read_array(), eager.read_array()))
                True

                ```
            - The view holds its source alive (safe to drop the original):
                ```python
                >>> import numpy as np
                >>> from pyramids.dataset import Dataset
                >>> src = Dataset.create_from_array(
                ...     np.ones((4, 4), dtype="float32"),
                ...     top_left_corner=(0, 4), cell_size=0.01, epsg=4326,
                ... )
                >>> view = src.warped_view(3857)
                >>> del src
                >>> view.read_array().shape == (view.rows, view.columns)
                True

                ```

        See Also:
            Spatial.to_crs: The eager reprojection (materialises the result).
        """
        dst_sr = sr_from_user_input(crs)
        resample_alg: int = resolve_resampling(method)
        dst_srs_arg = _dst_srs_arg(dst_sr)
        x_res, y_res = _resolve_resolution(cell_size)
        if bbox is not None:
            if len(bbox) != 4:
                raise ValueError(
                    f"bbox must be (min_x, min_y, max_x, max_y), got {bbox!r}."
                )
            min_x, min_y, max_x, max_y = bbox
            if min_x >= max_x or min_y >= max_y:
                raise ValueError(
                    f"bbox must have min_x < max_x and min_y < max_y, got {bbox!r}."
                )
        options = gdal.WarpOptions(
            format="VRT",
            dstSRS=dst_srs_arg,
            resampleAlg=resample_alg,
            xRes=x_res,
            yRes=y_res,
            outputBounds=bbox,
            multithread=True,
        )
        vrt = gdal.Warp("", self._ds.raster, options=options)
        if vrt is None:
            raise RuntimeError(
                f"GDAL could not build a warped VRT onto {dst_srs_arg!r}."
            )
        view = self._ds.__class__(vrt, access="read_only")
        # The VRT references the source GDAL handle; pin the source Dataset on
        # the view so Python cannot garbage-collect it underneath the VRT.
        view._warp_source = self._ds
        return view

    def _get_epsg(self) -> int | None:
        """Get the EPSG number.

            This function reads the projection of a GEOGCS file or tiff file.

        Returns:
            int: EPSG number.
        """
        prj = self._get_crs()
        # get_epsg_from_prj raises on empty input; epsg_from_wkt
        # absorbs the historical 4326 fallback for datasets without a
        # projection.
        epsg = epsg_from_wkt(prj)

        return epsg

    def wrap_longitude(self) -> Dataset:
        """Wrap a global raster's longitude from the 0/360 frame to the -180/180 frame.

        The wrap is a pure column roll (no resampling): the columns whose longitude is greater than
        180 (the western hemisphere in the -180/180 frame) move to the front, the remaining columns
        follow, and the geotransform's top-left x is moved to -180. The raster must span the whole
        globe (its last longitude must exceed 180).

        Two execution paths, selected automatically by the source:

        - **File-backed source** (a real on-disk raster): the roll is built as a lazy two-source VRT,
          so no pixel data is read until the result is used (read, plotted, cropped, or written).
        - **In-memory source** (e.g. a NetCDF variable view from ``get_variable``, which has no
          filename for a VRT to reference): an eager fallback copies the dataset once via
          ``MEM.CreateCopy`` (preserving all metadata) and rolls the columns in place, so the source
          is read only once.

        Returns:
            Dataset:
                A new dataset of the same class on the -180/180 grid. Same shape, dtype, band count,
                no-data value, and CRS as the source; only the columns and the top-left x change.
                File-backed inputs yield a VRT-backed (lazy) dataset; in-memory inputs an MEM-backed
                one.

        Raises:
            ValueError: If the grid is not a global 0-360 grid — it must span ~360° of longitude
                (within one cell) and lie in the 0-360 frame (its last longitude exceeds 180).
                Regional windows and grids already in the -180/180 frame are rejected.

        Examples:
            - Shift an in-memory 0-360 global raster and inspect the new extent:
                ```python
                >>> import numpy as np
                >>> from pyramids.dataset import Dataset
                >>> arr = np.arange(360, dtype=np.float32).reshape(1, 360)
                >>> ds = Dataset.create_from_array(
                ...     arr, top_left_corner=(0.0, 0.5), cell_size=1.0, epsg=4326,
                ...     no_data_value=-9999.0,
                ... )
                >>> shifted = ds.wrap_longitude()
                >>> shifted.top_left_corner[0]
                -180.0
                >>> bool(shifted.lon.max() < 180)
                True
                >>> shifted.read_array(band=0).shape
                (1, 360)

                ```
            - A raster that does not span the globe raises ``ValueError``:
                ```python
                >>> import numpy as np
                >>> from pyramids.dataset import Dataset
                >>> ds = Dataset.create_from_array(
                ...     np.ones((3, 3), dtype=np.float32), top_left_corner=(0.0, 0.0),
                ...     cell_size=0.05, epsg=4326, no_data_value=-9999.0,
                ... )
                >>> ds.wrap_longitude()  # doctest: +ELLIPSIS
                Traceback (most recent call last):
                    ...
                ValueError: wrap_longitude requires a global grid ...

                ```

        See Also:
            to_crs: Reproject to a different CRS (a full warp, not a column roll).
        """
        lon = self._ds.lon
        # Require a grid that actually spans the globe in the 0-360 frame: the longitudinal extent
        # (n_columns * cell) must be ~360° (within one cell), and the last longitude must exceed 180.
        # This rejects regional windows (e.g. 200-330) and grids already in the -180/180 frame, which
        # the bare `lon[-1] > 180` check would have silently mis-wrapped.
        cell = abs(float(lon[1] - lon[0])) if len(lon) > 1 else 0.0
        spans_globe = cell > 0 and abs(len(lon) * cell - 360.0) <= cell
        if not (spans_globe and lon[-1] > 180):
            raise ValueError(
                "wrap_longitude requires a global grid spanning ~360° in the 0-360 longitude "
                f"frame; got {len(lon)} columns covering "
                f"{float(lon[0]):g}..{float(lon[-1]):g}°."
            )

        src = self._ds.raster
        n_columns = src.RasterXSize
        first_to_translated = int(np.nonzero(lon > 180)[0][0])
        gt = list(src.GetGeoTransform())
        gt[0] = self._ds.top_left_corner[0] - 180

        # Route to the lazy VRT only when the source is referenceable by a real on-disk path
        # (a plain file). In-memory views — e.g. a NetCDF variable via AsClassicDataset — report the
        # backing file in GetFileList() but expose no usable description for a VRT SourceFilename, so
        # they take the eager path.
        description = src.GetDescription()
        # Path.exists() returns False (it never raises) for a non-path description — an empty
        # in-memory view or a `NETCDF:"file":var` subdataset string — so those take the eager path.
        is_file_backed = bool(description) and Path(description).exists()

        if is_file_backed:
            # A — lazy: file-backed source, roll columns via a two-source VRT (no data read).
            dst = self._wrap_longitude_vrt(src, first_to_translated, gt)
        else:
            # B — eager: in-memory source has no filename for a VRT, so materialise once via
            # CreateCopy (which preserves all metadata) and roll the columns in place, reading the
            # cheap in-memory copy instead of re-reading the source a second time.
            dst = gdal.GetDriverByName("MEM").CreateCopy("", src, 0)
            order = list(range(first_to_translated, n_columns)) + list(
                range(0, first_to_translated)
            )
            for band in range(src.RasterCount):
                gdal_band = dst.GetRasterBand(band + 1)
                gdal_band.WriteArray(gdal_band.ReadAsArray()[:, order])
            dst.SetGeoTransform(gt)
        return self._ds.__class__(dst)

    @staticmethod
    def _wrap_longitude_vrt(src, first_to_translated: int, gt: list) -> gdal.Dataset:
        """Build a lazy two-source VRT that rolls 0-360 columns to -180-180 without reading data.

        Each band gets two ``SimpleSource`` entries that reference the source file by an absolute path:
        the columns ``>= first_to_translated`` (longitudes > 180, i.e. the western hemisphere in the
        -180/180 frame) are mapped to the front, and the remaining columns follow. The source
        projection, dataset metadata, and per-band no-data values are carried across. Reads against the
        returned VRT are deferred to the backing file, so no pixel data is read here.

        Args:
            src (gdal.Dataset):
                The file-backed source dataset (its ``GetDescription()`` must be a resolvable path).
            first_to_translated (int):
                Index of the first column whose longitude exceeds 180; the split point of the roll.
            gt (list):
                The destination geotransform (the source geotransform with its top-left x set to -180).

        Returns:
            gdal.Dataset:
                An in-memory VRT dataset that lazily rolls the columns when read.
        """
        n_columns, n_rows, n_bands = src.RasterXSize, src.RasterYSize, src.RasterCount
        right_width = n_columns - first_to_translated
        # Use an absolute path so the in-memory VRT resolves the source regardless of CWD; leave
        # non-path descriptions (e.g. `NETCDF:"file":var` subdatasets) untouched.
        description = src.GetDescription()
        source_name = str(Path(description).resolve()) if Path(description).exists() else description
        source_name = escape(source_name)

        vrt = gdal.GetDriverByName("VRT").Create("", n_columns, n_rows, 0)
        vrt.SetGeoTransform(gt)
        projection = src.GetProjection()
        if projection:
            vrt.SetProjection(projection)
        vrt.SetMetadata(src.GetMetadata())

        def simple_source(band_index: int, src_x_off: int, dst_x_off: int, width: int) -> str:
            dtype = gdal.GetDataTypeName(src.GetRasterBand(band_index).DataType)
            return (
                f"<SimpleSource>"
                f'<SourceFilename relativeToVRT="0">{source_name}</SourceFilename>'
                f"<SourceBand>{band_index}</SourceBand>"
                f'<SourceProperties RasterXSize="{n_columns}" RasterYSize="{n_rows}" '
                f'DataType="{dtype}"/>'
                f'<SrcRect xOff="{src_x_off}" yOff="0" xSize="{width}" ySize="{n_rows}"/>'
                f'<DstRect xOff="{dst_x_off}" yOff="0" xSize="{width}" ySize="{n_rows}"/>'
                f"</SimpleSource>"
            )

        for band_index in range(1, n_bands + 1):
            source_band = src.GetRasterBand(band_index)
            vrt.AddBand(source_band.DataType)
            vrt_band = vrt.GetRasterBand(band_index)
            no_data = source_band.GetNoDataValue()
            if no_data is not None:
                vrt_band.SetNoDataValue(no_data)
            vrt_band.SetMetadataItem(
                "source_0",
                simple_source(band_index, first_to_translated, 0, right_width),
                "new_vrt_sources",
            )
            vrt_band.SetMetadataItem(
                "source_1",
                simple_source(band_index, 0, right_width, first_to_translated),
                "new_vrt_sources",
            )
        return vrt

    def resample(
        self,
        cell_size: int | float | tuple[float, float],
        method: str = "nearest neighbor",
    ) -> Dataset:
        """Resample a raster to a new cell size.

        Resample the raster to ``cell_size`` using the requested interpolation method, keeping the
        existing CRS and extent. Returns a new in-memory Dataset; the source is left unchanged.

        Args:
            cell_size (int | float | tuple):
                New cell size to resample the raster to, in the units of the raster CRS. A scalar
                applies to both axes (square cells); an ``(x_res, y_res)`` pair gives non-square
                cells (e.g. ``(2.0, 1.0)`` for 2° longitude by 1° latitude).
            method (str):
                Resampling method, case-insensitive. Default is "nearest neighbor". Allowed values: "nearest"
                (alias "nearest neighbor"), "bilinear", "cubic", "cubic_spline", "lanczos", "average",
                "mode", "max", "min", "med", "q1", "q3", "sum", and "rms" (the GDAL warp algorithms;
                "sum"/"rms" need GDAL >= 3.1/3.3). Note: the aggregating algorithms ("average", "mode",
                "med", "q1", "q3", "sum", "rms") are not no-data-aware on this warp path — no-data cells
                inside a resampling kernel are mixed into the result. Prefer "nearest" on rasters that
                carry a no-data marker.

        Returns:
            Dataset:
                A new resampled Dataset.

        Raises:
            TypeError: If ``method`` is not a string.
            ValueError: If ``method`` is not one of the supported interpolation methods.

        Examples:
            - Create a 4-band 10×10 dataset at lon/lat (0, 0) with a 0.05° cell size, then resample to a
              coarser 0.1° cell. Halving the resolution halves the row/column count in each dimension
              (10 → 5), and the source CRS and band count carry through unchanged:

              ```python
              >>> import numpy as np
              >>> from pyramids.dataset import Dataset
              >>> arr = np.random.rand(4, 10, 10)
              >>> dataset = Dataset.create_from_array(
              ...     arr, top_left_corner=(0, 0), cell_size=0.05, epsg=4326
              ... )
              >>> (dataset.rows, dataset.columns, dataset.band_count)
              (10, 10, 4)
              >>> resampled = dataset.resample(cell_size=0.1)
              >>> (resampled.rows, resampled.columns, resampled.band_count, resampled.epsg)
              (5, 5, 4, 4326)
              >>> resampled.geotransform[1]
              0.1

              ```
              ![resample-source](./../../_images/dataset/resample-source.png)
              ![resample-new](./../../_images/dataset/resample-new.png)
        """
        resampling_method: int = resolve_resampling(method)
        # cell_size may be a scalar (square) or an (x_res, y_res) pair (non-square output).
        x_res, y_res = _resolve_resolution(cell_size)

        sr_src = sr_from_wkt(self._ds.crs)
        # NetCDF variable views expose their CRS as an EPSG code (derived from CF coordinates) rather
        # than WKT on the raster, so `crs` can be empty even when `epsg` is known. Fall back to epsg to
        # avoid building a corrupt SpatialReference (which fails on ExportToWkt) (#588).
        if not self._ds.crs and self._ds.epsg:
            sr_src = sr_from_epsg(self._ds.epsg)

        ulx = self._ds.geotransform[0]
        uly = self._ds.geotransform[3]
        # transform the right lower corner point
        lrx = self._ds.geotransform[0] + self._ds.geotransform[1] * self._ds.columns
        lry = self._ds.geotransform[3] + self._ds.geotransform[5] * self._ds.rows

        # new geotransform — separate X/Y cell sizes so non-square output is supported
        new_geo = (
            self._ds.geotransform[0],
            x_res,
            self._ds.geotransform[2],
            self._ds.geotransform[3],
            self._ds.geotransform[4],
            -1 * y_res,
        )
        # create a new raster
        cols = int(np.round(abs(lrx - ulx) / x_res))
        rows = int(np.round(abs(uly - lry) / y_res))
        dtype = self._ds.gdal_dtype[0]
        bands = self._ds.band_count

        dst_obj = self._ds.__class__._build_dataset(
            cols,
            rows,
            bands,
            dtype,
            new_geo,
            sr_src.ExportToWkt(),
            self._ds.no_data_value,
        )
        gdal.ReprojectImage(
            self._ds.raster,
            dst_obj.raster,
            sr_src.ExportToWkt(),
            sr_src.ExportToWkt(),
            resampling_method,
        )

        return dst_obj

    def _reproject_with_ReprojectImage(
        self,
        dst_sr: osr.SpatialReference,
        method: int = gdal.GRA_NearestNeighbour,
    ) -> Dataset:
        """Reproject the dataset by deriving an extent from corner reprojection.

        Drives the alignment-preserving branch of :meth:`to_crs` — chosen by
        ``maintain_alignment=True``. Reprojects the source corners through
        :func:`pyramids.base.crs.reproject_coordinates` to compute the output
        extent, measures the X/Y cell-step independently (so a non-square
        output aspect is honoured), allocates the destination raster, and
        finally runs :func:`gdal.ReprojectImage` to fill it.

        Both source and destination spatial references are normalised to
        ``OAMS_TRADITIONAL_GIS_ORDER`` before the identity check. This lets
        :meth:`osr.SpatialReference.IsSame` report semantic equality even when
        the two SRSes were built from different axis-order strategies (the
        common case: a ``sr_from_wkt(self._ds.crs)`` source + a
        ``sr_from_user_input`` target), which is what enables the same-CRS
        shortcut to actually fire. See issue #418 for the underlying bug.

        For a geographic source whose left edge sits past longitude 180, the
        edge is shifted into the western hemisphere (``- 360``) before
        reprojection so the corner-derived extent does not collapse across
        the dateline.

        Args:
            dst_sr: Target spatial reference. Any axis-mapping strategy is
                accepted; the function normalises only the *source* side.
                Built from ``Spatial.to_crs(..., maintain_alignment=True)``
                via :func:`pyramids.base.crs.sr_from_user_input`, but callers
                may pass any pre-built SRS.
            method: GDAL resampling algorithm constant (e.g.
                ``gdal.GRA_NearestNeighbour``, ``gdal.GRA_Bilinear``,
                ``gdal.GRA_Cubic``). Resolve a method *name* through
                :func:`pyramids.base._utils.resolve_resampling` when calling
                from outside :meth:`to_crs`.

        Returns:
            Dataset: A new ``Dataset`` covering the reprojected extent. Cell
            size equals the corner-derived per-axis cell-step on the target
            CRS; row and column counts are derived from the extent / cell-step
            ratio (so the output shape is approximately, not exactly, the
            source shape — corner-sampled spacings are accurate for affine
            reprojections and approximate for footprints spanning large
            latitude ranges, where the gdal.Warp path is preferred).

        Examples:
            - Identity reprojection: passing the source's own CRS hits the
              ``IsSame`` shortcut and preserves the source geotransform
              bit-exactly. Use the public :meth:`to_crs` facade rather than
              calling this private method directly:
                ```python
                >>> import numpy as np
                >>> from pyramids.dataset import Dataset
                >>> arr = np.ones((5, 5), dtype=np.float32)
                >>> ds = Dataset.create_from_array(
                ...     arr,
                ...     top_left_corner=(10.0, 50.0),
                ...     cell_size=0.5,
                ...     epsg=4326,
                ...     no_data_value=-9999.0,
                ... )
                >>> result = ds.to_crs(to_epsg=4326, maintain_alignment=True)
                >>> result.geotransform == ds.geotransform
                True
                >>> (result.rows, result.columns) == (ds.rows, ds.columns)
                True

                ```
            - Cross-CRS alignment-preserving reproject: 4326 → 3857 keeps the
              source row/column count and changes the cell size to metres.
              At 60°N the longitudinal cell size is roughly half the
              latitudinal cell size, so the output is non-square:
                ```python
                >>> import numpy as np
                >>> from pyramids.dataset import Dataset
                >>> arr = np.ones((10, 10), dtype=np.float32)
                >>> ds = Dataset.create_from_array(
                ...     arr,
                ...     top_left_corner=(10.0, 60.5),
                ...     cell_size=0.1,
                ...     epsg=4326,
                ...     no_data_value=-9999.0,
                ... )
                >>> result = ds.to_crs(to_epsg=3857, maintain_alignment=True)
                >>> result.epsg
                3857
                >>> abs(result.geotransform[5]) > abs(result.geotransform[1])
                True

                ```

        See Also:
            - :meth:`Spatial.to_crs`: Public facade that picks this method
              when ``maintain_alignment=True`` and routes through
              :func:`gdal.Warp` otherwise.
            - :func:`pyramids.base.crs.reproject_coordinates`: Reprojects the
              corner / step coordinate pairs used to derive the destination
              extent and cell size.
        """
        src_gt = self._ds.geotransform
        src_x = self._ds.columns
        src_y = self._ds.rows

        src_sr = sr_from_wkt(self._ds.crs)
        # Normalise to traditional GIS axis order (lon/easting first). sr_from_wkt
        # preserves GDAL's default OAMS_AUTHORITY_COMPLIANT order, which is
        # lat-first for geographic CRSes; dst_sr comes from sr_from_user_input,
        # which always uses traditional order. Aligning both sides here lets
        # IsSame() report semantic equality (instead of WKT-byte equality, which
        # fails for two SRSes that differ only in axis-mapping strategy — #418)
        # and removes any axis-order surprise from downstream reprojection math.
        src_sr.SetAxisMappingStrategy(osr.OAMS_TRADITIONAL_GIS_ORDER)
        src_wkt = src_sr.ExportToWkt()
        dst_wkt = dst_sr.ExportToWkt()
        same_crs = bool(src_sr.IsSame(dst_sr))

        if not same_crs:
            # In a geographic source whose longitudes wrap past 180, shift the
            # left edge into the western hemisphere before reprojecting so the
            # corner-derived extent does not collapse across the dateline.
            west_edge = (
                src_gt[0] - 360
                if src_sr.IsGeographic() and src_gt[0] > 180
                else src_gt[0]
            )
            xs = [west_edge, west_edge + src_gt[1] * src_x]
            ys = [src_gt[3], src_gt[3] + src_gt[5] * src_y]
            [ulx, lrx], [uly, lry] = reproject_coordinates(
                xs, ys, from_crs=src_wkt, to_crs=dst_wkt
            )
        else:
            ulx = src_gt[0]
            uly = src_gt[3]
            lrx = src_gt[0] + src_gt[1] * src_x
            lry = src_gt[3] + src_gt[5] * src_y

        # measure the X and Y cell-size separately by reprojecting a
        # one-pixel step on each axis. The previous code only stepped
        # X (passing `ys = [src_gt[3], src_gt[3]]`) and reused the X
        # spacing for Y, which forced square output pixels and
        # silently squashed non-square reprojections (e.g. 4326 →
        # 3857 at non-zero latitude). Corner-sampled spacings are
        # exact for affine transforms (UTM ↔ lat-lon, equal-area)
        # and approximate for footprints spanning large latitude
        # ranges where local pixel size varies — for those cases
        # route through the gdal.Warp path in `Spatial.to_crs`.
        x_pair_xs = [src_gt[0], src_gt[0] + src_gt[1]]
        x_pair_ys = [src_gt[3], src_gt[3]]
        y_pair_xs = [src_gt[0], src_gt[0]]
        y_pair_ys = [src_gt[3], src_gt[3] + src_gt[5]]

        if not same_crs:
            # x_pair_xs and x_pair_ys are horizontally spaced by the cell size, after reprojection gives the cell size
            # in x
            new_x_xs, _ = reproject_coordinates(
                x_pair_xs,
                x_pair_ys,
                from_crs=src_wkt,
                to_crs=dst_wkt,
                precision=6,
            )
            # y_pair_xs and y_pair_ys are vertically spaced by the cell size, after reprojection gives the cell size
            # in y
            _, new_y_ys = reproject_coordinates(
                y_pair_xs,
                y_pair_ys,
                from_crs=src_wkt,
                to_crs=dst_wkt,
                precision=6,
            )
        else:
            new_x_xs = x_pair_xs
            new_y_ys = y_pair_ys

        x_spacing = np.abs(new_x_xs[0] - new_x_xs[1])
        y_spacing = np.abs(new_y_ys[0] - new_y_ys[1])

        cols = int(np.round(abs(lrx - ulx) / x_spacing))
        rows = int(np.round(abs(uly - lry) / y_spacing))

        dtype = self._ds.gdal_dtype[0]
        new_geo = (
            ulx,
            x_spacing,
            src_gt[2],
            uly,
            src_gt[4],
            np.sign(src_gt[-1]) * y_spacing,
        )
        dst_obj = self._ds.__class__._build_dataset(
            cols,
            rows,
            self._ds.band_count,
            dtype,
            new_geo,
            dst_sr.ExportToWkt(),
            self._ds.no_data_value,
        )
        gdal.ReprojectImage(
            self._ds.raster,
            dst_obj.raster,
            src_sr.ExportToWkt(),
            dst_sr.ExportToWkt(),
            method,
        )
        return dst_obj

    def fill_gaps(self, mask, src_array: np.ndarray) -> np.typing.NDArray:
        """Fill gaps in src_array using nearest neighbors where mask indicates valid cells.

        Args:
            mask (Dataset | np.ndarray):
                Mask dataset or array used to determine valid cells.
            src_array (np.ndarray):
                Source array whose gaps will be filled.

        Returns:
            np.ndarray: The source array with gaps filled where applicable.
        """
        # align function only equate the no of rows and columns only
        # match no_data_value inserts no_data_value in src raster to all places like mask
        # still places that has no_data_value in the src raster, but it is not no_data_value in the mask
        # and now has to be filled with values
        # compare no of element that is not no_data_value in both rasters to make sure they are matched
        # if both inputs are rasters
        # read_array() is called with no chunks=, so it always returns a plain
        # ndarray here (the dask.Array arm of ArrayLike is unreachable).
        mask_array = cast(np.typing.NDArray, mask.read_array())
        mask_noval = mask.no_data_value[0]

        if isinstance(mask, RasterBase) and isinstance(self._ds, RasterBase):
            src_no_data = is_no_data(src_array, self._ds.no_data_value[0])
            mask_no_data = is_no_data(mask_array, mask_noval)
            elem_src = src_array.size - np.count_nonzero(src_array[src_no_data])
            elem_mask = mask_array.size - np.count_nonzero(mask_array[mask_no_data])

            # Cells that are out-of-domain in src but in-domain in mask
            # need to be interpolated from neighbors.
            if elem_mask > elem_src:
                gap_rows, gap_cols = np.where(src_no_data & ~mask_no_data)
                src_array = Vectorize._nearest_neighbour(
                    src_array,
                    self._ds.no_data_value[0],
                    gap_rows.tolist(),
                    gap_cols.tolist(),
                )
        return src_array

    def _crop_aligned(
        self,
        mask: gdal.Dataset | np.ndarray,
        mask_noval: int | float | None = None,
        fill_gaps: bool = False,
    ) -> Dataset:
        """Clip/crop by matching the nodata layout from mask to the source raster.

        Both rasters must have the same dimensions (rows and columns). Use MatchRasterAlignment prior to this
        method to align both rasters.

        Args:
            mask (Dataset | np.ndarray):
                Mask raster to get the location of the NoDataValue and where it is in the array.
            mask_noval (int | float, optional):
                In case the mask is a numpy array, the mask_noval has to be given.
            fill_gaps (bool):
                Whether to fill gaps after cropping. Default is False.

        Returns:
            Dataset:
                The raster with NoDataValue stored in its cells exactly the same as the source raster.
        """
        if isinstance(mask, RasterBase):
            mask_gt = mask.geotransform
            mask_epsg = mask.epsg
            row = mask.rows
            col = mask.columns
            mask_noval = mask.no_data_value[0]
            # read_array() is called with no chunks=, so it always returns a plain
            # ndarray here (the dask.Array arm of ArrayLike is unreachable).
            mask_array = cast(np.typing.NDArray, mask.read_array(band=0))
        elif isinstance(mask, np.ndarray):
            if mask_noval is None:
                raise ValueError(
                    "You have to enter the value of the no_val parameter when the mask is a numpy array"
                )
            mask_array = mask.copy()
            row, col = mask.shape
        else:
            raise TypeError(
                "The second parameter 'mask' has to be either gdal.Dataset or numpy array"
                f"given - {type(mask)}"
            )

        band_count = self._ds.band_count
        src_sref = sr_from_wkt(self._ds.crs)
        # read_array() is called with no chunks=, so it always returns a plain
        # ndarray here (the dask.Array arm of ArrayLike is unreachable).
        src_array = cast(np.typing.NDArray, self._ds.read_array())

        if not row == self._ds.rows or not col == self._ds.columns:
            raise ValueError(
                "Two rasters have different number of columns or rows, please resample or match both rasters"
            )

        if isinstance(mask, RasterBase):
            if (
                not self._ds.top_left_corner == mask.top_left_corner
                or not self._ds.cell_size == mask.cell_size
            ):
                raise ValueError(
                    "the location of the upper left corner of both rasters is not the same or cell size is "
                    "different please match both rasters first "
                )

            if not mask_epsg == self._ds.epsg:
                raise ValueError(
                    "Dataset A & B are using different coordinate systems please reproject one of them to "
                    "the other raster coordinate system"
                )

        mask_no_data = is_no_data(mask_array, mask_noval)
        if band_count > 1:
            # check if the no data value for the src complies with the dtype of the src as sometimes the band is full
            # of values and the no_data_value is not used at all in the band, and when we try to replace any value in
            # the array with the no_data_value it will raise an error.
            no_data_value = self._ds._check_no_data_value(self._ds.no_data_value)
            for band in range(self._ds.band_count):
                src_array[band, mask_no_data] = no_data_value[band]
        else:
            src_array[mask_no_data] = self._ds.no_data_value[0]

        if fill_gaps:
            src_array = self.fill_gaps(mask, src_array)

        dst = self._ds.__class__._create_dataset(
            col, row, band_count, self._ds.gdal_dtype[0], driver="MEM"
        )
        # if the mask is a numpy array there's no geotransform / CRS
        # to copy from it; fall back to the source raster's because
        # the contract requires both rasters to be already aligned.
        if isinstance(mask, RasterBase):
            dst.SetGeoTransform(mask_gt)
            dst.SetProjection(mask.crs)
        else:
            dst.SetGeoTransform(self._ds.geotransform)
            dst.SetProjection(src_sref.ExportToWkt())

        dst_obj = self._ds.__class__(dst)
        # set the no data value
        dst_obj._set_no_data_value(self._ds.no_data_value)
        if band_count > 1:
            for band in range(band_count):
                dst_obj.raster.GetRasterBand(band + 1).WriteArray(src_array[band, :, :])
        else:
            dst_obj.raster.GetRasterBand(1).WriteArray(src_array)
        return dst_obj

    def _check_alignment(self, mask) -> bool:
        """Check if raster is aligned with a given mask raster."""
        if not isinstance(mask, RasterBase):
            raise TypeError("The second parameter should be a Dataset")

        return self._ds.rows == mask.rows and self._ds.columns == mask.columns

    def align(
        self,
        alignment_src: Dataset,
    ) -> Dataset:
        """Align the current dataset (rows and columns) to match a given dataset.

        Copies spatial properties from alignment_src to the current raster:
            - The coordinate system
            - The number of rows and columns
            - Cell size
        Then resamples values from the current dataset using the nearest neighbor interpolation.

        Args:
            alignment_src (Dataset):
                Spatial information source raster to get the spatial information (coordinate system, number of rows and
                columns). The data values of the current dataset are resampled to this alignment.

        Returns:
            Dataset: A new aligned Dataset.

        Examples:
            - The source dataset has a `top_left_corner` at (0, 0) with a 5*5 alignment, and a 0.05 degree cell size.

              ```python
              >>> import numpy as np
              >>> from pyramids.dataset import Dataset
              >>> arr = np.random.rand(5, 5)
              >>> dataset = Dataset.create_from_array(
              ...     arr, top_left_corner=(0, 0), cell_size=0.05, epsg=4326
              ... )
              >>> (dataset.rows, dataset.columns, dataset.epsg, dataset.band_count)
              (5, 5, 4326, 1)

              ```

            - The dataset to be aligned has a top_left_corner at (-0.1, 0.1) (i.e., it has two more rows on top of the
              dataset, and two columns on the left of the dataset).

              ```python
              >>> import numpy as np
              >>> from pyramids.dataset import Dataset
              >>> arr_target = np.random.rand(10, 10)
              >>> dataset_target = Dataset.create_from_array(
              ...     arr_target, top_left_corner=(-0.1, 0.1), cell_size=0.07, epsg=4326
              ... )
              >>> (dataset_target.rows, dataset_target.columns, dataset_target.geotransform[1])
              (10, 10, 0.07)

              ```

            ![align-source-target](./../../_images/dataset/align-source-target.png)

            - Now call the `align` method and use the source dataset as the alignment template. The aligned
              dataset adopts the source's cell size, dimensions, and CRS:

              ```python
              >>> import numpy as np
              >>> from pyramids.dataset import Dataset
              >>> source = Dataset.create_from_array(
              ...     np.random.rand(5, 5),
              ...     top_left_corner=(0, 0), cell_size=0.05, epsg=4326,
              ... )
              >>> target = Dataset.create_from_array(
              ...     np.random.rand(10, 10),
              ...     top_left_corner=(-0.1, 0.1), cell_size=0.07, epsg=4326,
              ... )
              >>> aligned = target.align(source)
              >>> (aligned.rows, aligned.columns, aligned.geotransform[1], aligned.epsg)
              (5, 5, 0.05, 4326)

              ```

            ![align-result](./../../_images/dataset/align-result.png)
        """
        if isinstance(alignment_src, RasterBase):
            src = alignment_src
        else:
            raise TypeError(
                "First parameter should be a Dataset read using Dataset.openRaster or a path to the raster, "
                f"given {type(alignment_src)}"
            )

        # reproject the raster to match the projection of alignment_src
        reprojected_raster_b: Dataset = self._ds
        if self._ds.epsg != src.epsg:
            reprojected_raster_b = self.to_crs(src.epsg or src.crs)  # type: ignore[assignment]
        dst_obj = self._ds.__class__._build_dataset(
            src.columns,
            src.rows,
            self._ds.band_count,
            src.gdal_dtype[0],
            src.geotransform,
            src.crs,
            self._ds.no_data_value,
        )
        method = gdal.GRA_NearestNeighbour
        # resample the reprojected_RasterB
        gdal.ReprojectImage(
            reprojected_raster_b.raster,
            dst_obj.raster,
            src.crs,
            src.crs,
            method,
        )

        return dst_obj

    def _crop_with_raster(
        self,
        mask: gdal.Dataset | str,
    ) -> Dataset:
        """Crop this raster using another raster as a mask.

        Args:
            mask (Dataset | str):
                The raster you want to use as a mask to crop this raster; it can be a path or a GDAL Dataset.

        Returns:
            Dataset:
                The cropped raster.
        """
        # get information from the mask raster
        if isinstance(mask, (str, Path)):
            mask = self._ds.__class__.read_file(mask)
        elif not isinstance(mask, RasterBase):
            raise TypeError(
                "The second parameter has to be either path to the mask raster or a gdal.Dataset object"
            )
        if not self._check_alignment(mask):
            # first align the mask with the src raster
            mask = mask.align(self._ds)
        # crop the src raster with the aligned mask
        dst_obj = self._crop_aligned(mask)

        dst_obj = Spatial._correct_wrap_cutline_error(dst_obj)
        return dst_obj

    def _crop_with_polygon_warp(
        self, feature: FeatureCollection | GeoDataFrame, touch: bool = True
    ) -> Dataset:
        """Crop raster with polygon.

            - Do not convert the polygon into a raster but rather use it directly to crop the raster using the
            gdal.warp function.

        Args:
            feature (FeatureCollection | GeoDataFrame):
                Vector mask.
            touch (bool):
                Include cells that touch the polygon, not only those entirely inside the polygon mask. Defaults to True.

        Returns:
            Dataset:
                Cropped dataset.
        """
        if isinstance(feature, GeoDataFrame):
            feature = FeatureCollection(feature)
        else:
            if not isinstance(feature, FeatureCollection):
                raise TypeError(
                    f"The function takes only a FeatureCollection or GeoDataFrame, given {type(feature)}"
                )

        # gdal.Warp's cutlineDSName needs a *path*; stage the vector in
        # /vsimem/ through the internal OGR bridge. The path is unlinked
        # automatically when the with-block exits.
        # Use the base Dataset class (not a subclass like NetCDF) for intermediate GDAL warp results
        # because _correct_wrap_cutline_error calls create_from_array which has different behavior in
        # subclasses.
        base_cls = next(
            c
            for c in self._ds.__class__.__mro__
            if RasterBase in getattr(c, "__bases__", ())
        )

        # The warp output (VRT) may resolve the cutline lazily, so we must
        # complete every access that could touch the cutline path inside
        # the with-block that keeps that path alive.
        with _feature_ogr.as_vsimem_path(feature) as cutline_path:
            warp_options = gdal.WarpOptions(
                format="VRT",
                cropToCutline=not touch,
                cutlineDSName=cutline_path,
                multithread=True,
            )
            dst = gdal.Warp("", self._ds.raster, options=warp_options)
            # base_cls is a dynamic MRO walk that always resolves to Dataset itself
            # (the class directly above RasterBase; see the comment above), never a
            # subclass, so this is guaranteed to actually be a Dataset at runtime.
            dst_obj = cast("Dataset", base_cls(dst))
            if touch:
                dst_obj = Spatial._correct_wrap_cutline_error(dst_obj)

        return dst_obj

    @staticmethod
    def _correct_wrap_cutline_error(src: Dataset) -> Dataset:
        """Trim the all-nodata border GDAL leaves after a cutline warp.

        ``gdal.Warp`` with ``cropToCutline=False`` (the ``touch=True``
        crop path) keeps the source grid and fills the cells outside the
        cutline with the no-data value, producing a frame of fully-nodata
        rows and columns around the real data. This rebuilds the dataset
        from the array with those edge rows/columns removed and the
        geotransform shifted to the new top-left corner.

        The output CRS is copied from the source **WKT** (``src.crs``)
        rather than round-tripped through ``src.epsg``: a custom CRS with
        no resolvable EPSG (e.g. a spherical-earth GRIB GEOGCS) would
        otherwise be relabelled — or, before issue #403 was fixed, crash
        on ``sr_from_epsg`` — so the exact source CRS is preserved. When the
        source is unprojected (``src.crs`` is empty) the copy is skipped, so
        the rebuilt dataset keeps the :meth:`Dataset.create_from_array`
        default CRS instead of having its projection wiped to empty.

        Args:
            src (Dataset): Result of the cutline warp, expected to carry a
                fully-nodata border. Its single no-data value
                (``src.no_data_value[0]``) marks the cells to trim. The
                backing array must be 2D (single band) or 3D
                (band, row, col).

        Returns:
            Dataset: A new in-memory dataset with the all-nodata border
            rows/columns removed, the geotransform shifted to the trimmed
            top-left corner, and the no-data value and band count preserved.
            The CRS is the source CRS, or the ``create_from_array`` default
            when the source is unprojected.

        Raises:
            ValueError: If the source array is neither 2D nor 3D.

        See Also:
            Spatial.crop: Caller that applies this correction when
                ``touch=True``.

        References:
            https://github.com/serapeum-org/pyramids/issues/74
        """
        big_array = src.read_array()
        value_to_remove = src.no_data_value[0]
        # Find rows and columns to be removed
        if big_array.ndim == 2:
            rows_to_remove = np.all(big_array == value_to_remove, axis=1)
            cols_to_remove = np.all(big_array == value_to_remove, axis=0)
            # Use boolean indexing to remove rows and columns
            small_array = big_array[~rows_to_remove][:, ~cols_to_remove]
        elif big_array.ndim == 3:
            rows_to_remove = np.all(big_array == value_to_remove, axis=(0, 2))
            cols_to_remove = np.all(big_array == value_to_remove, axis=(0, 1))
            # Use boolean indexing to remove rows and columns
            # first remove the rows then the columns
            small_array = big_array[:, ~rows_to_remove, :]
            small_array = small_array[:, :, ~cols_to_remove]
            n_rows = np.count_nonzero(~rows_to_remove)
            n_cols = np.count_nonzero(~cols_to_remove)
            small_array = small_array.reshape((src.band_count, n_rows, n_cols))
        else:
            raise ValueError("Array must be 2D or 3D")

        valid_rows = np.where(~rows_to_remove)[0]
        valid_cols = np.where(~cols_to_remove)[0]
        if valid_rows.size == 0 or valid_cols.size == 0:
            raise ValueError(
                "crop produced no valid pixels: the bbox / polygon does not "
                "overlap any valid (non-no-data) data in the dataset."
            )
        x_ind = valid_rows[0]
        y_ind = valid_cols[0]
        # Use the source's separate X/Y pixel sizes (gt[1], gt[5]) rather than a single cell_size, so
        # a non-square grid (e.g. 2° lon, 1° lat) keeps its true latitude spacing. Identical to the
        # old cell_size form on square grids (gt[1] == -gt[5] == cell_size).
        warp_gt = src._raster.GetGeoTransform()
        x_cell, y_cell = warp_gt[1], warp_gt[5]
        new_x = src.x[y_ind] - x_cell / 2
        new_y = src.y[x_ind] - y_cell / 2
        new_gt = (new_x, x_cell, 0, new_y, 0, y_cell)
        new_src = src.create_from_array(
            small_array, geo=new_gt, no_data_value=src.no_data_value
        )
        # Preserve the source CRS from its WKT rather than round-tripping
        # through src.epsg: a custom CRS with no EPSG (e.g. a spherical-earth
        # GRIB GEOGCS) has no resolvable code, so passing epsg=src.epsg would
        # relabel — or, before issue #403 was fixed, crash on — the output.
        # Skip when the source is unprojected: setting an empty WKT would
        # wipe the create_from_array default, so leave that default in place.
        if src.crs:
            new_src.crs = src.crs
        return new_src

    def _crop_antimeridian(
        self,
        bbox: tuple[float, float, float, float],
        crs: Any,
        touch: bool,
    ) -> Dataset:
        """Crop with a geographic bbox whose ``west > east`` crosses the antimeridian.

        Splits the bbox at the grid's longitude seam (``180`` on a ``-180..180``
        grid, ``360`` on a ``0..360`` grid), crops each ``west < east`` half through
        the normal path, and concatenates the halves along longitude into one
        contiguous raster. A half that falls outside the dataset's longitude extent
        is skipped, so a single-sided overlap returns just that half.

        Args:
            bbox: ``(west, south, east, north)`` with ``west > east``.
            crs: The bbox CRS (defaults to the dataset's own upstream).
            touch: Forwarded to the per-half crop.

        Returns:
            Dataset: The cropped strip spanning the seam.

        Raises:
            ValueError: The bbox does not overlap the dataset's longitude extent.
        """
        # _crop_seam_halves is shared with the NetCDF Selection engine and returns
        # Any accordingly; here crop_half/merge_halves are both Dataset-returning,
        # so the result is a Dataset.
        return cast(
            "Dataset",
            _crop_seam_halves(
                self._ds,
                bbox,
                lambda half: self.crop(bbox=half, epsg=crs, touch=touch),
                self._merge_lon_halves,
            ),
        )

    def _merge_lon_halves(self, west_part: Dataset, east_part: Dataset) -> Dataset:
        """Concatenate two longitude-adjacent crops into one contiguous raster.

        `west_part` (the pre-seam half) sits to the left and `east_part` (the
        wrapped half past the seam) to its right; the merged raster keeps
        `west_part`'s north-up geotransform, so the linear longitude mapping simply
        continues past the seam (e.g. 170..180 then 180..190).

        Args:
            west_part: Crop of the pre-seam half.
            east_part: Crop of the post-seam half.

        Returns:
            Dataset: The concatenated raster.
        """
        return _stitch_lon_halves(self._ds, west_part, east_part)

    def crop(
        self,
        mask: GeoDataFrame | FeatureCollection | None = None,
        touch: bool = True,
        *,
        bbox: tuple[float, float, float, float] | list[float] | None = None,
        epsg: Any = None,
    ) -> Dataset:
        """Crop dataset using a polygon mask, a raster mask, or a bbox tuple.

            Crop/Clip the Dataset object using a polygon/raster — or, as a
            convenience, a plain ``(west, south, east, north)`` bbox tuple
            in some EPSG (no need to wrap it in a :class:`FeatureCollection`
            by hand).

        Args:
            mask (GeoDataFrame | Dataset | None):
                GeoDataFrame with a polygon geometry, or a Dataset object.
                Mutually exclusive with ``bbox``; exactly one of the two must
                be supplied.
            touch (bool):
                Include the cells that touch the polygon, not only those that lie entirely inside the polygon mask.
                Default is True.
            bbox (tuple[float, float, float, float] | None, keyword-only):
                ``(west, south, east, north)`` quadruple in the CRS named by
                ``epsg``. Internally wrapped in a one-row
                :class:`FeatureCollection` and routed through the same polygon
                path. Mutually exclusive with ``mask``. A *geographic* bbox with
                ``west > east`` (the STAC convention for an antimeridian-crossing
                area, e.g. ``(170, -10, -170, 10)``) is split at the 180°/360°
                seam, each half cropped, and the halves stitched into one
                contiguous strip whose longitudes continue past the seam
                (``170..190``). Works for ``-180..180`` and ``0..360`` grids.
                Behaviour change: a *geographic* ``west > east`` bbox is read as
                the STAC antimeridian convention (rather than raising
                ``bbox must satisfy west < east``) — but only when the dataset's
                longitude extent actually reaches the 180 seam. On a *regional*
                grid that does not reach the seam (e.g. Europe, lon ``-10..40``) a
                ``west > east`` bbox cannot be a genuine crossing, so it raises a
                clear error instead of silently returning a truncated crop —
                catching a transposed / typo'd bbox. A *projected* ``west > east``
                bbox is still validated and raises, since the antimeridian has no
                meaning off a geographic CRS.
            epsg (Any, keyword-only):
                CRS for ``bbox`` — anything ``geopandas`` accepts for ``crs=``
                (EPSG int, ``"EPSG:4326"``, WKT, ``pyproj.CRS``). Defaults to
                the dataset's own CRS, so a bbox in the dataset's native CRS
                needs no extra argument; pass it explicitly for a bbox in a
                different CRS (the standard reprojection path takes care of it).

        Returns:
            Dataset:
                A new cropped Dataset.

        Hint:
            - If the mask is a dataset with multi-bands, the `crop` method will use the first band as the mask.

        Examples:
            - Crop the raster using a polygon mask.

              - The polygon covers 4 cells in the 3rd and 4th rows and 3rd and 4th column `arr[2:4, 2:4]`, so the result
                dataset will have the same number of bands `4`, 2 rows and 2 columns.
              - First, create the dataset to have 4 bands, 10 rows and 10 columns; the dataset has a cell size of 0.05
                degree, the top left corner of the dataset is (0, 0).

              ```python
              >>> import numpy as np
              >>> import geopandas as gpd
              >>> from shapely.geometry import Polygon
              >>> from pyramids.dataset import Dataset
              >>> arr = np.random.rand(4, 10, 10)
              >>> cell_size = 0.05
              >>> top_left_corner = (0, 0)
              >>> dataset = Dataset.create_from_array(
              ...         arr, top_left_corner=top_left_corner, cell_size=cell_size, epsg=4326
              ... )

              ```
            - Second, create the polygon using shapely polygon, and use the xmin, ymin, xmax, ymax = [0.1, -0.2, 0.2 -0.1]
                to cover the 4 cells.

                ```python
                >>> mask = gpd.GeoDataFrame(geometry=[Polygon([(0.1, -0.1), (0.1, -0.2), (0.2, -0.2), (0.2, -0.1)])], crs=4326)

                ```
            - Pass the `geodataframe` to the crop method using the `mask` parameter.

              ```python
              >>> cropped_dataset = dataset.crop(mask=mask)

              ```
            - Check the cropped dataset:

              ```python
              >>> print(cropped_dataset.shape)
              (4, 2, 2)
              >>> print(cropped_dataset.geotransform)
              (0.1, 0.05, 0.0, -0.1, 0.0, -0.05)
              >>> print(cropped_dataset.read_array(band=0))# doctest: +SKIP
              [[0.00921161 0.90841171]
               [0.355636   0.18650262]]
              >>> print(arr[0, 2:4, 2:4])# doctest: +SKIP
              [[0.00921161 0.90841171]
               [0.355636   0.18650262]]

              ```
            - Crop a raster using another raster mask:

              - Create a mask dataset with the same extent of the polygon we used in the previous example.

              ```python
              >>> geotransform = (0.1, 0.05, 0.0, -0.1, 0.0, -0.05)
              >>> mask_dataset = Dataset.create_from_array(np.random.rand(2, 2), geo=geotransform, epsg=4326)

              ```
            - Then use the mask dataset to crop the dataset.

              ```python
              >>> cropped_dataset_2 = dataset.crop(mask=mask_dataset)
              >>> print(cropped_dataset_2.shape)
              (4, 2, 2)

              ```
            - Check the cropped dataset:

              ```python
              >>> print(cropped_dataset_2.geotransform)
              (0.1, 0.05, 0.0, -0.1, 0.0, -0.05)
              >>> print(cropped_dataset_2.read_array(band=0))# doctest: +SKIP
              [[0.00921161 0.90841171]
               [0.355636   0.18650262]]
              >>> print(arr[0, 2:4, 2:4])# doctest: +SKIP
               [[0.00921161 0.90841171]
               [0.355636   0.18650262]]

              ```

            - Crop using a ``(west, south, east, north)`` bbox tuple instead of
              a hand-built ``FeatureCollection`` (the bbox CRS defaults to the
              dataset's own):

              ```python
              >>> import numpy as np
              >>> from pyramids.dataset import Dataset
              >>> arr_int = np.arange(100, dtype="int16").reshape(10, 10)
              >>> dataset_bbox = Dataset.create_from_array(
              ...     arr_int, top_left_corner=(0, 0), cell_size=0.05, epsg=4326,
              ... )
              >>> cropped_bbox = dataset_bbox.crop(bbox=(0.1, -0.2, 0.2, -0.1))
              >>> cropped_bbox.shape
              (1, 2, 2)
              >>> cropped_bbox.epsg
              4326

              ```

            - Crop across the antimeridian with a ``west > east`` geographic bbox
              (STAC convention); the two sides are stitched into one contiguous
              strip whose longitudes continue past the 180° seam:

              ```python
              >>> import numpy as np
              >>> from pyramids.dataset import Dataset
              >>> grid = Dataset.create_from_array(
              ...     np.arange(180 * 360, dtype="float32").reshape(180, 360),
              ...     top_left_corner=(-180.0, 90.0), cell_size=1.0, epsg=4326,
              ... )
              >>> strip = grid.crop(bbox=(170.0, -10.0, -170.0, 10.0))
              >>> strip.shape
              (1, 20, 20)
              >>> strip.bbox
              [170.0, -10.0, 190.0, 10.0]

              ```

            - Supplying both ``mask`` and ``bbox`` is rejected:

              ```python
              >>> import numpy as np
              >>> from pyramids.dataset import Dataset
              >>> from pyramids.feature import FeatureCollection
              >>> dataset_excl = Dataset.create_from_array(
              ...     np.zeros((4, 5), dtype="int16"),
              ...     top_left_corner=(0, 0), cell_size=0.05, epsg=4326,
              ... )
              >>> fc = FeatureCollection.from_bbox((0.0, -0.1, 0.1, 0.0), epsg=4326)
              >>> try:
              ...     dataset_excl.crop(mask=fc, bbox=(0.0, -0.1, 0.1, 0.0))
              ... except ValueError as exc:
              ...     print("not both" in str(exc))
              True

              ```

        """
        if bbox is not None:
            if mask is not None:
                raise ValueError("crop accepts either `mask` or `bbox`, not both")
            # `.epsg` is None for a no-EPSG CRS (e.g. geostationary); fall back to
            # the WKT so a bbox in the grid's own CRS is still honoured (#706).
            crs = epsg if epsg is not None else (self._ds.epsg or self._ds.crs)
            west, _, east, _ = bbox
            crs_geo = bool(crs) and sr_from_user_input(crs).IsGeographic()
            ds_epsg = self._ds.epsg
            ds_geo = ds_epsg is not None and sr_from_user_input(ds_epsg).IsGeographic()
            if west > east and crs_geo and ds_geo:
                # bbox is validated 4-long above; tuple(bbox) loses that fixed
                # arity statically (it may start as a list), so restore it.
                bbox_4 = cast(tuple[float, float, float, float], tuple(bbox))
                _require_antimeridian_seam(self._ds, bbox_4)
                return self._crop_antimeridian(bbox_4, crs, touch)
            mask = FeatureCollection.from_bbox(bbox, epsg=crs)
        if mask is None:
            raise TypeError(
                "crop requires a `mask` (GeoDataFrame / FeatureCollection / "
                "Dataset) or a `bbox` (west, south, east, north) tuple"
            )
        if isinstance(mask, GeoDataFrame):
            dst = self._crop_with_polygon_warp(mask, touch=touch)
        elif isinstance(mask, RasterBase):
            dst = self._crop_with_raster(mask)
        else:
            raise TypeError(
                "The second parameter: mask could be either GeoDataFrame or Dataset object"
            )

        return dst

set_crs(crs=None, epsg=None) #

Set the Coordinate Reference System (CRS).

Assign the CRS of the raster in place, from either a WKT string (crs) or an EPSG code (epsg). Exactly one of the two must be supplied.

Parameters:

Name Type Description Default
crs str | None

Optional if epsg is specified. WKT string. i.e.

'GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84", 6378137,298.257223563,AUTHORITY["EPSG","7030"],
AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",
0.0174532925199433,AUTHORITY["EPSG","9122"]],AXIS["Latitude",NORTH],AXIS["Longitude",EAST],
AUTHORITY["EPSG","4326"]]'

None
epsg int | None

Optional if crs is specified. EPSG code specifying the projection.

None

Returns:

Name Type Description
None None

The CRS is set on the underlying dataset in place.

Raises:

Type Description
TypeError

If the dataset is backed by an ASCII driver, which cannot store a CRS.

ValueError

If neither crs nor epsg is provided.

Source code in src/pyramids/dataset/engines/spatial.py
def set_crs(self, crs: str | None = None, epsg: int | None = None) -> None:
    """Set the Coordinate Reference System (CRS).

    Assign the CRS of the raster in place, from either a WKT string (``crs``) or an EPSG
    code (``epsg``). Exactly one of the two must be supplied.

    Args:
        crs (str | None):
            Optional if epsg is specified. WKT string. i.e.
                ```
                'GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84", 6378137,298.257223563,AUTHORITY["EPSG","7030"],
                AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",
                0.0174532925199433,AUTHORITY["EPSG","9122"]],AXIS["Latitude",NORTH],AXIS["Longitude",EAST],
                AUTHORITY["EPSG","4326"]]'
                ```
        epsg (int | None):
            Optional if crs is specified. EPSG code specifying the projection.

    Returns:
        None: The CRS is set on the underlying dataset in place.

    Raises:
        TypeError: If the dataset is backed by an ASCII driver, which cannot store a CRS.
        ValueError: If neither ``crs`` nor ``epsg`` is provided.
    """
    # first change the projection of the gdal dataset object
    # second change the epsg attribute of the Dataset object
    if self._ds.driver_type == "ascii":
        raise TypeError(
            "Setting CRS for ASCII file is not possible, you can save the files to a geotiff and then "
            "reset the crs"
        )
    else:
        if crs is not None:
            self._ds.raster.SetProjection(crs)
            # fallback to 4326 when crs is an empty string
            # (get_epsg_from_prj raises in that case); epsg_from_wkt
            # absorbs the fallback in one place.
            self._ds._epsg = epsg_from_wkt(crs)
        elif epsg is not None:
            sr = sr_from_epsg(epsg)
            self._ds.raster.SetProjection(sr.ExportToWkt())
            self._ds._epsg = epsg
        else:
            raise ValueError("Either crs or epsg must be provided.")

to_crs(to_epsg, method='nearest neighbor', maintain_alignment=False, *, cell_size=None) #

Reproject the dataset to any projection.

(default the WGS84 web mercator projection, without resampling)

Parameters:

Name Type Description Default
to_epsg int | str | CRS

The target CRS. Accepts any form :meth:pyproj.CRS.from_user_input understands: an EPSG reference number (3857), an authority string ("EPSG:3857", "ESRI:54030" for Robinson, "ESRI:54009" for Mollweide), a bare numeric string ("3857"), a WKT or PROJ4 string ("+proj=ortho +lat_0=39 +lon_0=-9 +datum=WGS84"), or a :class:pyproj.CRS. Projections without an EPSG code (orthographic, Robinson, Mollweide, polar-stereographic variants) are warped directly against the spatial reference; cells outside the projection domain are filled with the source's nodata value when one is configured, or with GDAL's dtype-default fill value otherwise.

required
method str

Resampling method, case-insensitive. Default is "nearest neighbor". Allowed values: "nearest" (alias "nearest neighbor"), "bilinear", "cubic", "cubic_spline", "lanczos", "average", "mode", "max", "min", "med", "q1", "q3", "sum", and "rms" (the GDAL warp algorithms; "sum"/"rms" need GDAL >= 3.1/3.3). See https://gisgeography.com/raster-resampling/. Note: the aggregating algorithms ("average", "mode", "med", "q1", "q3", "sum", "rms") are not no-data-aware on this warp path — no-data cells inside a resampling kernel are mixed into the result. Prefer "nearest" on rasters that carry a no-data marker.

'nearest neighbor'
maintain_alignment bool

True to maintain the number of rows and columns of the raster the same after reprojection. Default is False.

False
cell_size (float | tuple, keyword - only)

Optional output pixel size in target-CRS units. A scalar gives square cells; an (x_res, y_res) pair gives non-square cells. None (default) lets GDAL pick the output resolution. Not supported together with maintain_alignment=True.

None

Returns:

Name Type Description
Dataset Dataset

A new reprojected Dataset.

Raises:

Type Description
CRSError

to_epsg cannot be interpreted as a CRS.

TypeError

method is not a string.

ValueError

method is not one of the supported interpolation methods.

Examples:

  • Reproject a small 4326 raster to Web Mercator (EPSG:3857). The source cell size of 0.05° expands to roughly 5566 m near the equator and the EPSG of the result confirms the warp:

>>> import numpy as np
>>> from pyramids.dataset import Dataset
>>> arr = np.random.rand(4, 5, 5)
>>> dataset = Dataset.create_from_array(
...     arr,
...     top_left_corner=(0.0, 0.0),
...     cell_size=0.05,
...     epsg=4326,
... )
>>> dataset.epsg
4326
>>> reprojected = dataset.to_crs(to_epsg=3857)
>>> reprojected.epsg
3857
>>> reprojected.band_count
4
- Reproject to a non-EPSG CRS via an ESRI authority string (Robinson, ESRI:54030):

>>> import numpy as np
>>> from osgeo import osr
>>> from pyramids.dataset import Dataset
>>> arr = np.ones((5, 5), dtype=np.float32)
>>> dataset = Dataset.create_from_array(
...     arr, top_left_corner=(0.0, 10.0), cell_size=1.0, epsg=4326
... )
>>> robinson = dataset.to_crs(to_epsg="ESRI:54030")
>>> "Robinson" in osr.SpatialReference(wkt=robinson.crs).GetName()
True
- Reproject to a bespoke orthographic projection via a proj4 string (no authority code at all):

>>> import numpy as np
>>> from osgeo import osr
>>> from pyramids.dataset import Dataset
>>> arr = np.ones((5, 5), dtype=np.float32)
>>> dataset = Dataset.create_from_array(
...     arr, top_left_corner=(0.0, 10.0), cell_size=1.0, epsg=4326
... )
>>> proj4 = "+proj=ortho +lat_0=39 +lon_0=-9 +datum=WGS84 +units=m +no_defs"
>>> ortho = dataset.to_crs(to_epsg=proj4)
>>> osr.SpatialReference(wkt=ortho.crs).IsProjected()
1
>>> ortho.epsg
4326
- Contrast maintain_alignment=False (default) with maintain_alignment=True. At 60°N a 4326 → 3857 warp distorts cell sizes substantially, so the default gdal.Warp heuristic picks a different output shape from the source; the alignment- preserving path keeps the source row/column count and absorbs the distortion into the per-axis cell size instead:

>>> import numpy as np
>>> from pyramids.dataset import Dataset
>>> arr = np.ones((10, 10), dtype=np.float32)
>>> dataset = Dataset.create_from_array(
...     arr, top_left_corner=(10.0, 60.5), cell_size=0.1, epsg=4326
... )
>>> default_warp = dataset.to_crs(to_epsg=3857)
>>> (default_warp.rows, default_warp.columns)
(13, 6)
>>> aligned = dataset.to_crs(to_epsg=3857, maintain_alignment=True)
>>> (aligned.rows, aligned.columns)
(10, 10)
See Also
  • :meth:Spatial.set_crs: Tag the dataset with a new CRS without warping the pixels (use when the source CRS metadata is wrong, not when you want a reprojection).
  • :meth:Spatial.resample: Change the cell size without changing the CRS.
  • :func:pyramids.base.crs.sr_from_user_input: The helper that resolves every accepted CRS form to an :class:osr.SpatialReference.
Source code in src/pyramids/dataset/engines/spatial.py
def to_crs(
    self,
    to_epsg: int | str | Any,
    method: str = "nearest neighbor",
    maintain_alignment: bool = False,
    *,
    cell_size: float | tuple[float, float] | None = None,
) -> Dataset:
    """Reproject the dataset to any projection.

        (default the WGS84 web mercator projection, without resampling)

    Args:
        to_epsg (int | str | pyproj.CRS):
            The target CRS. Accepts any form :meth:`pyproj.CRS.from_user_input`
            understands: an EPSG reference number (``3857``), an authority string
            (``"EPSG:3857"``, ``"ESRI:54030"`` for Robinson, ``"ESRI:54009"`` for
            Mollweide), a bare numeric string (``"3857"``), a WKT or PROJ4 string
            (``"+proj=ortho +lat_0=39 +lon_0=-9 +datum=WGS84"``), or a
            :class:`pyproj.CRS`. Projections without an EPSG code (orthographic,
            Robinson, Mollweide, polar-stereographic variants) are warped directly
            against the spatial reference; cells outside the projection domain
            are filled with the source's nodata value when one is configured, or
            with GDAL's dtype-default fill value otherwise.
        method (str):
            Resampling method, case-insensitive. Default is "nearest neighbor". Allowed values: "nearest"
            (alias "nearest neighbor"), "bilinear", "cubic", "cubic_spline", "lanczos", "average",
            "mode", "max", "min", "med", "q1", "q3", "sum", and "rms" (the GDAL warp algorithms;
            "sum"/"rms" need GDAL >= 3.1/3.3). See https://gisgeography.com/raster-resampling/.
            Note: the aggregating algorithms ("average", "mode", "med", "q1", "q3", "sum", "rms")
            are not no-data-aware on this warp path — no-data cells inside a resampling kernel are
            mixed into the result. Prefer "nearest" on rasters that carry a no-data marker.
        maintain_alignment (bool):
            True to maintain the number of rows and columns of the raster the same after reprojection.
            Default is False.
        cell_size (float | tuple, keyword-only):
            Optional output pixel size in target-CRS units. A scalar gives square cells; an
            ``(x_res, y_res)`` pair gives non-square cells. ``None`` (default) lets GDAL pick the
            output resolution. Not supported together with ``maintain_alignment=True``.

    Returns:
        Dataset:
            A new reprojected Dataset.

    Raises:
        CRSError:
            ``to_epsg`` cannot be interpreted as a CRS.
        TypeError:
            ``method`` is not a string.
        ValueError:
            ``method`` is not one of the supported interpolation methods.

    Examples:
        - Reproject a small 4326 raster to Web Mercator (EPSG:3857). The
          source cell size of 0.05° expands to roughly 5566 m near the
          equator and the EPSG of the result confirms the warp:

          ```python
          >>> import numpy as np
          >>> from pyramids.dataset import Dataset
          >>> arr = np.random.rand(4, 5, 5)
          >>> dataset = Dataset.create_from_array(
          ...     arr,
          ...     top_left_corner=(0.0, 0.0),
          ...     cell_size=0.05,
          ...     epsg=4326,
          ... )
          >>> dataset.epsg
          4326
          >>> reprojected = dataset.to_crs(to_epsg=3857)
          >>> reprojected.epsg
          3857
          >>> reprojected.band_count
          4

          ```
        - Reproject to a non-EPSG CRS via an ESRI authority string
          (Robinson, ``ESRI:54030``):

          ```python
          >>> import numpy as np
          >>> from osgeo import osr
          >>> from pyramids.dataset import Dataset
          >>> arr = np.ones((5, 5), dtype=np.float32)
          >>> dataset = Dataset.create_from_array(
          ...     arr, top_left_corner=(0.0, 10.0), cell_size=1.0, epsg=4326
          ... )
          >>> robinson = dataset.to_crs(to_epsg="ESRI:54030")
          >>> "Robinson" in osr.SpatialReference(wkt=robinson.crs).GetName()
          True

          ```
        - Reproject to a bespoke orthographic projection via a proj4 string
          (no authority code at all):

          ```python
          >>> import numpy as np
          >>> from osgeo import osr
          >>> from pyramids.dataset import Dataset
          >>> arr = np.ones((5, 5), dtype=np.float32)
          >>> dataset = Dataset.create_from_array(
          ...     arr, top_left_corner=(0.0, 10.0), cell_size=1.0, epsg=4326
          ... )
          >>> proj4 = "+proj=ortho +lat_0=39 +lon_0=-9 +datum=WGS84 +units=m +no_defs"
          >>> ortho = dataset.to_crs(to_epsg=proj4)
          >>> osr.SpatialReference(wkt=ortho.crs).IsProjected()
          1
          >>> ortho.epsg
          4326

          ```
        - Contrast ``maintain_alignment=False`` (default) with
          ``maintain_alignment=True``. At 60°N a 4326 → 3857 warp distorts
          cell sizes substantially, so the default `gdal.Warp` heuristic
          picks a different output shape from the source; the alignment-
          preserving path keeps the source row/column count and absorbs the
          distortion into the per-axis cell size instead:

          ```python
          >>> import numpy as np
          >>> from pyramids.dataset import Dataset
          >>> arr = np.ones((10, 10), dtype=np.float32)
          >>> dataset = Dataset.create_from_array(
          ...     arr, top_left_corner=(10.0, 60.5), cell_size=0.1, epsg=4326
          ... )
          >>> default_warp = dataset.to_crs(to_epsg=3857)
          >>> (default_warp.rows, default_warp.columns)
          (13, 6)
          >>> aligned = dataset.to_crs(to_epsg=3857, maintain_alignment=True)
          >>> (aligned.rows, aligned.columns)
          (10, 10)

          ```

    See Also:
        - :meth:`Spatial.set_crs`: Tag the dataset with a new CRS *without*
          warping the pixels (use when the source CRS metadata is wrong,
          not when you want a reprojection).
        - :meth:`Spatial.resample`: Change the cell size without changing
          the CRS.
        - :func:`pyramids.base.crs.sr_from_user_input`: The helper that
          resolves every accepted CRS form to an
          :class:`osr.SpatialReference`.

    """
    dst_sr = sr_from_user_input(to_epsg)
    resampling_method: int = resolve_resampling(method)

    if maintain_alignment:
        # Reject cell_size before validating it, so the more specific "not supported with
        # maintain_alignment" error wins over the generic shape/positivity check.
        if cell_size is not None:
            raise ValueError(
                "cell_size is not supported with maintain_alignment=True (that path keeps the "
                "source row/column count). Use maintain_alignment=False to set the output cell size."
            )
        dst_obj = self._reproject_with_ReprojectImage(dst_sr, resampling_method)
    else:
        # cell_size may be a scalar (square) or an (x_res, y_res) pair (non-square output).
        x_res, y_res = _resolve_resolution(cell_size)
        dst = gdal.Warp(
            "",
            self._ds.raster,
            dstSRS=_dst_srs_arg(dst_sr),
            format="VRT",
            resampleAlg=resampling_method,
            xRes=x_res,
            yRes=y_res,
        )
        dst_obj = self._ds.__class__(dst)

    return dst_obj

warped_view(crs, method='nearest neighbor', *, cell_size=None, bbox=None) #

Return a lazy, reprojected view of the dataset (no pixels warped yet).

Builds an in-memory warped VRT: nothing is resampled until a window is read, and a windowed read warps only that window. This is the lazy counterpart of :meth:to_crs — prefer it for tile serving, partial reads of reprojected data, and chained virtual pipelines; prefer :meth:to_crs when you will consume the whole reprojected raster.

The returned Dataset keeps a reference to its source, so the source handle cannot be garbage-collected underneath the view.

Note

The view captures its source by handle, not by value: the VRT re-reads the source's geotransform, projection, and pixels lazily on each windowed read. Mutating the source in place after the view is built (for example :meth:set_crs or anything that rewrites the geotransform) leaves the view reading from the now-changed source and is undefined. Treat the source as read-only for the lifetime of the view, or rebuild the view after mutating the source.

Parameters:

Name Type Description Default
crs int | str | Any

Target CRS in any form :meth:pyproj.CRS.from_user_input accepts (EPSG int, "EPSG:3857", WKT, PROJ4, pyproj CRS).

required
method str

Resampling method used when windows are read. Any name accepted by :func:pyramids.base._utils.resolve_resampling (case- and whitespace-insensitive). Default is "nearest neighbor".

'nearest neighbor'
cell_size float | tuple[float, float] | None

Optional output pixel size in target-CRS units. A scalar applies to both axes (square cells); an (x_res, y_res) pair gives non-square cells. None lets GDAL pick the size that preserves the source resolution.

None
bbox tuple[float, float, float, float] | None

Optional (min_x, min_y, max_x, max_y) output extent in the target CRS; None covers the warped source extent.

None

Returns:

Name Type Description
Dataset Dataset

A read-only, VRT-backed reprojected view.

Raises:

Type Description
CRSError

crs cannot be interpreted as a CRS.

TypeError

method is not a string.

ValueError

method is not a supported resampling method.

RuntimeError

GDAL could not build the warped VRT.

Examples:

  • A view reports the warped CRS without materialising pixels, and a windowed read matches the eager reprojection:
    >>> import numpy as np
    >>> from pyramids.dataset import Dataset
    >>> src = Dataset.create_from_array(
    ...     np.random.rand(8, 8).astype("float32"),
    ...     top_left_corner=(0, 8), cell_size=0.01, epsg=4326,
    ... )
    >>> view = src.warped_view(3857)
    >>> view.epsg
    3857
    >>> eager = src.to_crs(3857)
    >>> bool(np.allclose(view.read_array(), eager.read_array()))
    True
    
  • The view holds its source alive (safe to drop the original):
    >>> import numpy as np
    >>> from pyramids.dataset import Dataset
    >>> src = Dataset.create_from_array(
    ...     np.ones((4, 4), dtype="float32"),
    ...     top_left_corner=(0, 4), cell_size=0.01, epsg=4326,
    ... )
    >>> view = src.warped_view(3857)
    >>> del src
    >>> view.read_array().shape == (view.rows, view.columns)
    True
    
See Also

Spatial.to_crs: The eager reprojection (materialises the result).

Source code in src/pyramids/dataset/engines/spatial.py
def warped_view(
    self,
    crs: int | str | Any,
    method: str = "nearest neighbor",
    *,
    cell_size: float | tuple[float, float] | None = None,
    bbox: tuple[float, float, float, float] | None = None,
) -> Dataset:
    """Return a lazy, reprojected **view** of the dataset (no pixels warped yet).

    Builds an in-memory warped VRT: nothing is resampled until a window is
    read, and a windowed read warps **only that window**. This is the lazy
    counterpart of :meth:`to_crs` — prefer it for tile serving, partial
    reads of reprojected data, and chained virtual pipelines; prefer
    :meth:`to_crs` when you will consume the whole reprojected raster.

    The returned Dataset keeps a reference to its source, so the source
    handle cannot be garbage-collected underneath the view.

    Note:
        The view captures its source **by handle, not by value**: the VRT
        re-reads the source's geotransform, projection, and pixels lazily on
        each windowed read. Mutating the source in place after the view is
        built (for example :meth:`set_crs` or anything that rewrites the
        geotransform) leaves the view reading from the now-changed source and
        is undefined. Treat the source as read-only for the lifetime of the
        view, or rebuild the view after mutating the source.

    Args:
        crs: Target CRS in any form :meth:`pyproj.CRS.from_user_input`
            accepts (EPSG int, ``"EPSG:3857"``, WKT, PROJ4, pyproj CRS).
        method: Resampling method used when windows are read. Any name
            accepted by :func:`pyramids.base._utils.resolve_resampling`
            (case- and whitespace-insensitive). Default is
            ``"nearest neighbor"``.
        cell_size: Optional output pixel size in target-CRS units. A scalar
            applies to both axes (square cells); an ``(x_res, y_res)`` pair
            gives non-square cells. ``None`` lets GDAL pick the size that
            preserves the source resolution.
        bbox: Optional ``(min_x, min_y, max_x, max_y)`` output extent in
            the **target** CRS; ``None`` covers the warped source extent.

    Returns:
        Dataset: A read-only, VRT-backed reprojected view.

    Raises:
        CRSError: ``crs`` cannot be interpreted as a CRS.
        TypeError: ``method`` is not a string.
        ValueError: ``method`` is not a supported resampling method.
        RuntimeError: GDAL could not build the warped VRT.

    Examples:
        - A view reports the warped CRS without materialising pixels, and
          a windowed read matches the eager reprojection:
            ```python
            >>> import numpy as np
            >>> from pyramids.dataset import Dataset
            >>> src = Dataset.create_from_array(
            ...     np.random.rand(8, 8).astype("float32"),
            ...     top_left_corner=(0, 8), cell_size=0.01, epsg=4326,
            ... )
            >>> view = src.warped_view(3857)
            >>> view.epsg
            3857
            >>> eager = src.to_crs(3857)
            >>> bool(np.allclose(view.read_array(), eager.read_array()))
            True

            ```
        - The view holds its source alive (safe to drop the original):
            ```python
            >>> import numpy as np
            >>> from pyramids.dataset import Dataset
            >>> src = Dataset.create_from_array(
            ...     np.ones((4, 4), dtype="float32"),
            ...     top_left_corner=(0, 4), cell_size=0.01, epsg=4326,
            ... )
            >>> view = src.warped_view(3857)
            >>> del src
            >>> view.read_array().shape == (view.rows, view.columns)
            True

            ```

    See Also:
        Spatial.to_crs: The eager reprojection (materialises the result).
    """
    dst_sr = sr_from_user_input(crs)
    resample_alg: int = resolve_resampling(method)
    dst_srs_arg = _dst_srs_arg(dst_sr)
    x_res, y_res = _resolve_resolution(cell_size)
    if bbox is not None:
        if len(bbox) != 4:
            raise ValueError(
                f"bbox must be (min_x, min_y, max_x, max_y), got {bbox!r}."
            )
        min_x, min_y, max_x, max_y = bbox
        if min_x >= max_x or min_y >= max_y:
            raise ValueError(
                f"bbox must have min_x < max_x and min_y < max_y, got {bbox!r}."
            )
    options = gdal.WarpOptions(
        format="VRT",
        dstSRS=dst_srs_arg,
        resampleAlg=resample_alg,
        xRes=x_res,
        yRes=y_res,
        outputBounds=bbox,
        multithread=True,
    )
    vrt = gdal.Warp("", self._ds.raster, options=options)
    if vrt is None:
        raise RuntimeError(
            f"GDAL could not build a warped VRT onto {dst_srs_arg!r}."
        )
    view = self._ds.__class__(vrt, access="read_only")
    # The VRT references the source GDAL handle; pin the source Dataset on
    # the view so Python cannot garbage-collect it underneath the VRT.
    view._warp_source = self._ds
    return view

wrap_longitude() #

Wrap a global raster's longitude from the 0/360 frame to the -180/180 frame.

The wrap is a pure column roll (no resampling): the columns whose longitude is greater than 180 (the western hemisphere in the -180/180 frame) move to the front, the remaining columns follow, and the geotransform's top-left x is moved to -180. The raster must span the whole globe (its last longitude must exceed 180).

Two execution paths, selected automatically by the source:

  • File-backed source (a real on-disk raster): the roll is built as a lazy two-source VRT, so no pixel data is read until the result is used (read, plotted, cropped, or written).
  • In-memory source (e.g. a NetCDF variable view from get_variable, which has no filename for a VRT to reference): an eager fallback copies the dataset once via MEM.CreateCopy (preserving all metadata) and rolls the columns in place, so the source is read only once.

Returns:

Name Type Description
Dataset Dataset

A new dataset of the same class on the -180/180 grid. Same shape, dtype, band count, no-data value, and CRS as the source; only the columns and the top-left x change. File-backed inputs yield a VRT-backed (lazy) dataset; in-memory inputs an MEM-backed one.

Raises:

Type Description
ValueError

If the grid is not a global 0-360 grid — it must span ~360° of longitude (within one cell) and lie in the 0-360 frame (its last longitude exceeds 180). Regional windows and grids already in the -180/180 frame are rejected.

Examples:

  • Shift an in-memory 0-360 global raster and inspect the new extent:
    >>> import numpy as np
    >>> from pyramids.dataset import Dataset
    >>> arr = np.arange(360, dtype=np.float32).reshape(1, 360)
    >>> ds = Dataset.create_from_array(
    ...     arr, top_left_corner=(0.0, 0.5), cell_size=1.0, epsg=4326,
    ...     no_data_value=-9999.0,
    ... )
    >>> shifted = ds.wrap_longitude()
    >>> shifted.top_left_corner[0]
    -180.0
    >>> bool(shifted.lon.max() < 180)
    True
    >>> shifted.read_array(band=0).shape
    (1, 360)
    
  • A raster that does not span the globe raises ValueError:
    >>> import numpy as np
    >>> from pyramids.dataset import Dataset
    >>> ds = Dataset.create_from_array(
    ...     np.ones((3, 3), dtype=np.float32), top_left_corner=(0.0, 0.0),
    ...     cell_size=0.05, epsg=4326, no_data_value=-9999.0,
    ... )
    >>> ds.wrap_longitude()  # doctest: +ELLIPSIS
    Traceback (most recent call last):
        ...
    ValueError: wrap_longitude requires a global grid ...
    
See Also

to_crs: Reproject to a different CRS (a full warp, not a column roll).

Source code in src/pyramids/dataset/engines/spatial.py
def wrap_longitude(self) -> Dataset:
    """Wrap a global raster's longitude from the 0/360 frame to the -180/180 frame.

    The wrap is a pure column roll (no resampling): the columns whose longitude is greater than
    180 (the western hemisphere in the -180/180 frame) move to the front, the remaining columns
    follow, and the geotransform's top-left x is moved to -180. The raster must span the whole
    globe (its last longitude must exceed 180).

    Two execution paths, selected automatically by the source:

    - **File-backed source** (a real on-disk raster): the roll is built as a lazy two-source VRT,
      so no pixel data is read until the result is used (read, plotted, cropped, or written).
    - **In-memory source** (e.g. a NetCDF variable view from ``get_variable``, which has no
      filename for a VRT to reference): an eager fallback copies the dataset once via
      ``MEM.CreateCopy`` (preserving all metadata) and rolls the columns in place, so the source
      is read only once.

    Returns:
        Dataset:
            A new dataset of the same class on the -180/180 grid. Same shape, dtype, band count,
            no-data value, and CRS as the source; only the columns and the top-left x change.
            File-backed inputs yield a VRT-backed (lazy) dataset; in-memory inputs an MEM-backed
            one.

    Raises:
        ValueError: If the grid is not a global 0-360 grid — it must span ~360° of longitude
            (within one cell) and lie in the 0-360 frame (its last longitude exceeds 180).
            Regional windows and grids already in the -180/180 frame are rejected.

    Examples:
        - Shift an in-memory 0-360 global raster and inspect the new extent:
            ```python
            >>> import numpy as np
            >>> from pyramids.dataset import Dataset
            >>> arr = np.arange(360, dtype=np.float32).reshape(1, 360)
            >>> ds = Dataset.create_from_array(
            ...     arr, top_left_corner=(0.0, 0.5), cell_size=1.0, epsg=4326,
            ...     no_data_value=-9999.0,
            ... )
            >>> shifted = ds.wrap_longitude()
            >>> shifted.top_left_corner[0]
            -180.0
            >>> bool(shifted.lon.max() < 180)
            True
            >>> shifted.read_array(band=0).shape
            (1, 360)

            ```
        - A raster that does not span the globe raises ``ValueError``:
            ```python
            >>> import numpy as np
            >>> from pyramids.dataset import Dataset
            >>> ds = Dataset.create_from_array(
            ...     np.ones((3, 3), dtype=np.float32), top_left_corner=(0.0, 0.0),
            ...     cell_size=0.05, epsg=4326, no_data_value=-9999.0,
            ... )
            >>> ds.wrap_longitude()  # doctest: +ELLIPSIS
            Traceback (most recent call last):
                ...
            ValueError: wrap_longitude requires a global grid ...

            ```

    See Also:
        to_crs: Reproject to a different CRS (a full warp, not a column roll).
    """
    lon = self._ds.lon
    # Require a grid that actually spans the globe in the 0-360 frame: the longitudinal extent
    # (n_columns * cell) must be ~360° (within one cell), and the last longitude must exceed 180.
    # This rejects regional windows (e.g. 200-330) and grids already in the -180/180 frame, which
    # the bare `lon[-1] > 180` check would have silently mis-wrapped.
    cell = abs(float(lon[1] - lon[0])) if len(lon) > 1 else 0.0
    spans_globe = cell > 0 and abs(len(lon) * cell - 360.0) <= cell
    if not (spans_globe and lon[-1] > 180):
        raise ValueError(
            "wrap_longitude requires a global grid spanning ~360° in the 0-360 longitude "
            f"frame; got {len(lon)} columns covering "
            f"{float(lon[0]):g}..{float(lon[-1]):g}°."
        )

    src = self._ds.raster
    n_columns = src.RasterXSize
    first_to_translated = int(np.nonzero(lon > 180)[0][0])
    gt = list(src.GetGeoTransform())
    gt[0] = self._ds.top_left_corner[0] - 180

    # Route to the lazy VRT only when the source is referenceable by a real on-disk path
    # (a plain file). In-memory views — e.g. a NetCDF variable via AsClassicDataset — report the
    # backing file in GetFileList() but expose no usable description for a VRT SourceFilename, so
    # they take the eager path.
    description = src.GetDescription()
    # Path.exists() returns False (it never raises) for a non-path description — an empty
    # in-memory view or a `NETCDF:"file":var` subdataset string — so those take the eager path.
    is_file_backed = bool(description) and Path(description).exists()

    if is_file_backed:
        # A — lazy: file-backed source, roll columns via a two-source VRT (no data read).
        dst = self._wrap_longitude_vrt(src, first_to_translated, gt)
    else:
        # B — eager: in-memory source has no filename for a VRT, so materialise once via
        # CreateCopy (which preserves all metadata) and roll the columns in place, reading the
        # cheap in-memory copy instead of re-reading the source a second time.
        dst = gdal.GetDriverByName("MEM").CreateCopy("", src, 0)
        order = list(range(first_to_translated, n_columns)) + list(
            range(0, first_to_translated)
        )
        for band in range(src.RasterCount):
            gdal_band = dst.GetRasterBand(band + 1)
            gdal_band.WriteArray(gdal_band.ReadAsArray()[:, order])
        dst.SetGeoTransform(gt)
    return self._ds.__class__(dst)

resample(cell_size, method='nearest neighbor') #

Resample a raster to a new cell size.

Resample the raster to cell_size using the requested interpolation method, keeping the existing CRS and extent. Returns a new in-memory Dataset; the source is left unchanged.

Parameters:

Name Type Description Default
cell_size int | float | tuple

New cell size to resample the raster to, in the units of the raster CRS. A scalar applies to both axes (square cells); an (x_res, y_res) pair gives non-square cells (e.g. (2.0, 1.0) for 2° longitude by 1° latitude).

required
method str

Resampling method, case-insensitive. Default is "nearest neighbor". Allowed values: "nearest" (alias "nearest neighbor"), "bilinear", "cubic", "cubic_spline", "lanczos", "average", "mode", "max", "min", "med", "q1", "q3", "sum", and "rms" (the GDAL warp algorithms; "sum"/"rms" need GDAL >= 3.1/3.3). Note: the aggregating algorithms ("average", "mode", "med", "q1", "q3", "sum", "rms") are not no-data-aware on this warp path — no-data cells inside a resampling kernel are mixed into the result. Prefer "nearest" on rasters that carry a no-data marker.

'nearest neighbor'

Returns:

Name Type Description
Dataset Dataset

A new resampled Dataset.

Raises:

Type Description
TypeError

If method is not a string.

ValueError

If method is not one of the supported interpolation methods.

Examples:

  • Create a 4-band 10×10 dataset at lon/lat (0, 0) with a 0.05° cell size, then resample to a coarser 0.1° cell. Halving the resolution halves the row/column count in each dimension (10 → 5), and the source CRS and band count carry through unchanged:

>>> import numpy as np
>>> from pyramids.dataset import Dataset
>>> arr = np.random.rand(4, 10, 10)
>>> dataset = Dataset.create_from_array(
...     arr, top_left_corner=(0, 0), cell_size=0.05, epsg=4326
... )
>>> (dataset.rows, dataset.columns, dataset.band_count)
(10, 10, 4)
>>> resampled = dataset.resample(cell_size=0.1)
>>> (resampled.rows, resampled.columns, resampled.band_count, resampled.epsg)
(5, 5, 4, 4326)
>>> resampled.geotransform[1]
0.1
resample-source resample-new

Source code in src/pyramids/dataset/engines/spatial.py
def resample(
    self,
    cell_size: int | float | tuple[float, float],
    method: str = "nearest neighbor",
) -> Dataset:
    """Resample a raster to a new cell size.

    Resample the raster to ``cell_size`` using the requested interpolation method, keeping the
    existing CRS and extent. Returns a new in-memory Dataset; the source is left unchanged.

    Args:
        cell_size (int | float | tuple):
            New cell size to resample the raster to, in the units of the raster CRS. A scalar
            applies to both axes (square cells); an ``(x_res, y_res)`` pair gives non-square
            cells (e.g. ``(2.0, 1.0)`` for 2° longitude by 1° latitude).
        method (str):
            Resampling method, case-insensitive. Default is "nearest neighbor". Allowed values: "nearest"
            (alias "nearest neighbor"), "bilinear", "cubic", "cubic_spline", "lanczos", "average",
            "mode", "max", "min", "med", "q1", "q3", "sum", and "rms" (the GDAL warp algorithms;
            "sum"/"rms" need GDAL >= 3.1/3.3). Note: the aggregating algorithms ("average", "mode",
            "med", "q1", "q3", "sum", "rms") are not no-data-aware on this warp path — no-data cells
            inside a resampling kernel are mixed into the result. Prefer "nearest" on rasters that
            carry a no-data marker.

    Returns:
        Dataset:
            A new resampled Dataset.

    Raises:
        TypeError: If ``method`` is not a string.
        ValueError: If ``method`` is not one of the supported interpolation methods.

    Examples:
        - Create a 4-band 10×10 dataset at lon/lat (0, 0) with a 0.05° cell size, then resample to a
          coarser 0.1° cell. Halving the resolution halves the row/column count in each dimension
          (10 → 5), and the source CRS and band count carry through unchanged:

          ```python
          >>> import numpy as np
          >>> from pyramids.dataset import Dataset
          >>> arr = np.random.rand(4, 10, 10)
          >>> dataset = Dataset.create_from_array(
          ...     arr, top_left_corner=(0, 0), cell_size=0.05, epsg=4326
          ... )
          >>> (dataset.rows, dataset.columns, dataset.band_count)
          (10, 10, 4)
          >>> resampled = dataset.resample(cell_size=0.1)
          >>> (resampled.rows, resampled.columns, resampled.band_count, resampled.epsg)
          (5, 5, 4, 4326)
          >>> resampled.geotransform[1]
          0.1

          ```
          ![resample-source](./../../_images/dataset/resample-source.png)
          ![resample-new](./../../_images/dataset/resample-new.png)
    """
    resampling_method: int = resolve_resampling(method)
    # cell_size may be a scalar (square) or an (x_res, y_res) pair (non-square output).
    x_res, y_res = _resolve_resolution(cell_size)

    sr_src = sr_from_wkt(self._ds.crs)
    # NetCDF variable views expose their CRS as an EPSG code (derived from CF coordinates) rather
    # than WKT on the raster, so `crs` can be empty even when `epsg` is known. Fall back to epsg to
    # avoid building a corrupt SpatialReference (which fails on ExportToWkt) (#588).
    if not self._ds.crs and self._ds.epsg:
        sr_src = sr_from_epsg(self._ds.epsg)

    ulx = self._ds.geotransform[0]
    uly = self._ds.geotransform[3]
    # transform the right lower corner point
    lrx = self._ds.geotransform[0] + self._ds.geotransform[1] * self._ds.columns
    lry = self._ds.geotransform[3] + self._ds.geotransform[5] * self._ds.rows

    # new geotransform — separate X/Y cell sizes so non-square output is supported
    new_geo = (
        self._ds.geotransform[0],
        x_res,
        self._ds.geotransform[2],
        self._ds.geotransform[3],
        self._ds.geotransform[4],
        -1 * y_res,
    )
    # create a new raster
    cols = int(np.round(abs(lrx - ulx) / x_res))
    rows = int(np.round(abs(uly - lry) / y_res))
    dtype = self._ds.gdal_dtype[0]
    bands = self._ds.band_count

    dst_obj = self._ds.__class__._build_dataset(
        cols,
        rows,
        bands,
        dtype,
        new_geo,
        sr_src.ExportToWkt(),
        self._ds.no_data_value,
    )
    gdal.ReprojectImage(
        self._ds.raster,
        dst_obj.raster,
        sr_src.ExportToWkt(),
        sr_src.ExportToWkt(),
        resampling_method,
    )

    return dst_obj

fill_gaps(mask, src_array) #

Fill gaps in src_array using nearest neighbors where mask indicates valid cells.

Parameters:

Name Type Description Default
mask Dataset | ndarray

Mask dataset or array used to determine valid cells.

required
src_array ndarray

Source array whose gaps will be filled.

required

Returns:

Type Description
NDArray

np.ndarray: The source array with gaps filled where applicable.

Source code in src/pyramids/dataset/engines/spatial.py
def fill_gaps(self, mask, src_array: np.ndarray) -> np.typing.NDArray:
    """Fill gaps in src_array using nearest neighbors where mask indicates valid cells.

    Args:
        mask (Dataset | np.ndarray):
            Mask dataset or array used to determine valid cells.
        src_array (np.ndarray):
            Source array whose gaps will be filled.

    Returns:
        np.ndarray: The source array with gaps filled where applicable.
    """
    # align function only equate the no of rows and columns only
    # match no_data_value inserts no_data_value in src raster to all places like mask
    # still places that has no_data_value in the src raster, but it is not no_data_value in the mask
    # and now has to be filled with values
    # compare no of element that is not no_data_value in both rasters to make sure they are matched
    # if both inputs are rasters
    # read_array() is called with no chunks=, so it always returns a plain
    # ndarray here (the dask.Array arm of ArrayLike is unreachable).
    mask_array = cast(np.typing.NDArray, mask.read_array())
    mask_noval = mask.no_data_value[0]

    if isinstance(mask, RasterBase) and isinstance(self._ds, RasterBase):
        src_no_data = is_no_data(src_array, self._ds.no_data_value[0])
        mask_no_data = is_no_data(mask_array, mask_noval)
        elem_src = src_array.size - np.count_nonzero(src_array[src_no_data])
        elem_mask = mask_array.size - np.count_nonzero(mask_array[mask_no_data])

        # Cells that are out-of-domain in src but in-domain in mask
        # need to be interpolated from neighbors.
        if elem_mask > elem_src:
            gap_rows, gap_cols = np.where(src_no_data & ~mask_no_data)
            src_array = Vectorize._nearest_neighbour(
                src_array,
                self._ds.no_data_value[0],
                gap_rows.tolist(),
                gap_cols.tolist(),
            )
    return src_array

align(alignment_src) #

Align the current dataset (rows and columns) to match a given dataset.

Copies spatial properties from alignment_src to the current raster
  • The coordinate system
  • The number of rows and columns
  • Cell size

Then resamples values from the current dataset using the nearest neighbor interpolation.

Parameters:

Name Type Description Default
alignment_src Dataset

Spatial information source raster to get the spatial information (coordinate system, number of rows and columns). The data values of the current dataset are resampled to this alignment.

required

Returns:

Name Type Description
Dataset Dataset

A new aligned Dataset.

Examples:

  • The source dataset has a top_left_corner at (0, 0) with a 5*5 alignment, and a 0.05 degree cell size.
>>> import numpy as np
>>> from pyramids.dataset import Dataset
>>> arr = np.random.rand(5, 5)
>>> dataset = Dataset.create_from_array(
...     arr, top_left_corner=(0, 0), cell_size=0.05, epsg=4326
... )
>>> (dataset.rows, dataset.columns, dataset.epsg, dataset.band_count)
(5, 5, 4326, 1)
  • The dataset to be aligned has a top_left_corner at (-0.1, 0.1) (i.e., it has two more rows on top of the dataset, and two columns on the left of the dataset).
>>> import numpy as np
>>> from pyramids.dataset import Dataset
>>> arr_target = np.random.rand(10, 10)
>>> dataset_target = Dataset.create_from_array(
...     arr_target, top_left_corner=(-0.1, 0.1), cell_size=0.07, epsg=4326
... )
>>> (dataset_target.rows, dataset_target.columns, dataset_target.geotransform[1])
(10, 10, 0.07)

align-source-target

  • Now call the align method and use the source dataset as the alignment template. The aligned dataset adopts the source's cell size, dimensions, and CRS:
>>> import numpy as np
>>> from pyramids.dataset import Dataset
>>> source = Dataset.create_from_array(
...     np.random.rand(5, 5),
...     top_left_corner=(0, 0), cell_size=0.05, epsg=4326,
... )
>>> target = Dataset.create_from_array(
...     np.random.rand(10, 10),
...     top_left_corner=(-0.1, 0.1), cell_size=0.07, epsg=4326,
... )
>>> aligned = target.align(source)
>>> (aligned.rows, aligned.columns, aligned.geotransform[1], aligned.epsg)
(5, 5, 0.05, 4326)

align-result

Source code in src/pyramids/dataset/engines/spatial.py
def align(
    self,
    alignment_src: Dataset,
) -> Dataset:
    """Align the current dataset (rows and columns) to match a given dataset.

    Copies spatial properties from alignment_src to the current raster:
        - The coordinate system
        - The number of rows and columns
        - Cell size
    Then resamples values from the current dataset using the nearest neighbor interpolation.

    Args:
        alignment_src (Dataset):
            Spatial information source raster to get the spatial information (coordinate system, number of rows and
            columns). The data values of the current dataset are resampled to this alignment.

    Returns:
        Dataset: A new aligned Dataset.

    Examples:
        - The source dataset has a `top_left_corner` at (0, 0) with a 5*5 alignment, and a 0.05 degree cell size.

          ```python
          >>> import numpy as np
          >>> from pyramids.dataset import Dataset
          >>> arr = np.random.rand(5, 5)
          >>> dataset = Dataset.create_from_array(
          ...     arr, top_left_corner=(0, 0), cell_size=0.05, epsg=4326
          ... )
          >>> (dataset.rows, dataset.columns, dataset.epsg, dataset.band_count)
          (5, 5, 4326, 1)

          ```

        - The dataset to be aligned has a top_left_corner at (-0.1, 0.1) (i.e., it has two more rows on top of the
          dataset, and two columns on the left of the dataset).

          ```python
          >>> import numpy as np
          >>> from pyramids.dataset import Dataset
          >>> arr_target = np.random.rand(10, 10)
          >>> dataset_target = Dataset.create_from_array(
          ...     arr_target, top_left_corner=(-0.1, 0.1), cell_size=0.07, epsg=4326
          ... )
          >>> (dataset_target.rows, dataset_target.columns, dataset_target.geotransform[1])
          (10, 10, 0.07)

          ```

        ![align-source-target](./../../_images/dataset/align-source-target.png)

        - Now call the `align` method and use the source dataset as the alignment template. The aligned
          dataset adopts the source's cell size, dimensions, and CRS:

          ```python
          >>> import numpy as np
          >>> from pyramids.dataset import Dataset
          >>> source = Dataset.create_from_array(
          ...     np.random.rand(5, 5),
          ...     top_left_corner=(0, 0), cell_size=0.05, epsg=4326,
          ... )
          >>> target = Dataset.create_from_array(
          ...     np.random.rand(10, 10),
          ...     top_left_corner=(-0.1, 0.1), cell_size=0.07, epsg=4326,
          ... )
          >>> aligned = target.align(source)
          >>> (aligned.rows, aligned.columns, aligned.geotransform[1], aligned.epsg)
          (5, 5, 0.05, 4326)

          ```

        ![align-result](./../../_images/dataset/align-result.png)
    """
    if isinstance(alignment_src, RasterBase):
        src = alignment_src
    else:
        raise TypeError(
            "First parameter should be a Dataset read using Dataset.openRaster or a path to the raster, "
            f"given {type(alignment_src)}"
        )

    # reproject the raster to match the projection of alignment_src
    reprojected_raster_b: Dataset = self._ds
    if self._ds.epsg != src.epsg:
        reprojected_raster_b = self.to_crs(src.epsg or src.crs)  # type: ignore[assignment]
    dst_obj = self._ds.__class__._build_dataset(
        src.columns,
        src.rows,
        self._ds.band_count,
        src.gdal_dtype[0],
        src.geotransform,
        src.crs,
        self._ds.no_data_value,
    )
    method = gdal.GRA_NearestNeighbour
    # resample the reprojected_RasterB
    gdal.ReprojectImage(
        reprojected_raster_b.raster,
        dst_obj.raster,
        src.crs,
        src.crs,
        method,
    )

    return dst_obj

crop(mask=None, touch=True, *, bbox=None, epsg=None) #

Crop dataset using a polygon mask, a raster mask, or a bbox tuple.

Crop/Clip the Dataset object using a polygon/raster — or, as a
convenience, a plain ``(west, south, east, north)`` bbox tuple
in some EPSG (no need to wrap it in a :class:`FeatureCollection`
by hand).

Parameters:

Name Type Description Default
mask GeoDataFrame | Dataset | None

GeoDataFrame with a polygon geometry, or a Dataset object. Mutually exclusive with bbox; exactly one of the two must be supplied.

None
touch bool

Include the cells that touch the polygon, not only those that lie entirely inside the polygon mask. Default is True.

True
bbox (tuple[float, float, float, float] | None, keyword - only)

(west, south, east, north) quadruple in the CRS named by epsg. Internally wrapped in a one-row :class:FeatureCollection and routed through the same polygon path. Mutually exclusive with mask. A geographic bbox with west > east (the STAC convention for an antimeridian-crossing area, e.g. (170, -10, -170, 10)) is split at the 180°/360° seam, each half cropped, and the halves stitched into one contiguous strip whose longitudes continue past the seam (170..190). Works for -180..180 and 0..360 grids. Behaviour change: a geographic west > east bbox is read as the STAC antimeridian convention (rather than raising bbox must satisfy west < east) — but only when the dataset's longitude extent actually reaches the 180 seam. On a regional grid that does not reach the seam (e.g. Europe, lon -10..40) a west > east bbox cannot be a genuine crossing, so it raises a clear error instead of silently returning a truncated crop — catching a transposed / typo'd bbox. A projected west > east bbox is still validated and raises, since the antimeridian has no meaning off a geographic CRS.

None
epsg (Any, keyword - only)

CRS for bbox — anything geopandas accepts for crs= (EPSG int, "EPSG:4326", WKT, pyproj.CRS). Defaults to the dataset's own CRS, so a bbox in the dataset's native CRS needs no extra argument; pass it explicitly for a bbox in a different CRS (the standard reprojection path takes care of it).

None

Returns:

Name Type Description
Dataset Dataset

A new cropped Dataset.

Hint
  • If the mask is a dataset with multi-bands, the crop method will use the first band as the mask.

Examples:

  • Crop the raster using a polygon mask.

  • The polygon covers 4 cells in the 3rd and 4th rows and 3rd and 4th column arr[2:4, 2:4], so the result dataset will have the same number of bands 4, 2 rows and 2 columns.

  • First, create the dataset to have 4 bands, 10 rows and 10 columns; the dataset has a cell size of 0.05 degree, the top left corner of the dataset is (0, 0).

>>> import numpy as np
>>> import geopandas as gpd
>>> from shapely.geometry import Polygon
>>> from pyramids.dataset import Dataset
>>> arr = np.random.rand(4, 10, 10)
>>> cell_size = 0.05
>>> top_left_corner = (0, 0)
>>> dataset = Dataset.create_from_array(
...         arr, top_left_corner=top_left_corner, cell_size=cell_size, epsg=4326
... )
- Second, create the polygon using shapely polygon, and use the xmin, ymin, xmax, ymax = [0.1, -0.2, 0.2 -0.1] to cover the 4 cells.

```python
>>> mask = gpd.GeoDataFrame(geometry=[Polygon([(0.1, -0.1), (0.1, -0.2), (0.2, -0.2), (0.2, -0.1)])], crs=4326)

```
  • Pass the geodataframe to the crop method using the mask parameter.

>>> cropped_dataset = dataset.crop(mask=mask)
- Check the cropped dataset:

>>> print(cropped_dataset.shape)
(4, 2, 2)
>>> print(cropped_dataset.geotransform)
(0.1, 0.05, 0.0, -0.1, 0.0, -0.05)
>>> print(cropped_dataset.read_array(band=0))# doctest: +SKIP
[[0.00921161 0.90841171]
 [0.355636   0.18650262]]
>>> print(arr[0, 2:4, 2:4])# doctest: +SKIP
[[0.00921161 0.90841171]
 [0.355636   0.18650262]]
- Crop a raster using another raster mask:

  • Create a mask dataset with the same extent of the polygon we used in the previous example.

>>> geotransform = (0.1, 0.05, 0.0, -0.1, 0.0, -0.05)
>>> mask_dataset = Dataset.create_from_array(np.random.rand(2, 2), geo=geotransform, epsg=4326)
- Then use the mask dataset to crop the dataset.

>>> cropped_dataset_2 = dataset.crop(mask=mask_dataset)
>>> print(cropped_dataset_2.shape)
(4, 2, 2)
- Check the cropped dataset:

>>> print(cropped_dataset_2.geotransform)
(0.1, 0.05, 0.0, -0.1, 0.0, -0.05)
>>> print(cropped_dataset_2.read_array(band=0))# doctest: +SKIP
[[0.00921161 0.90841171]
 [0.355636   0.18650262]]
>>> print(arr[0, 2:4, 2:4])# doctest: +SKIP
 [[0.00921161 0.90841171]
 [0.355636   0.18650262]]
  • Crop using a (west, south, east, north) bbox tuple instead of a hand-built FeatureCollection (the bbox CRS defaults to the dataset's own):
>>> import numpy as np
>>> from pyramids.dataset import Dataset
>>> arr_int = np.arange(100, dtype="int16").reshape(10, 10)
>>> dataset_bbox = Dataset.create_from_array(
...     arr_int, top_left_corner=(0, 0), cell_size=0.05, epsg=4326,
... )
>>> cropped_bbox = dataset_bbox.crop(bbox=(0.1, -0.2, 0.2, -0.1))
>>> cropped_bbox.shape
(1, 2, 2)
>>> cropped_bbox.epsg
4326
  • Crop across the antimeridian with a west > east geographic bbox (STAC convention); the two sides are stitched into one contiguous strip whose longitudes continue past the 180° seam:
>>> import numpy as np
>>> from pyramids.dataset import Dataset
>>> grid = Dataset.create_from_array(
...     np.arange(180 * 360, dtype="float32").reshape(180, 360),
...     top_left_corner=(-180.0, 90.0), cell_size=1.0, epsg=4326,
... )
>>> strip = grid.crop(bbox=(170.0, -10.0, -170.0, 10.0))
>>> strip.shape
(1, 20, 20)
>>> strip.bbox
[170.0, -10.0, 190.0, 10.0]
  • Supplying both mask and bbox is rejected:
>>> import numpy as np
>>> from pyramids.dataset import Dataset
>>> from pyramids.feature import FeatureCollection
>>> dataset_excl = Dataset.create_from_array(
...     np.zeros((4, 5), dtype="int16"),
...     top_left_corner=(0, 0), cell_size=0.05, epsg=4326,
... )
>>> fc = FeatureCollection.from_bbox((0.0, -0.1, 0.1, 0.0), epsg=4326)
>>> try:
...     dataset_excl.crop(mask=fc, bbox=(0.0, -0.1, 0.1, 0.0))
... except ValueError as exc:
...     print("not both" in str(exc))
True
Source code in src/pyramids/dataset/engines/spatial.py
def crop(
    self,
    mask: GeoDataFrame | FeatureCollection | None = None,
    touch: bool = True,
    *,
    bbox: tuple[float, float, float, float] | list[float] | None = None,
    epsg: Any = None,
) -> Dataset:
    """Crop dataset using a polygon mask, a raster mask, or a bbox tuple.

        Crop/Clip the Dataset object using a polygon/raster — or, as a
        convenience, a plain ``(west, south, east, north)`` bbox tuple
        in some EPSG (no need to wrap it in a :class:`FeatureCollection`
        by hand).

    Args:
        mask (GeoDataFrame | Dataset | None):
            GeoDataFrame with a polygon geometry, or a Dataset object.
            Mutually exclusive with ``bbox``; exactly one of the two must
            be supplied.
        touch (bool):
            Include the cells that touch the polygon, not only those that lie entirely inside the polygon mask.
            Default is True.
        bbox (tuple[float, float, float, float] | None, keyword-only):
            ``(west, south, east, north)`` quadruple in the CRS named by
            ``epsg``. Internally wrapped in a one-row
            :class:`FeatureCollection` and routed through the same polygon
            path. Mutually exclusive with ``mask``. A *geographic* bbox with
            ``west > east`` (the STAC convention for an antimeridian-crossing
            area, e.g. ``(170, -10, -170, 10)``) is split at the 180°/360°
            seam, each half cropped, and the halves stitched into one
            contiguous strip whose longitudes continue past the seam
            (``170..190``). Works for ``-180..180`` and ``0..360`` grids.
            Behaviour change: a *geographic* ``west > east`` bbox is read as
            the STAC antimeridian convention (rather than raising
            ``bbox must satisfy west < east``) — but only when the dataset's
            longitude extent actually reaches the 180 seam. On a *regional*
            grid that does not reach the seam (e.g. Europe, lon ``-10..40``) a
            ``west > east`` bbox cannot be a genuine crossing, so it raises a
            clear error instead of silently returning a truncated crop —
            catching a transposed / typo'd bbox. A *projected* ``west > east``
            bbox is still validated and raises, since the antimeridian has no
            meaning off a geographic CRS.
        epsg (Any, keyword-only):
            CRS for ``bbox`` — anything ``geopandas`` accepts for ``crs=``
            (EPSG int, ``"EPSG:4326"``, WKT, ``pyproj.CRS``). Defaults to
            the dataset's own CRS, so a bbox in the dataset's native CRS
            needs no extra argument; pass it explicitly for a bbox in a
            different CRS (the standard reprojection path takes care of it).

    Returns:
        Dataset:
            A new cropped Dataset.

    Hint:
        - If the mask is a dataset with multi-bands, the `crop` method will use the first band as the mask.

    Examples:
        - Crop the raster using a polygon mask.

          - The polygon covers 4 cells in the 3rd and 4th rows and 3rd and 4th column `arr[2:4, 2:4]`, so the result
            dataset will have the same number of bands `4`, 2 rows and 2 columns.
          - First, create the dataset to have 4 bands, 10 rows and 10 columns; the dataset has a cell size of 0.05
            degree, the top left corner of the dataset is (0, 0).

          ```python
          >>> import numpy as np
          >>> import geopandas as gpd
          >>> from shapely.geometry import Polygon
          >>> from pyramids.dataset import Dataset
          >>> arr = np.random.rand(4, 10, 10)
          >>> cell_size = 0.05
          >>> top_left_corner = (0, 0)
          >>> dataset = Dataset.create_from_array(
          ...         arr, top_left_corner=top_left_corner, cell_size=cell_size, epsg=4326
          ... )

          ```
        - Second, create the polygon using shapely polygon, and use the xmin, ymin, xmax, ymax = [0.1, -0.2, 0.2 -0.1]
            to cover the 4 cells.

            ```python
            >>> mask = gpd.GeoDataFrame(geometry=[Polygon([(0.1, -0.1), (0.1, -0.2), (0.2, -0.2), (0.2, -0.1)])], crs=4326)

            ```
        - Pass the `geodataframe` to the crop method using the `mask` parameter.

          ```python
          >>> cropped_dataset = dataset.crop(mask=mask)

          ```
        - Check the cropped dataset:

          ```python
          >>> print(cropped_dataset.shape)
          (4, 2, 2)
          >>> print(cropped_dataset.geotransform)
          (0.1, 0.05, 0.0, -0.1, 0.0, -0.05)
          >>> print(cropped_dataset.read_array(band=0))# doctest: +SKIP
          [[0.00921161 0.90841171]
           [0.355636   0.18650262]]
          >>> print(arr[0, 2:4, 2:4])# doctest: +SKIP
          [[0.00921161 0.90841171]
           [0.355636   0.18650262]]

          ```
        - Crop a raster using another raster mask:

          - Create a mask dataset with the same extent of the polygon we used in the previous example.

          ```python
          >>> geotransform = (0.1, 0.05, 0.0, -0.1, 0.0, -0.05)
          >>> mask_dataset = Dataset.create_from_array(np.random.rand(2, 2), geo=geotransform, epsg=4326)

          ```
        - Then use the mask dataset to crop the dataset.

          ```python
          >>> cropped_dataset_2 = dataset.crop(mask=mask_dataset)
          >>> print(cropped_dataset_2.shape)
          (4, 2, 2)

          ```
        - Check the cropped dataset:

          ```python
          >>> print(cropped_dataset_2.geotransform)
          (0.1, 0.05, 0.0, -0.1, 0.0, -0.05)
          >>> print(cropped_dataset_2.read_array(band=0))# doctest: +SKIP
          [[0.00921161 0.90841171]
           [0.355636   0.18650262]]
          >>> print(arr[0, 2:4, 2:4])# doctest: +SKIP
           [[0.00921161 0.90841171]
           [0.355636   0.18650262]]

          ```

        - Crop using a ``(west, south, east, north)`` bbox tuple instead of
          a hand-built ``FeatureCollection`` (the bbox CRS defaults to the
          dataset's own):

          ```python
          >>> import numpy as np
          >>> from pyramids.dataset import Dataset
          >>> arr_int = np.arange(100, dtype="int16").reshape(10, 10)
          >>> dataset_bbox = Dataset.create_from_array(
          ...     arr_int, top_left_corner=(0, 0), cell_size=0.05, epsg=4326,
          ... )
          >>> cropped_bbox = dataset_bbox.crop(bbox=(0.1, -0.2, 0.2, -0.1))
          >>> cropped_bbox.shape
          (1, 2, 2)
          >>> cropped_bbox.epsg
          4326

          ```

        - Crop across the antimeridian with a ``west > east`` geographic bbox
          (STAC convention); the two sides are stitched into one contiguous
          strip whose longitudes continue past the 180° seam:

          ```python
          >>> import numpy as np
          >>> from pyramids.dataset import Dataset
          >>> grid = Dataset.create_from_array(
          ...     np.arange(180 * 360, dtype="float32").reshape(180, 360),
          ...     top_left_corner=(-180.0, 90.0), cell_size=1.0, epsg=4326,
          ... )
          >>> strip = grid.crop(bbox=(170.0, -10.0, -170.0, 10.0))
          >>> strip.shape
          (1, 20, 20)
          >>> strip.bbox
          [170.0, -10.0, 190.0, 10.0]

          ```

        - Supplying both ``mask`` and ``bbox`` is rejected:

          ```python
          >>> import numpy as np
          >>> from pyramids.dataset import Dataset
          >>> from pyramids.feature import FeatureCollection
          >>> dataset_excl = Dataset.create_from_array(
          ...     np.zeros((4, 5), dtype="int16"),
          ...     top_left_corner=(0, 0), cell_size=0.05, epsg=4326,
          ... )
          >>> fc = FeatureCollection.from_bbox((0.0, -0.1, 0.1, 0.0), epsg=4326)
          >>> try:
          ...     dataset_excl.crop(mask=fc, bbox=(0.0, -0.1, 0.1, 0.0))
          ... except ValueError as exc:
          ...     print("not both" in str(exc))
          True

          ```

    """
    if bbox is not None:
        if mask is not None:
            raise ValueError("crop accepts either `mask` or `bbox`, not both")
        # `.epsg` is None for a no-EPSG CRS (e.g. geostationary); fall back to
        # the WKT so a bbox in the grid's own CRS is still honoured (#706).
        crs = epsg if epsg is not None else (self._ds.epsg or self._ds.crs)
        west, _, east, _ = bbox
        crs_geo = bool(crs) and sr_from_user_input(crs).IsGeographic()
        ds_epsg = self._ds.epsg
        ds_geo = ds_epsg is not None and sr_from_user_input(ds_epsg).IsGeographic()
        if west > east and crs_geo and ds_geo:
            # bbox is validated 4-long above; tuple(bbox) loses that fixed
            # arity statically (it may start as a list), so restore it.
            bbox_4 = cast(tuple[float, float, float, float], tuple(bbox))
            _require_antimeridian_seam(self._ds, bbox_4)
            return self._crop_antimeridian(bbox_4, crs, touch)
        mask = FeatureCollection.from_bbox(bbox, epsg=crs)
    if mask is None:
        raise TypeError(
            "crop requires a `mask` (GeoDataFrame / FeatureCollection / "
            "Dataset) or a `bbox` (west, south, east, north) tuple"
        )
    if isinstance(mask, GeoDataFrame):
        dst = self._crop_with_polygon_warp(mask, touch=touch)
    elif isinstance(mask, RasterBase):
        dst = self._crop_with_raster(mask)
    else:
        raise TypeError(
            "The second parameter: mask could be either GeoDataFrame or Dataset object"
        )

    return dst