Skip to content

NetCDF Class#

The NetCDF class extends Dataset for structured (regular grid) NetCDF files. It wraps GDAL's Multidimensional API to provide variable access, time dimension handling, and CF-compliant metadata.

Lazy / Dask reads#

Every NetCDF entry point has a lazy variant that keeps memory bounded on multi-GB reanalysis and climate-projection files:

Entry point Purpose
NetCDF.read_array(chunks=…) One file, one variable, partial reads
NetCDF.open_mfdataset(paths, variable) Many files → single stacked dask array
NetCDF.to_kerchunk(path) Emit a JSON index so downstream reads are free
NetCDF.combine_kerchunk(paths, …) Combine per-file manifests into one cube index
NetCDF.to_xarray() / .from_xarray() Round-trip interop with xarray.Dataset
from pyramids.netcdf import NetCDF

nc = NetCDF.read_file("era5.nc")
t2m = nc.read_array(
    "t2m", chunks={"time": 24, "lat": 256, "lon": 256},
)
t2m.mean(axis=0).compute()        # monthly mean, parallel

See Lazy NetCDF for chunk-size rules, CF scale/offset unpacking, and kerchunk manifest emission.

Install: pip install 'pyramids-gis[lazy]' for the core path, [netcdf-lazy] for kerchunk, [xarray] for the to_xarray / from_xarray round-trip helpers.

Plotting#

NetCDF.plot exposes an xarray-aligned plotting API — variable=, the grouped selectors= / colour= / facet= dataclasses, curvilinear coords=, kind=, animate=, and chunks= (lazy). It does not inherit Dataset.plot's GeoTIFF / Sentinel kwargs (band, rgb, surface_reflectance, cutoff, percentile, overview, overview_index) — passing any of them raises TypeError. See the Plotting reference for the full surface and the Selectors / ColourOpts / FacetSpec dataclasses, and the Plotting NetCDF data tutorial for worked examples. Requires the [viz] extra.

pyramids.netcdf.NetCDF #

Bases: Dataset

NetCDF.

NetCDF class is a recursive data structure or self-referential object. The NetCDF class contains methods to deal with NetCDF files.

NetCDF Creation guidelines

https://acdguide.github.io/Governance/create/create-basics.html

Source code in src/pyramids/netcdf/netcdf.py
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
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
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
class NetCDF(Dataset):
    """NetCDF.

    NetCDF class is a recursive data structure or self-referential object.
    The NetCDF class contains methods to deal with NetCDF files.

    NetCDF Creation guidelines:
        https://acdguide.github.io/Governance/create/create-basics.html
    """

    def __reduce__(self):  # type: ignore[override]
        """Emit the extended recipe tuple carrying NetCDF mode flags.

        Overrides :meth:`RasterBase.__reduce__` to include
        `_is_md_array`, `_is_subset`, and `_source_var_name`,
        which are required to reconstruct a container vs a
        variable-subset with matching identity.

        For variable-subset instances the `_file_name` attribute
        reflects the subset's GDAL description, which is typically
        empty or driver-specific. We therefore fall back to the
        parent container's `_file_name` when reconstructing a
        subset.

        Raises:
            TypeError: The NetCDF has no on-disk path (empty
                `_file_name` or a `/vsimem/` path). Pickling an
                in-memory NetCDF is not supported.
        """
        path = self._file_name
        if (not path) and self._is_subset:
            parent = getattr(self, "_parent_nc", None)
            if parent is not None:
                path = parent._file_name
        if not path or path.startswith("/vsimem/"):
            raise TypeError(
                f"NetCDF has no on-disk path (file_name={self._file_name!r}); "
                "pickling an in-memory NetCDF is not supported. Call "
                ".to_file(path) first to anchor it to disk."
            )
        return (
            _reconstruct_netcdf,
            (
                path,
                self._access,
                bool(self._is_md_array),
                bool(self._is_subset),
                self._source_var_name,
            ),
        )

    def __init__(
        self,
        src: gdal.Dataset,
        access: str = "read_only",
        open_as_multi_dimensional: bool = True,
    ):
        """Initialize a NetCDF dataset wrapper.

        Args:
            src: A GDAL dataset handle (either classic or multidimensional).
            access: Access mode, either `"read_only"` or `"write"`.
                Defaults to `"read_only"`.
            open_as_multi_dimensional: If True the dataset was opened with
                `gdal.OF_MULTIDIM_RASTER` and supports groups, MDArrays,
                and dimensions. If False it was opened in classic raster
                mode (subdatasets, bands). Defaults to True.
        """
        super().__init__(src, access=access)
        # set the is_subset to false before retrieving the variables
        if open_as_multi_dimensional:
            self._is_md_array = True
            self._is_subset = False
        else:
            self._is_md_array = False
            self._is_subset = False
        # Caches (invalidated by _replace_raster, add_variable, remove_variable)
        self._cached_variables: dict[str, NetCDF] | None = None
        self._cached_meta_data: NetCDFMetadata | None = None
        # Origin-tracking attributes set by get_variable (RT-4)
        self._parent_nc: NetCDF | None = None
        self._source_var_name: str | None = None
        self._gdal_md_arr_ref: Any = None
        self._gdal_rg_ref: Any = None
        self._md_array_dims: list[str] = []
        self._band_dim_name: str | None = None
        self._band_dim_values: list[Any] | None = None
        self._band_dim_names: tuple[str, ...] = ()
        self._band_dim_values_map: dict[str, list[Any] | None] = {}
        self._band_dim_sizes: tuple[int, ...] = ()
        self._variable_attrs: dict[str, Any] = {}
        self._scale: float | None = None
        self._offset: float | None = None

    def _update_inplace(  # type: ignore[override]
        self, src: gdal.Dataset, access: str | None = None
    ) -> None:
        """Swap internal state, preserving NetCDF-specific attributes.

        The base `Dataset._update_inplace` rebuilds via
        `type(self)(src, access)` and overwrites `self.__dict__`.
        For a NetCDF that runs `NetCDF.__init__` with a default
        `open_as_multi_dimensional=True`, which would reset
        `_is_md_array` to True and clear every variable-subset
        attribute. This override snapshots the subset state, runs the
        base swap with the current MDIM mode, then restores the
        snapshot — so a variable subset stays a subset across
        `set_crs`, `apply(inplace=True)`, `change_no_data_value`,
        and the `epsg` setter.
        """
        preserved = {
            "_is_md_array": self._is_md_array,
            "_is_subset": self._is_subset,
            "_parent_nc": self._parent_nc,
            "_source_var_name": self._source_var_name,
            "_gdal_md_arr_ref": self._gdal_md_arr_ref,
            "_gdal_rg_ref": self._gdal_rg_ref,
            "_md_array_dims": self._md_array_dims,
            "_band_dim_name": self._band_dim_name,
            "_band_dim_values": self._band_dim_values,
            "_band_dim_names": self._band_dim_names,
            "_band_dim_values_map": self._band_dim_values_map,
            "_band_dim_sizes": self._band_dim_sizes,
            "_variable_attrs": self._variable_attrs,
            "_scale": self._scale,
            "_offset": self._offset,
        }
        new = NetCDF(
            src,
            access=access or self._access,
            open_as_multi_dimensional=self._is_md_array,
        )
        self.__dict__.update(new.__dict__)
        self.__dict__.update(preserved)
        # collaborators in `new.__dict__` point at
        # `new` via `weakref.proxy`; re-bind to a proxy of `self`
        # so callers using `self.spatial.crop(...)` after this update
        # reach the surviving instance instead of the discarded `new`.
        self_proxy = weakref.proxy(self)
        for attr in ("io", "spatial", "bands", "analysis", "cell", "vectorize", "cog"):
            collab = self.__dict__.get(attr)
            if collab is not None:
                collab._ds = self_proxy

    def __str__(self):
        """Return a human-readable summary of the NetCDF dataset."""
        message = f"""
            Cell size: {self.cell_size}
            Dimension: {self.rows} * {self.columns}
            EPSG: {self.epsg}
            projection: {self.crs}
            Variables: {self.variable_names}
            Metadata: {self.meta_data}
            File: {self.file_name}
        """
        return message

    def __repr__(self):
        """__repr__."""
        return super().__repr__()

    @property
    def top_left_corner(self):
        """Top left corner coordinates."""
        xmin, _, _, ymax, _, _ = self._geotransform
        return xmin, ymax

    @property
    def lon(self) -> np.ndarray:
        """Longitude / x-coordinate values as a 1D array.

        Looks for a variable named `"lon"` first, then `"x"`.

        Returns:
            np.ndarray or None: Flattened coordinate array, or None if
            neither `lon` nor `x` exists in the dataset.
        """
        lon = self._read_variable("lon")
        if lon is None:
            lon = self._read_variable("x")

        result: np.ndarray
        if lon is not None:
            result = lon.reshape(lon.size)
        else:
            result = super().lon
        return result

    @property
    def lat(self) -> np.ndarray:
        """Latitude / y-coordinate values as a 1D array.

        Looks for a variable named `"lat"` first, then `"y"`.

        Returns:
            np.ndarray or None: Flattened coordinate array, or None if
            neither `lat` nor `y` exists in the dataset.
        """
        lat = self._read_variable("lat")
        if lat is None:
            lat = self._read_variable("y")

        result: np.ndarray
        if lat is not None:
            result = lat.reshape(lat.size)
        else:
            result = super().lat
        return result

    @property
    def x(self) -> np.ndarray:
        """x-coordinate/longitude."""
        # X_coordinate = upper-left corner x + index * cell size + cell-size/2
        return self.lon

    @property
    def y(self) -> np.ndarray:
        """y-coordinate/latitude."""
        # Y_coordinate = upper-left corner y - index * cell size - cell-size/2
        return self.lat

    @property
    def geotransform(self):
        """Geotransform.

        Computes from lon/lat coordinate arrays if available.
        Falls back to the parent GDAL GetGeoTransform() otherwise.
        """
        if self.lon is not None and self.lat is not None:
            return (
                self.lon[0] - self.cell_size / 2,
                self.cell_size,
                0,
                self.lat[0] + self.cell_size / 2,
                0,
                -self.cell_size,
            )
        return self._geotransform

    @property
    def variable_names(self) -> list[str]:
        """Names of data variables (excluding dimension coordinate arrays).

        Returns:
            list[str]: Variable names. For MDIM mode these come from
            `GetMDArrayNames()` minus dimension names; for classic mode
            from `GetSubDatasets()`.
        """
        return self.get_variable_names()

    @property
    def variables(self) -> dict[str, NetCDF]:
        """All data variables as a lazy dict of `{name: NetCDF}` subsets.

        Variables are loaded on first access per key, not all at once.
        Cached after loading; invalidated by `add_variable` /
        `remove_variable` / `set_variable`.

        Returns:
            dict[str, NetCDF]: Mapping from variable name to its subset.
        """
        if self._cached_variables is None:
            self._cached_variables = _LazyVariableDict(self)
        return self._cached_variables

    @property
    def no_data_value(self) -> tuple:
        """Per-band nodata markers as an immutable tuple.

        Returns a `tuple` so the read-only contract is explicit —
        assign through the setter to change values.
        """
        return tuple(self._no_data_value)

    @no_data_value.setter
    def no_data_value(self, value: list | tuple | np.ndarray | Number):
        """Set the no-data value that marks cells outside the domain.

        The setter only changes the `no_data_value` attribute; it does
        **not** modify the underlying cell values. Use this to align the
        attribute with whatever sentinel is already stored in the cells.
        To actually rewrite cell values, use `change_no_data_value`.

        Args:
            value: New no-data value. A scalar is broadcast to every
                band; a `list`, `tuple`, or 1-D :class:`numpy.ndarray`
                with `len == band_count` provides one value per band.
                A 0-D ndarray is treated as a scalar.

        Raises:
            ValueError: When `value` is a sequence whose length does
                not equal `band_count`, or a multi-dimensional
                ndarray (only 0-D scalars and 1-D sequences are
                accepted).
        """
        if isinstance(value, np.ndarray):
            if value.ndim == 0:
                value = value.item()
            elif value.ndim == 1:
                value = value.tolist()
            else:
                raise ValueError(
                    f"no_data_value ndarray must be 0-D (scalar) or 1-D "
                    f"(per-band sequence); got ndim={value.ndim}"
                )
        if isinstance(value, (list, tuple)):
            if len(value) != self.band_count:
                raise ValueError(
                    f"no_data_value sequence length {len(value)} does "
                    f"not match band_count {self.band_count}"
                )
            for i, val in enumerate(value):
                self.bands._change_no_data_value_attr(i, val)
        else:
            for i in range(self.band_count):
                self.bands._change_no_data_value_attr(i, value)

    @property
    def file_name(self):
        """File path, with the `NETCDF:"path":var` prefix stripped if present.

        Returns:
            str: Clean file path without the NETCDF prefix.
        """
        if self._file_name.startswith("NETCDF"):
            name = self._file_name.split(":")[1][1:-1]
        else:
            name = self._file_name
        return name

    @property
    def time_stamp(self):
        """Time coordinate values parsed from the CF-compliant `time` variable.

        Returns:
            list[str] | None: Formatted time strings, or None if no time
                dimension with a `units` attribute is found.
        """
        return self.get_time_variable()

    def _check_not_container(self, operation: str):
        """Raise ValueError if this is a root MDIM container (not a variable subset)."""
        if self._is_md_array and not self._is_subset and self.band_count == 0:
            raise ValueError(
                f"Spatial operations are not supported on the NetCDF container. "
                f"Use nc.get_variable('var_name').{operation}(...) instead."
            )

    def plot(
        self,
        variable: str | None = None,
        *,
        selectors: Selectors | None = None,
        colour: ColourOpts | None = None,
        facet: FacetSpec | None = None,
        coords: tuple | list | None = None,
        kind: str = "auto",
        animate: bool | str | None = None,
        chunks: Any | None = None,
        basemap: bool | str | None = None,
        exclude_value: Any | None = None,
        title: str | None = None,
        ax: Any | None = None,
        figsize: tuple[float, float] | None = None,
        **kwargs: Any,
    ):
        """Plot a 2-D slice of a NetCDF variable using xarray-aligned vocabulary.

        The public surface is shaped around **variables** and **dimensions** — ``band``
        is not a NetCDF concept and has been removed from the signature. Variable
        selection is by name; the slice to render is pinned via a :class:`Selectors`
        option bag (``time`` / ``level`` / ``member`` / ``sel`` / ``isel``); colour
        controls live on a :class:`ColourOpts` bag (``cmap`` / ``vmin`` / ``vmax`` /
        ``robust`` / ``levels`` / ``norm`` / ``center`` / ``extend`` / ``add_colorbar``
        / ``cbar_kwargs``); multi-panel layout is described by a :class:`FacetSpec`
        bag (``col`` / ``row`` / ``col_wrap``). Each bag is a frozen dataclass —
        construct it inline at the call site.

        On a **root MDIM container** the ``variable=`` argument is required:

        ```python
        from pyramids.netcdf import NetCDF, Selectors
        nc.plot(variable="t2m", selectors=Selectors(time="2024-01-15"))
        ```

        On a **variable subset** (the result of :meth:`get_variable`) ``variable=``
        may be omitted or must equal the pinned variable name; otherwise the call
        is rejected, mirroring the :meth:`read_array` contract.

        Args:
            variable (str, optional):
                Name of the variable to plot. Required on the root MDIM container;
                must be ``None`` or equal to the pinned variable name on a subset.
                Defaults to None.
            selectors (Selectors, optional):
                Dim-selector bag. See :class:`Selectors` for the field list. A
                missing bag is treated as :class:`Selectors`\\ () (all fields
                ``None``). Defaults to None.
            colour (ColourOpts, optional):
                Colour-control bag. See :class:`ColourOpts` for the field list. A
                missing bag is treated as :class:`ColourOpts`\\ () (cleopatra
                defaults). Defaults to None.
            facet (FacetSpec, optional):
                Faceting bag. See :class:`FacetSpec` for the field list. A missing
                bag (or one where both ``col`` and ``row`` are ``None``) routes
                the call to the single-panel static-plot path. Defaults to None.
            coords (tuple or list, optional):
                Explicit curvilinear ``(x, y)`` coordinate spec for the
                pcolormesh path. Accepts two forms:

                - A length-2 sequence of strings — each is looked up as a
                  variable name via ``_read_variable`` on the parent
                  container.
                - A length-2 sequence of numpy arrays — passed straight
                  through to cleopatra. Each array is 1-D (length matches
                  the data x/y axis) or 2-D matching ``(rows, cols)``.

                When ``coords=`` is omitted, pyramids auto-detects
                curvilinear coords via the CF ``coordinates`` attribute on
                the variable, then via the well-known naming conventions
                (WRF ``XLAT`` / ``XLONG``, ROMS ``lat_rho`` / ``lon_rho``,
                NEMO ``nav_lat`` / ``nav_lon``). When nothing matches, the
                renderer falls back to ``extent=self.bbox`` (imshow).
                Defaults to None.
            kind (str, optional):
                Render kind forwarded to cleopatra's ``ArrayGlyph.plot``.
                One of ``"auto"``, ``"imshow"``, ``"pcolormesh"``,
                ``"contour"``, ``"contourf"``. ``"auto"`` routes to
                ``pcolormesh`` when curvilinear ``coords`` are present,
                else ``imshow``. Defaults to ``"auto"``.
            animate (bool or str, optional):
                When set, render the variable as an animation across a
                band dim instead of a single 2-D slice. ``True`` animates
                along the variable's primary band dim (typically
                ``time``) — only valid when exactly one band dim remains
                after the selectors collapse the others. A string names
                the dim to animate along. ``None`` (default) returns a
                static plot. Mutually exclusive with faceting and with
                any selector that pins the animated dim. Defaults to
                None.
            chunks (Any, optional):
                Chunking spec forwarded to :meth:`read_array` for the
                static-plot path. ``None`` (default) preserves the eager
                read. Any of ``int`` / ``tuple`` / ``dict`` / ``"auto"``
                switches to the dask-backed lazy read and only the
                rendered slice is materialised. Has no effect on the
                ``animate=`` path. Defaults to None.
            basemap (bool or str, optional):
                If truthy, overlay an OpenStreetMap basemap (or a named
                contextily tile provider). Defaults to None.
            exclude_value (Any, optional):
                Pixel value to mask out before plotting. Defaults to None.
            title (str, optional):
                Plot title. Defaults to None.
            ax (Any, optional):
                Existing matplotlib Axes to draw into. Defaults to None.
            figsize (tuple, optional):
                Figure size in inches. Defaults to None.
            **kwargs:
                Additional keyword arguments forwarded to
                :meth:`Analysis.plot <pyramids.dataset.engines.Analysis.plot>`.
                The legacy ``band=`` kwarg is accepted here for backward
                compatibility but emits a :class:`DeprecationWarning`.

        Returns:
            ArrayGlyph: A cleopatra ``ArrayGlyph`` wrapping the rendered figure.

        Raises:
            TypeError: If any of the Sentinel-only kwargs (``rgb``,
                ``surface_reflectance``, ``cutoff``, ``percentile``,
                ``overview``, ``overview_index``) is passed. Each
                rejection message names the xarray-aligned replacement.
            ValueError: If called on a root MDIM container without
                ``variable=``, if ``variable=`` is passed on a subset and
                does not match the pinned variable name, if the resolved
                selectors do not pin to a single 2-D slice, or if
                ``coords=`` is malformed.

        Examples:
            - Plot the first time step of a variable on a container. Tagged
              ``+SKIP`` because rendering requires the optional ``[viz]``
              extra (cleopatra + matplotlib):

              ```python
              >>> import numpy as np
              >>> from pyramids.netcdf import NetCDF, Selectors
              >>> arr = np.random.rand(4, 8, 8).astype(np.float32)
              >>> nc = NetCDF.create_from_array(
              ...     arr, top_left_corner=(0, 0), cell_size=0.1, epsg=4326,
              ...     variable_name="t2m",
              ... )
              >>> cleo = nc.plot(  # doctest: +SKIP
              ...     variable="t2m", selectors=Selectors(isel={"time": 0}),
              ... )

              ```

            - Pick a time slice by label — the ``Selectors.time`` alias
              is equivalent to ``Selectors(sel={"time": value})``:

              ```python
              >>> cleo = nc.plot(  # doctest: +SKIP
              ...     variable="t2m", selectors=Selectors(time=2),
              ... )

              ```

            - Pin both time and level on a 4-D ``(time, pressure_level,
              lat, lon)`` variable. The selectors collapse both band
              dims to a single 2-D slice — equivalent to
              ``var.sel(time=12).sel(pressure_level=500)``:

              ```python
              >>> cleo = nc.plot(  # doctest: +SKIP
              ...     variable="temperature",
              ...     selectors=Selectors(time=12, level=500),
              ... )

              ```

            - Use an explicit ``sel`` dict instead of the convenience
              aliases — keys must match the variable's band-dim names:

              ```python
              >>> cleo = nc.plot(  # doctest: +SKIP
              ...     variable="t2m", selectors=Selectors(sel={"time": 2}),
              ... )

              ```

            - Use an ``isel`` dict to address slices positionally. Each
              integer is mapped to the corresponding coord value via
              ``_band_dim_values_map``:

              ```python
              >>> cleo = nc.plot(  # doctest: +SKIP
              ...     variable="t2m", selectors=Selectors(isel={"time": 0}),
              ... )

              ```

            - All six Sentinel-only kwargs are rejected with a hint at
              the xarray-aligned replacement. These doctests run because
              the gate fires before any cleopatra import:

              ```python
              >>> nc.plot(variable="t2m", rgb=[0, 1, 2])  # doctest: +IGNORE_EXCEPTION_DETAIL
              Traceback (most recent call last):
                  ...
              TypeError: ...rgb=...

              ```

              ```python
              >>> nc.plot(variable="t2m", surface_reflectance=10000)  # doctest: +IGNORE_EXCEPTION_DETAIL
              Traceback (most recent call last):
                  ...
              TypeError: ...surface_reflectance...

              ```

              ```python
              >>> nc.plot(variable="t2m", cutoff=[0.1, 0.9])  # doctest: +IGNORE_EXCEPTION_DETAIL
              Traceback (most recent call last):
                  ...
              TypeError: ...cutoff...

              ```

              ```python
              >>> nc.plot(variable="t2m", percentile=2)  # doctest: +IGNORE_EXCEPTION_DETAIL
              Traceback (most recent call last):
                  ...
              TypeError: ...robust=True...

              ```

              ```python
              >>> nc.plot(variable="t2m", overview=2)  # doctest: +IGNORE_EXCEPTION_DETAIL
              Traceback (most recent call last):
                  ...
              TypeError: ...overview=...

              ```

              ```python
              >>> nc.plot(variable="t2m", overview_index=2)  # doctest: +IGNORE_EXCEPTION_DETAIL
              Traceback (most recent call last):
                  ...
              TypeError: ...overview_index=...

              ```

            - The legacy ``band=`` kwarg still works as an escape hatch
              but emits a :class:`DeprecationWarning`. Prefer
              ``Selectors(time=...)`` for new code:

              ```python
              >>> import warnings
              >>> with warnings.catch_warnings(record=True) as caught:  # doctest: +SKIP
              ...     warnings.simplefilter("always")
              ...     cleo = nc.plot(variable="t2m", band=2)
              >>> caught[0].category.__name__  # doctest: +SKIP
              'DeprecationWarning'

              ```

            - Render a WRF-style curvilinear NetCDF on its real lat/lon
              grid. With 2-D ``XLAT`` / ``XLONG`` coord variables on the
              container, pyramids auto-detects them and routes the
              renderer to ``pcolormesh``:

              ```python
              >>> cleo = nc.plot(variable="CANWAT", kind="pcolormesh")  # doctest: +SKIP

              ```

            - Pass an explicit curvilinear coord pair by variable name —
              useful when the variable has no CF ``coordinates``
              attribute and the convention does not match
              WRF / ROMS / NEMO:

              ```python
              >>> cleo = nc.plot(  # doctest: +SKIP
              ...     variable="CANWAT", coords=("XLONG", "XLAT"),
              ... )

              ```

            - Pick a non-default render kind. ``"contourf"`` produces
              filled contours from the same data; ``"auto"`` (the
              default) picks ``pcolormesh`` when curvilinear coords are
              present, else falls back to ``imshow``. Discrete contour
              levels live on :class:`ColourOpts`:

              ```python
              >>> from pyramids.netcdf import ColourOpts
              >>> cleo = nc.plot(  # doctest: +SKIP
              ...     variable="t2m",
              ...     kind="contourf",
              ...     colour=ColourOpts(levels=10),
              ... )

              ```

            - Render with explicit 2-D coord arrays passed directly via
              ``coords=``. The arrays bypass the CF / convention
              auto-detection step and route the renderer to
              ``pcolormesh``:

              ```python
              >>> import numpy as np
              >>> x2d, y2d = np.meshgrid(
              ...     np.linspace(0, 10, 4), np.linspace(0, 10, 4),
              ... )
              >>> arr = np.random.rand(3, 4, 4).astype(np.float32)
              >>> nc_curv = NetCDF.create_from_array(
              ...     arr, top_left_corner=(0, 0), cell_size=1.0, epsg=4326,
              ...     variable_name="t2m",
              ... )
              >>> cleo = nc_curv.plot(  # doctest: +SKIP
              ...     variable="t2m", coords=(x2d, y2d),
              ... )

              ```

            - Robust (percentile-based) colour limits — clip to the 2nd / 98th
              percentile of the rendered slice. Colour controls live
              on :class:`ColourOpts`:

              ```python
              >>> from pyramids.netcdf import ColourOpts
              >>> cleo = nc.plot(  # doctest: +SKIP
              ...     variable="t2m",
              ...     colour=ColourOpts(cmap="viridis", robust=True),
              ... )

              ```

            - Disable the colorbar — the facade removes it post-render
              because cleopatra always attaches one:

              ```python
              >>> from pyramids.netcdf import ColourOpts
              >>> cleo = nc.plot(  # doctest: +SKIP
              ...     variable="t2m", colour=ColourOpts(add_colorbar=False),
              ... )

              ```

            - Facet over the time dim. :class:`FacetSpec` lists the
              column dim (and optionally a row dim and a wrap value).
              The return type becomes
              :class:`cleopatra.array_glyph.FacetGrid`:

              ```python
              >>> from pyramids.netcdf import FacetSpec
              >>> grid = nc.plot(  # doctest: +SKIP
              ...     variable="t2m", facet=FacetSpec(col="time"),
              ... )

              ```

            - Facet a 4-D variable across both axes with ``col`` and
              ``row``. ``col_wrap`` is ignored when ``row`` is given:

              ```python
              >>> grid = nc.plot(  # doctest: +SKIP
              ...     variable="temperature",
              ...     facet=FacetSpec(col="time", row="pressure_level"),
              ... )

              ```

            - Wrap a single-axis facet into a grid via ``col_wrap``.
              ``N=4`` panels with ``col_wrap=3`` wrap to a ``2x3``
              layout with one hidden slot:

              ```python
              >>> grid = nc.plot(  # doctest: +SKIP
              ...     variable="t2m", facet=FacetSpec(col="time", col_wrap=3),
              ... )

              ```

            - Faceting on a dim that is also pinned by a selector
              raises :class:`ValueError` before any I/O:

              ```python
              >>> nc.plot(  # doctest: +IGNORE_EXCEPTION_DETAIL
              ...     variable="t2m",
              ...     selectors=Selectors(time=0),
              ...     facet=FacetSpec(col="time"),
              ... )
              Traceback (most recent call last):
                  ...
              ValueError: Cannot facet on 'time'...

              ```

            - Animate along the primary band dim with ``animate=True``.
              The facade resolves the single free band dim (``time``
              here) and streams frames lazily via a per-frame
              ``data_getter`` so the animation never builds a 3-D stack:

              ```python
              >>> cleo = nc.plot(variable="t2m", animate=True)  # doctest: +SKIP

              ```

            - Name the animation dim explicitly. The string must match
              one of the variable's band-dim names. ``animate="time"``
              is equivalent to ``animate=True`` when ``time`` is the
              only free band dim; the explicit form is required on
              variables with more than one free band dim:

              ```python
              >>> cleo = nc.plot(variable="t2m", animate="time")  # doctest: +SKIP

              ```

            - An unknown ``animate=`` dim name is rejected before any
              I/O. The error message lists the available band dims so
              typos are easy to spot:

              ```python
              >>> nc.plot(variable="t2m", animate="bogus")  # doctest: +IGNORE_EXCEPTION_DETAIL
              Traceback (most recent call last):
                  ...
              ValueError: `animate='bogus'` is not a band dim...

              ```

            - Pinning a dim and then asking to animate over it
              raises :class:`ValueError`:

              ```python
              >>> nc.plot(  # doctest: +IGNORE_EXCEPTION_DETAIL
              ...     variable="t2m",
              ...     selectors=Selectors(time=0),
              ...     animate="time",
              ... )
              Traceback (most recent call last):
                  ...
              ValueError: Cannot animate on 'time'...

              ```

            - Switch the static-plot path to a lazy dask read with
              ``chunks=``. Only the rendered slice is materialised —
              useful when the variable is very large and a full eager
              read would waste memory:

              ```python
              >>> cleo = nc.plot(  # doctest: +SKIP
              ...     variable="t2m", chunks={"x": 5, "y": 5},
              ... )

              ```
        """
        return NetCDFPlot(self).run(
            variable,
            selectors=selectors,
            colour=colour,
            facet=facet,
            coords=coords,
            kind=kind,
            animate=animate,
            chunks=chunks,
            basemap=basemap,
            exclude_value=exclude_value,
            title=title,
            ax=ax,
            figsize=figsize,
            **kwargs,
        )

    def read_array(
        self,
        variable: str | None = None,
        band: int | None = None,
        window: list[int] | None = None,
        unpack: bool = False,
        *,
        bbox: tuple[float, float, float, float] | list[float] | None = None,
        epsg: Any = None,
        chunks: Any = None,
        lock: Any = None,
    ) -> ArrayLike:
        """Read array from the dataset (eager by default, lazy with `chunks`).

        Args:
            variable: When this instance is a root MDIM container,
                the variable name to read. When the instance is
                already a variable subset (`nc.get_variable("x")`)
                this argument must be `None` — the variable is
                already pinned.
            band: Band index to read, or None for all bands. Only
                honored on the eager path (`chunks=None`).
            window: Spatial window to read. Only honored on the
                eager path. Mutually exclusive with ``bbox``.
            unpack: If True and the variable has CF `scale_factor`
                and/or `add_offset`, apply the transformation
                `real = raw * scale + offset`. Defaults to False.
                Applied lazily via :mod:`dask.array` arithmetic when
                `chunks` is given — the compute graph stays lazy
                until the caller materializes it.
            bbox (keyword-only): ``(west, south, east, north)`` quadruple
                in the CRS named by ``epsg``. Internally wrapped in a
                one-row :class:`pyramids.feature.FeatureCollection` via
                :meth:`pyramids.feature.FeatureCollection.from_bbox`
                and routed through the same window path. Honored on
                the **eager path only** — same constraint as ``window``.
                Mutually exclusive with ``window``; combining with
                ``chunks`` raises :class:`ValueError` (mirroring
                :class:`pyramids.dataset.engines.IO.read_array`'s
                ``chunks=`` + ``window=`` rule).
            epsg (keyword-only): CRS for ``bbox`` — anything geopandas
                accepts for ``crs=`` (EPSG int, ``"EPSG:4326"``, WKT,
                :class:`pyproj.CRS`). Defaults to the dataset's own
                CRS, so a bbox in the dataset's native CRS needs no
                extra argument.
            chunks: Chunking spec for a lazy return. `None` (the
                default) returns an eager :class:`numpy.ndarray` and
                preserves the legacy behavior. Any of `int`,
                `tuple`, `dict`, or the string `"auto"` switches
                to a :class:`dask.array.Array` backed by MDArray
                chunk reads. Defaults chunked at the variable's
                native `GetBlockSize` (see
                :attr:`pyramids.netcdf.models.VariableInfo.block_size`);
                a conservative `(1,..., rows, cols)` fallback is
                used when the driver doesn't advertise one.
            lock: Lock passed to the underlying
                :class:`pyramids.base._file_manager.CachingFileManager`.
                `None` → :func:`pyramids.base._locks.default_lock`
                (a :class:`SerializableLock`, or a
                `dask.distributed.Lock` when a client is active).
                `False` → :class:`pyramids.base._locks.DummyLock`.
                Only meaningful when `chunks` is not `None`.

        Returns:
            np.ndarray or dask.array.Array: The array data, eager
            (numpy) by default or lazy (dask) when `chunks` is
            supplied. The lazy array computes chunk-by-chunk through
            `md_arr.ReadAsArray(array_start_idx=starts, count=counts)`.

        Raises:
            ValueError: If called on a root MDIM container without a
                `variable` argument, when a subset is called with a
                conflicting `variable` name, when both ``window`` and
                ``bbox`` are supplied, or when both ``chunks`` and
                ``bbox`` are supplied (the lazy path doesn't yet
                honour bbox windowing — matching
                :class:`pyramids.dataset.engines.IO.read_array`'s
                ``chunks=`` + ``window=`` rule).
            ImportError: If `chunks` is given but `dask` is not
                installed. Install the `[lazy]` extra.

        Examples:
            - Eager bbox read on a root container — the container
              auto-routes to the named variable. The noah fixture's
              geotransform is ``cell_size=0.5°``, ``origin=(0, 90)``,
              512×512 cells — so its coordinate range is
              ``x ∈ [0, 256)`` and ``y ∈ (-166, 90]``. The bbox
              below sits well inside that range:
                ```python
                >>> from pyramids.netcdf import NetCDF
                >>> nc = NetCDF.read_file(
                ...     "tests/data/netcdf/noah-precipitation-1979.nc"
                ... )
                >>> arr = nc.read_array(
                ...     variable="Band1",
                ...     bbox=(10.0, -50.0, 50.0, -20.0),
                ... )
                >>> arr.ndim in (2, 3)
                True

                ```

        See Also:
            - :meth:`pyramids.dataset.Dataset.read_array`: the same
              ``bbox=`` / ``epsg=`` surface for plain rasters.
            - :meth:`crop`: clip the whole dataset by bbox.
        """
        if bbox is not None:
            if window is not None:
                raise ValueError(
                    "read_array accepts either `window` or `bbox`, not both"
                )
            if chunks is not None:
                raise ValueError(
                    "read_array(chunks=..., bbox=...) is not supported; "
                    "read lazily and slice the resulting dask array instead."
                )
            crs = epsg if epsg is not None else self.epsg
            if crs is None:
                raise ValueError(
                    "read_array(bbox=…) requires an explicit `epsg=` when "
                    "the NetCDF itself has no CRS (self.epsg is None) — a "
                    "bbox without a CRS is ambiguous"
                )
            # Build the FC once at the override boundary and forward as
            # `window=fc, bbox=None` so the guards never re-fire on the
            # recursive container→subset call or on super().read_array.
            # Mirrors NetCDF.crop's "build mask once at the top" pattern.
            window = FeatureCollection.from_bbox(bbox, epsg=crs)
            bbox = None
            epsg = None
        is_container = (
            self._is_md_array and not self._is_subset and self.band_count == 0
        )
        if is_container:
            if variable is None:
                self._check_not_container("read_array")
            subset = self.get_variable(variable)
            return subset.read_array(
                band=band,
                window=window,
                unpack=unpack,
                bbox=bbox,
                epsg=epsg,
                chunks=chunks,
                lock=lock,
            )
        if variable is not None and variable != self._source_var_name:
            raise ValueError(
                f"This NetCDF instance is already pinned to variable "
                f"{self._source_var_name!r}; cannot re-read as "
                f"{variable!r}. Call read_array on the parent container "
                "instead."
            )
        if chunks is None:
            result = super().read_array(
                band=band,
                window=window,
                bbox=bbox,
                epsg=epsg,
            )
            if unpack:
                result = _apply_unpack(
                    result,
                    getattr(self, "_scale", None),
                    getattr(self, "_offset", None),
                )
        else:
            parent = self._parent_nc if self._parent_nc is not None else self
            path = parent._file_name
            if path.startswith("NETCDF"):
                path = path.split(":")[1][1:-1]
            var_name = self._source_var_name
            if var_name is None:
                raise ValueError(
                    "Lazy read requires a variable name; pass "
                    "`variable=` on the container or call read_array "
                    "on a subset from `get_variable()`."
                )
            result = build_lazy_array(
                path=path,
                variable_name=var_name,
                chunks=chunks,
                lock=lock,
            )
            if unpack:
                result = _apply_unpack(
                    result,
                    getattr(self, "_scale", None),
                    getattr(self, "_offset", None),
                )
        return result

    def _preserve_netcdf_metadata(self, result: Dataset) -> NetCDF:
        """Wrap a Dataset result as a NetCDF, preserving variable-subset metadata.

        When spatial operations (crop, to_crs, resample) are called on a
        NetCDF variable subset, the parent `Dataset` mixin returns a
        plain `Dataset`. This helper re-wraps the result as a `NetCDF`
        and copies over the variable-specific attributes so that methods
        like `sel()`, `read_array(unpack=True)`, and further spatial
        operations continue to work with consistent return types.

        Both the legacy single-band-dim fields (`_band_dim_name`,
        `_band_dim_values`) and the multi-band-dim fields
        (`_band_dim_names`, `_band_dim_values_map`, `_band_dim_sizes`)
        are propagated. The legacy length-guard nullifies
        `_band_dim_values` only when its primary-dim view is provably
        stale: for single-band-dim variables it compares
        `len(values) != _band_count`; for multi-band-dim variables it
        compares `prod(_band_dim_sizes) != _band_count` instead, so a
        4-D variable whose total band count diverged from the cached
        sizes (e.g. after a band-shrinking operation outside `sel()`)
        drops the now-stale primary view.

        Args:
            result: The `Dataset` (or `NetCDF`) returned by a parent
                spatial operation.

        Returns:
            NetCDF: The same data wrapped as a `NetCDF` with all
                variable-subset metadata preserved.

        See Also:
            `sel`: produces results that flow through this helper to
                keep the multi-band-dim metadata consistent across
                spatial ops.
        """
        if isinstance(result, NetCDF):
            wrapped = result
        else:
            wrapped = NetCDF(
                result._raster,
                access=result._access,
                open_as_multi_dimensional=False,
            )
        wrapped._is_md_array = self._is_md_array
        wrapped._is_subset = self._is_subset
        wrapped._band_dim_name = self._band_dim_name
        wrapped._band_dim_names = self._band_dim_names
        wrapped._band_dim_sizes = self._band_dim_sizes
        wrapped._band_dim_values_map = dict(self._band_dim_values_map)
        # Length-guard: nullify legacy values only when the primary-dim
        # view is provably stale. For multi-band-dim variables the
        # `_band_count` is the product of every band-dim size, so compare
        # against `prod(_band_dim_sizes)` rather than `len(values)`.
        expected_count = math.prod(self._band_dim_sizes)
        if (
            self._band_dim_values is not None
            and wrapped._band_count > 0
            and len(self._band_dim_names) <= 1
            and len(self._band_dim_values) != wrapped._band_count
        ):
            wrapped._band_dim_values = None
        elif (
            self._band_dim_values is not None
            and wrapped._band_count > 0
            and len(self._band_dim_names) > 1
            and expected_count != wrapped._band_count
        ):
            # Multi-band-dim variable whose total band count diverged from
            # the cached sizes (e.g. after a band-shrinking operation
            # outside sel()). Drop the now-stale primary view.
            wrapped._band_dim_values = None
        else:
            wrapped._band_dim_values = self._band_dim_values
        # Self-heal: if the guard above nulled the legacy values but
        # the per-dim map still carries an entry of the right length
        # for the new band count, refill from there. Makes the helper
        # idempotent under repeat calls and removes the post-call
        # refill requirement on callers like `sel()` for the
        # pin-secondary-dim case (where the primary-dim entry in the
        # map is still valid).
        if (
            wrapped._band_dim_values is None
            and wrapped._band_dim_name is not None
            and wrapped._band_count > 0
        ):
            candidate = wrapped._band_dim_values_map.get(wrapped._band_dim_name)
            if candidate is not None and len(candidate) == wrapped._band_count:
                wrapped._band_dim_values = list(candidate)
        wrapped._variable_attrs = self._variable_attrs
        wrapped._scale = self._scale
        wrapped._offset = self._offset
        wrapped._parent_nc = self._parent_nc
        wrapped._source_var_name = self._source_var_name
        wrapped._gdal_md_arr_ref = None
        wrapped._gdal_rg_ref = None
        return wrapped

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

        On a **root MDIM container** this crops every variable and
        returns a new in-memory NetCDF container with the cropped
        results. On a **variable subset** it delegates to the parent
        :meth:`pyramids.dataset.Dataset.crop` and re-wraps the result
        as :class:`NetCDF` to preserve variable metadata
        (``_band_dim_name``, ``_band_dim_values``, :meth:`sel`).

        Args:
            mask: GeoDataFrame with polygon geometry, or a Dataset
                to use as a spatial mask. Mutually exclusive with
                ``bbox``; exactly one of the two must be supplied.
            touch: If True, include cells that touch the mask
                boundary. Defaults to True.
            bbox (keyword-only): ``(west, south, east, north)``
                quadruple in the CRS named by ``epsg``. Internally
                wrapped in a one-row :class:`FeatureCollection` via
                :meth:`FeatureCollection.from_bbox` and routed through
                the same polygon path. The FC is built **once** so a
                root-container crop does not rebuild it for every
                variable. Mutually exclusive with ``mask``.
            epsg (keyword-only): CRS for ``bbox`` — anything geopandas
                accepts for ``crs=`` (EPSG int, ``"EPSG:4326"``, WKT,
                :class:`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 handles
                it).

        Returns:
            NetCDF: Cropped container or variable subset.

        Raises:
            ValueError: Both ``mask`` and ``bbox`` were supplied.
            TypeError: Neither ``mask`` nor ``bbox`` was supplied.

        Examples:
            - Crop every variable of a root NetCDF container by a
              bbox in the dataset's own CRS (`epsg` is inferred). The
              noah fixture's geotransform is ``cell_size=0.5°``,
              ``origin=(0, 90)``, 512×512 cells — so its coordinate
              range is ``x ∈ [0, 256)`` and ``y ∈ (-166, 90]``. The
              bbox below sits well inside that range:
                ```python
                >>> from pyramids.netcdf import NetCDF
                >>> nc = NetCDF.read_file(
                ...     "tests/data/netcdf/noah-precipitation-1979.nc"
                ... )
                >>> cropped = nc.crop(bbox=(10.0, -50.0, 50.0, -20.0))
                >>> sorted(cropped.variables) == sorted(nc.variables)
                True

                ```
            - Mutual-exclusion guard:
                ```python
                >>> from pyramids.feature import FeatureCollection
                >>> from pyramids.netcdf import NetCDF
                >>> nc = NetCDF.read_file(
                ...     "tests/data/netcdf/noah-precipitation-1979.nc"
                ... )
                >>> fc = FeatureCollection.from_bbox(
                ...     (10.0, -50.0, 50.0, -20.0), epsg=nc.epsg,
                ... )
                >>> try:
                ...     nc.crop(mask=fc, bbox=(10.0, -50.0, 50.0, -20.0))
                ... except ValueError as exc:
                ...     print("not both" in str(exc))
                True

                ```

        See Also:
            - :meth:`pyramids.dataset.Dataset.crop`: same ``bbox=`` /
              ``epsg=`` surface for plain rasters.
            - :meth:`pyramids.feature.FeatureCollection.from_bbox`: the
              shared primitive that builds the one-row FC.
        """
        if bbox is not None:
            if mask is not None:
                raise ValueError("crop accepts either `mask` or `bbox`, not both")
            crs = epsg if epsg is not None else self.epsg
            if crs is None:
                raise ValueError(
                    "crop(bbox=…) requires an explicit `epsg=` when the "
                    "NetCDF itself has no CRS (self.epsg is None) — a "
                    "bbox without a CRS is ambiguous"
                )
            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 self._is_md_array and not self._is_subset and self.band_count == 0:
            result = self._apply_to_all_variables(
                "crop",
                {"mask": mask, "touch": touch},
            )
        else:
            result = super().crop(mask=mask, touch=touch)
            result = self._preserve_netcdf_metadata(result)
        return result

    def _apply_to_all_variables(self, operation, op_kwargs):
        """Apply an operation to every variable in the container.

        Args:
            operation: Name of the Dataset method to call (e.g. "crop").
            op_kwargs: Keyword arguments to pass to the method.

        Returns:
            NetCDF: New container with the operation applied to all variables.

        Raises:
            ValueError: If the container has no data variables.
        """
        if not self.variable_names:
            raise ValueError(
                "Cannot apply operation to an empty container (no data variables)."
            )

        result = None
        for var_name in self.variable_names:
            var = self.get_variable(var_name)
            var_result = getattr(var, operation)(**op_kwargs)
            # to_crs returns a VRT — materialize before the source goes
            # out of scope. read_array also squeezes singleton-band 3-D
            # variables to 2-D, so re-expand when the variable carried a
            # band/time/level dim originally.
            var_arr = var_result.read_array()
            if var_arr.ndim == 2 and var._band_dim_name is not None:
                var_arr = np.expand_dims(var_arr, axis=0)
            # For 4-D+ variables, GDAL classic raster flattened the
            # non-spatial axes into a single bands axis on read — undo
            # that so the rebuild can materialise every band-dim. The
            # cached `_band_dim_sizes` describes the storage order
            # (last non-spatial dim varies fastest, matching GDAL's
            # row-major flatten), so the reshape is the literal
            # inverse of that flatten.
            if (
                len(var._band_dim_names) > 1
                and var_arr.ndim == 3
                and var._band_dim_sizes
            ):
                var_arr = var_arr.reshape(
                    *var._band_dim_sizes, var_arr.shape[-2], var_arr.shape[-1]
                )
            var_ndv = var_result.no_data_value
            var_ndv_scalar = (
                var_ndv[0] if isinstance(var_ndv, list) and var_ndv else var_ndv
            )
            extra_dims = (
                [
                    (name, var._band_dim_values_map.get(name))
                    for name in var._band_dim_names
                ]
                if var._band_dim_names
                else None
            )

            if result is None:
                # First variable: build the container.
                if extra_dims is not None:
                    result = NetCDF.create_from_array(
                        arr=var_arr,
                        geo=var_result.geotransform,
                        epsg=var_result.epsg,
                        no_data_value=var_ndv_scalar,
                        variable_name=var_name,
                        extra_dims=extra_dims,
                    )
                else:
                    result = NetCDF.create_from_array(
                        arr=var_arr,
                        geo=var_result.geotransform,
                        epsg=var_result.epsg,
                        no_data_value=var_ndv_scalar,
                        variable_name=var_name,
                    )
            else:
                # Subsequent variables: drop into the existing container.
                ds = Dataset.create_from_array(
                    var_arr,
                    geo=var_result.geotransform,
                    epsg=var_result.epsg,
                    no_data_value=var_ndv_scalar,
                )
                ds._band_dim_name = var._band_dim_name
                ds._band_dim_values = var._band_dim_values
                ds._band_dim_names = var._band_dim_names
                ds._band_dim_values_map = dict(var._band_dim_values_map)
                ds._band_dim_sizes = var._band_dim_sizes
                result.set_variable(var_name, ds)

        return result

    def reduce(
        self,
        dim: str,
        how: str = "mean",
        *,
        groupby: list | tuple | str | None = None,
        skipna: bool = True,
    ) -> NetCDF:
        """Reduce every variable along a named dimension and return a new NetCDF.

        Collapses or coarsens one non-spatial dimension (`time`,
        `pressure_level`, `depth`, an ensemble member, …) of every variable
        that has it, leaving variables without `dim` and all other dimensions,
        coordinates, CRS, and the grid untouched. The result is a new
        :class:`NetCDF` container — no xarray involved.

        Args:
            dim: Name of the non-spatial dimension to reduce. Must be one of a
                variable's band dimensions (as exposed by ``sel``); spatial
                ``lat`` / ``lon`` dimensions are not reducible here.
            how: Reduction operation — one of ``"mean"``, ``"sum"``, ``"min"``,
                ``"max"``, ``"std"``, ``"var"``.
            groupby: Controls collapse vs. windowed reduction:

                - ``None`` (default): collapse `dim` entirely (it is removed
                  from the output).
                - a sequence of per-index labels (length = the size of `dim`):
                  reduce each group of equal labels; `dim` is coarsened to one
                  slice per distinct label, in first-appearance order.
                - a pandas offset alias (e.g. ``"1MS"``, ``"1D"``, ``"YS"``):
                  group `dim` by calendar window. Only valid when `dim` carries
                  a decodable CF time coordinate.
            skipna: When ``True`` (default), mask each variable's NoData value to
                ``NaN`` and reduce with the ``nan``-aware operation, then refill
                ``NaN`` results with NoData. The output is float64. When
                ``False``, reduce the raw values with the plain operation.

        Returns:
            NetCDF: A new container with `dim` removed (``groupby=None``) or
            coarsened (windowed). When the windowed dimension keeps a numeric
            coordinate, each output slice is labelled with the first source
            coordinate value of its window.

        Raises:
            ValueError: When `how` is unknown, the container has no data
                variables, `dim` is not a non-spatial dimension of any variable,
                a frequency `groupby` is given but `dim` has no decodable time
                coordinate, or the grouping does not cover `dim` exactly.

        Examples:
            - Monthly mean of an ERA5-style ``(time, lat, lon)`` file:
                ```python
                >>> from pyramids.netcdf import NetCDF  # doctest: +SKIP
                >>> nc = NetCDF.read_file("era5_t2m_hourly.nc")  # doctest: +SKIP
                >>> monthly = nc.reduce("time", "mean", groupby="1MS")  # doctest: +SKIP
                >>> monthly.get_variable("t2m").band_count  # doctest: +SKIP
                12

                ```
            - Collapse a pressure-level axis to its column mean:
                ```python
                >>> column = nc.reduce("pressure_level", "mean")  # doctest: +SKIP
                >>> "pressure_level" in column.get_variable("t").dimensions  # doctest: +SKIP
                False

                ```
        """
        if how not in _REDUCERS:
            raise ValueError(f"how must be one of {sorted(_REDUCERS)}; got {how!r}")
        if not self.variable_names:
            raise ValueError("Cannot reduce an empty container (no data variables).")

        group_positions = self._resolve_group_positions(dim, groupby)

        result = None
        found = False
        for var_name in self.variable_names:
            var = self.get_variable(var_name)
            arr = self._materialize_variable_array(var)
            band_names = list(var._band_dim_names)
            values_map = dict(var._band_dim_values_map)
            ndv = self._scalar_no_data_value(var.no_data_value)

            if dim in band_names:
                found = True
                axis = band_names.index(dim)
                arr, band_names, values_map = self._reduce_variable_array(
                    arr,
                    axis,
                    dim,
                    band_names,
                    values_map,
                    how,
                    skipna,
                    ndv,
                    groupby,
                    group_positions,
                )

            result = self._stack_reduced_variable(
                result,
                var_name,
                arr,
                var.geotransform,
                var.epsg,
                ndv,
                band_names,
                values_map,
            )

        if not found:
            raise ValueError(
                f"Dimension {dim!r} is not a non-spatial dimension of any "
                f"variable in this container."
            )
        return result

    @staticmethod
    def _scalar_no_data_value(no_data_value: Any) -> Any:
        """Return a single NoData value from a per-band list/tuple or scalar."""
        result = no_data_value
        if isinstance(no_data_value, (list, tuple)) and no_data_value:
            result = no_data_value[0]
        return result

    @staticmethod
    def _materialize_variable_array(var: NetCDF) -> np.ndarray:
        """Read a variable as `(*band_dim_sizes, rows, cols)` (or `(rows, cols)`).

        Undoes ``read_array``'s singleton-band squeeze and GDAL's row-major
        flatten of multi-dim band axes, mirroring `_apply_to_all_variables`.
        """
        arr = var.read_array()
        if var._band_dim_names:
            if arr.ndim == 2:
                arr = np.expand_dims(arr, axis=0)
            if len(var._band_dim_names) > 1 and arr.ndim == 3 and var._band_dim_sizes:
                arr = arr.reshape(*var._band_dim_sizes, arr.shape[-2], arr.shape[-1])
        return arr

    def _resolve_group_positions(
        self, dim: str, groupby: list | tuple | str | None
    ) -> list[np.ndarray] | None:
        """Resolve `groupby` into ordered lists of source index positions.

        Returns ``None`` for the collapse case (``groupby is None``).
        """
        positions: list[np.ndarray] | None = None
        if isinstance(groupby, str):
            # Full-resolution timestamps: the default "%Y-%m-%d" truncates to
            # whole days, which would collapse every sub-daily frequency
            # ("1H"/"3H"/"6H") into a single per-day bucket.
            times = self.get_time_variable(var_name=dim, time_format="%Y-%m-%d %H:%M:%S")
            if times is None:
                raise ValueError(
                    f"Cannot group dimension {dim!r} by frequency {groupby!r}: "
                    f"no decodable time coordinate found."
                )
            index = pd.DatetimeIndex(pd.to_datetime(times))
            series = pd.Series(np.arange(len(index)), index=index)
            positions = [
                np.sort(members.to_numpy())
                for _, members in series.groupby(pd.Grouper(freq=groupby))
                if len(members) > 0
            ]
        elif groupby is not None:
            labels = list(groupby)
            order: list[Any] = []
            members: dict[Any, list[int]] = {}
            for i, label in enumerate(labels):
                if label not in members:
                    members[label] = []
                    order.append(label)
                members[label].append(i)
            positions = [np.array(members[label]) for label in order]
        return positions

    def _reduce_variable_array(
        self,
        arr,
        axis,
        dim,
        band_names,
        values_map,
        how,
        skipna,
        ndv,
        groupby,
        group_positions,
    ):
        """Reduce one variable's array along `axis`; return new array + dims."""
        if group_positions is None:
            new_arr = self._reduce_axis(arr, axis, how, skipna, ndv)
            new_band_names = [name for name in band_names if name != dim]
            new_values_map = {name: values_map.get(name) for name in new_band_names}
        else:
            covered = sum(len(positions) for positions in group_positions)
            if covered != arr.shape[axis]:
                raise ValueError(
                    f"groupby covers {covered} positions but dimension {dim!r} "
                    f"has size {arr.shape[axis]}."
                )
            slices = [
                self._reduce_axis(
                    np.take(arr, positions, axis=axis), axis, how, skipna, ndv
                )
                for positions in group_positions
            ]
            new_arr = np.stack(slices, axis=axis)
            coord = values_map.get(dim)
            new_band_names = list(band_names)
            new_values_map = dict(values_map)
            new_values_map[dim] = (
                [coord[int(positions[0])] for positions in group_positions]
                if coord is not None
                else None
            )
        return new_arr, new_band_names, new_values_map

    @staticmethod
    def _reduce_axis(arr, axis, how, skipna, ndv):
        """Apply one reduction over `axis`, masking NoData when `skipna`."""
        nan_func, plain_func = _REDUCERS[how]
        if skipna:
            data = arr.astype("float64")
            if ndv is not None:
                data = np.where(data == ndv, np.nan, data)
            with warnings.catch_warnings():
                warnings.simplefilter("ignore", RuntimeWarning)
                out = nan_func(data, axis=axis)
            # nansum/nanstd/nanvar return 0 (not NaN) for an all-NoData slice,
            # so detect fully-masked positions explicitly and restore NoData for
            # every reducer rather than leaking a spurious 0.
            all_masked = np.all(np.isnan(data), axis=axis)
            fill = ndv if ndv is not None else np.nan
            out = np.where(np.isnan(out) | all_masked, fill, out)
            result = out
        else:
            result = plain_func(arr, axis=axis)
        return result

    def _stack_reduced_variable(
        self, result, var_name, arr, geo, epsg, ndv, band_names, values_map
    ):
        """Add a reduced variable into the result container, building it lazily."""
        extra = (
            [(name, values_map.get(name)) for name in band_names]
            if band_names
            else None
        )
        if result is None:
            if extra is not None:
                result = NetCDF.create_from_array(
                    arr=arr,
                    geo=geo,
                    epsg=epsg,
                    no_data_value=ndv,
                    variable_name=var_name,
                    extra_dims=extra,
                )
            else:
                result = NetCDF.create_from_array(
                    arr=arr,
                    geo=geo,
                    epsg=epsg,
                    no_data_value=ndv,
                    variable_name=var_name,
                )
        else:
            # A Dataset stores at most one (flattened) band axis, so collapse the
            # trailing band dimensions to a single (prod(sizes), rows, cols) store.
            # _materialize_variable_array reshapes it back using _band_dim_sizes.
            flat = (
                arr.reshape(-1, arr.shape[-2], arr.shape[-1])
                if len(band_names) > 1
                else arr
            )
            ds = Dataset.create_from_array(flat, geo=geo, epsg=epsg, no_data_value=ndv)
            ds._band_dim_name = band_names[0] if band_names else None
            ds._band_dim_values = values_map.get(band_names[0]) if band_names else None
            ds._band_dim_names = tuple(band_names)
            ds._band_dim_values_map = {
                name: values_map.get(name) for name in band_names
            }
            ds._band_dim_sizes = tuple(arr.shape[i] for i in range(len(band_names)))
            result.set_variable(var_name, ds)
        return result

    def to_crs(
        self,
        to_epsg: int,
        method: str = "nearest neighbor",
        maintain_alignment: bool = False,
    ) -> NetCDF:
        """Reproject the dataset to a different CRS.

        On a **root MDIM container** this reprojects every variable
        and returns a new container. On a **variable subset** it
        delegates to `Dataset.to_crs()` and wraps the result as
        `NetCDF` to preserve variable metadata.

        Args:
            to_epsg: Target EPSG code (e.g., 4326, 32637).
            method: Resampling method. Defaults to `"nearest neighbor"`.
            maintain_alignment: If True, keep the same number of rows
                and columns. Defaults to False.

        Returns:
            NetCDF: Reprojected container or variable subset.
        """
        if self._is_md_array and not self._is_subset and self.band_count == 0:
            result = self._apply_to_all_variables(
                "to_crs",
                {
                    "to_epsg": to_epsg,
                    "method": method,
                    "maintain_alignment": maintain_alignment,
                },
            )
        else:
            result = super().to_crs(
                to_epsg=to_epsg,
                method=method,
                maintain_alignment=maintain_alignment,
            )
            result = self._preserve_netcdf_metadata(result)
        return result

    def resample(
        self,
        cell_size: float,
        method: str = "nearest neighbor",
    ) -> NetCDF:
        """Resample the dataset to a different cell size.

        On a **root MDIM container** this resamples every variable
        and returns a new container. On a **variable subset** it
        delegates to `Dataset.resample()` and wraps the result as
        `NetCDF` to preserve variable metadata.

        Args:
            cell_size: New cell size.
            method: Resampling method. Defaults to `"nearest neighbor"`.

        Returns:
            NetCDF: Resampled container or variable subset.
        """
        if self._is_md_array and not self._is_subset and self.band_count == 0:
            result = self._apply_to_all_variables(
                "resample",
                {"cell_size": cell_size, "method": method},
            )
        else:
            result = super().resample(
                cell_size=cell_size,
                method=method,
            )
            result = self._preserve_netcdf_metadata(result)
        return result

    def sel(self, **kwargs: Any) -> NetCDF:
        """Select a subset of bands by coordinate values along a band dim.

        Extracts bands whose coordinate values match the given criteria.
        Works on any variable subset that has at least one non-spatial
        dimension tracked in `_band_dim_names` (set by
        `get_variable()`). For 4-D+ files with multiple non-spatial
        dims (e.g. `(valid_time, pressure_level, lat, lon)` from CDS-Beta
        ERA5), `sel()` may name any of those dims; chaining `sel()`
        pins multiple band dims one at a time.

        The result is always a `NetCDF` instance with the same variable
        metadata preserved, so `sel()` can be chained and NetCDF-only
        methods like `read_array(unpack=True)` remain available.

        Internals: GDAL flattens an MDIM array `(d_0, ..., d_{n-1},
        lat, lon)` row-major over the non-spatial dims, with the last
        non-spatial dim varying fastest. For a band dim at axis `k`
        with sizes `S`, the implementation uses
        `stride = prod(S[k+1:])`, `block = stride * S[k]`, and
        `total = prod(S)` to map each pinned index `p` to the band
        ranges `[outer + p*stride .. outer + (p+1)*stride)` for every
        `outer in range(0, total, block)`. For a single-band-dim
        variable this reduces to the identity
        `band_indices == dim_indices`.

        Args:
            **kwargs: Exactly one keyword argument. The key must name a
                tracked band dim (one of `self._band_dim_names`); the
                value is one of:

                - A single number: select one band by exact value.
                - A list of numbers: select multiple bands.
                - A `slice(start, stop)`: select bands whose coord
                  falls between `start` and `stop` inclusive. Bounds
                  are normalised before matching, so the slice is
                  direction-agnostic — works on both ascending and
                  descending coord axes (e.g. `latitude` stored
                  north-to-south).

        Returns:
            NetCDF: A new variable subset with only the selected bands
                and full metadata preserved. `_band_dim_sizes` reflects
                the pinned axis (e.g. `(4, 1)` after pinning a level on
                a `(4, 3)` cube), and `_band_dim_values_map[dim_name]`
                shrinks to the chosen values. Legacy `_band_dim_values`
                is refreshed from the (possibly updated) primary entry
                in the map.

        Raises:
            ValueError: If exactly one kwarg isn't passed, the variable
                has no tracked band dims, the named dim isn't one of
                `_band_dim_names`, the dim has no coord values
                (`_band_dim_values_map[dim] is None`), or no bands match
                the selector.

        Examples:
            - Pin a pressure level on a 4-D file:
                ```python
                >>> nc = NetCDF.read_file(  # doctest: +SKIP
                ...     "tests/data/netcdf/pyramids-netcdf-4d.nc"
                ... )
                >>> var = nc.get_variable("temperature")  # doctest: +SKIP
                >>> sub = var.sel(pressure_level=500)  # doctest: +SKIP
                >>> sub._band_dim_sizes  # doctest: +SKIP
                (4, 1)

                ```
            - Chain `sel()` to pin both time and level (collapses to 2-D):
                ```python
                >>> sub = var.sel(time=12).sel(pressure_level=500)  # doctest: +SKIP
                >>> sub.read_array().shape  # doctest: +SKIP
                (5, 6)

                ```
            - Use a list selector to keep only two of the levels:
                ```python
                >>> sub = var.sel(pressure_level=[1000, 500])  # doctest: +SKIP
                >>> sub._band_dim_values_map["pressure_level"]  # doctest: +SKIP
                [1000.0, 500.0]

                ```
            - Use a slice selector — direction-agnostic, so the same
              call works on ascending coords (e.g. `[500, 850, 1000]`)
              and on descending coords (e.g. `[1000, 850, 500]`):
                ```python
                >>> sub = var.sel(pressure_level=slice(500, 1000))  # doctest: +SKIP
                >>> sub._band_dim_values_map["pressure_level"]  # doctest: +SKIP
                [1000.0, 850.0, 500.0]

                ```

        Notes:
            All four examples above are tagged `# doctest: +SKIP`
            because they need a real on-disk NetCDF fixture. The
            runnable equivalents live in:

            - `tests/netcdf/test_sel.py::TestSelSingleValue` /
              `TestSelList` / `TestSelSlice` (3-D scenarios — single
              value, list selector, slice selector including the
              direction-agnostic path).
            - `tests/netcdf/test_sel_4d.py::TestSelByPressureLevel` /
              `TestSelByTime` / `TestSelChained` (4-D scenarios —
              pin secondary / primary dim, chained `sel().sel()`).
            - `tests/netcdf/test_sel_4d.py::TestSelErrorMessages` (the
              error contract).

        See Also:
            `get_variable`: builds a variable subset and populates the
                band-dim metadata that `sel()` consumes.
        """
        if len(kwargs) != 1:
            raise ValueError("sel() requires exactly one keyword argument.")

        dim_name, selector = next(iter(kwargs.items()))

        if not self._band_dim_names:
            raise ValueError(
                "sel() requires a variable with at least one non-spatial "
                "dimension. This variable has no band dimensions tracked."
            )
        if dim_name not in self._band_dim_names:
            raise ValueError(
                f"Dimension {dim_name!r} does not match any band dimension "
                f"of this variable {list(self._band_dim_names)!r}."
            )

        coords = self._band_dim_values_map.get(dim_name)
        if coords is None:
            raise ValueError(
                f"No coordinate values available for dimension {dim_name!r}."
            )

        if isinstance(selector, slice):
            start = selector.start if selector.start is not None else coords[0]
            stop = selector.stop if selector.stop is not None else coords[-1]
            # Normalise bounds so the match works on both ascending and
            # descending coord axes (e.g. `latitude = [44, 43, 42, 41,
            # 40]` from CDS-Beta retrievals). Without this, a
            # `slice(None, None)` on a descending axis defaults to
            # `start=44, stop=40`, the test `44 <= v <= 40` matches
            # nothing, and the user gets a confusing "no bands match"
            # error instead of "select everything".
            lo, hi = (start, stop) if start <= stop else (stop, start)
            dim_indices = [i for i, v in enumerate(coords) if lo <= v <= hi]
        elif isinstance(selector, list):
            coord_set = set(selector)
            dim_indices = [i for i, v in enumerate(coords) if v in coord_set]
        else:
            dim_indices = [i for i, v in enumerate(coords) if v == selector]

        if not dim_indices:
            raise ValueError(
                f"No bands match {dim_name}={selector}. " f"Available values: {coords}"
            )

        # Map (pinned dim index along dim_name) -> classic-band indices.
        # GDAL flattens (d_0, ..., d_{n-1}, lat, lon) row-major over the
        # non-spatial dims: the last non-spatial dim varies fastest. For
        # a band-dim at axis `k` with sizes S, stride = prod(S[k+1:]) and
        # block = stride * S[k]. For each pinned index p we emit
        # `[outer + p*stride .. outer + (p+1)*stride)` for every outer in
        # range(0, total, block). Reduces to identity (band_indices ==
        # dim_indices) when there is exactly one band dim.
        dim_axis = self._band_dim_names.index(dim_name)
        sizes = self._band_dim_sizes
        stride = math.prod(sizes[dim_axis + 1 :])
        block = stride * sizes[dim_axis]
        total = math.prod(sizes)

        band_indices: list[int] = []
        for pinned in dim_indices:
            for outer_start in range(0, total, block):
                base = outer_start + pinned * stride
                band_indices.extend(range(base, base + stride))

        selected_coords = [coords[i] for i in dim_indices]

        # Read only the selected bands instead of loading the full array.
        # Each band index maps to a 1-based GDAL band in the classic
        # dataset view created by get_variable(). Band-by-band reads
        # avoid loading the entire variable into memory.
        band_arrays = [self.read_array(band=i) for i in band_indices]
        if len(band_arrays) == 1:
            selected = band_arrays[0]
        else:
            selected = np.stack(band_arrays, axis=0)

        ndv = self.no_data_value
        ndv_scalar = ndv[0] if isinstance(ndv, list) and ndv else ndv
        ds_result = Dataset.create_from_array(
            selected,
            geo=self.geotransform,
            epsg=self.epsg,
            no_data_value=ndv_scalar,
        )
        result = self._preserve_netcdf_metadata(ds_result)
        new_sizes = tuple(
            len(dim_indices) if i == dim_axis else s for i, s in enumerate(sizes)
        )
        result._band_dim_sizes = new_sizes
        result._band_dim_values_map = dict(self._band_dim_values_map)
        result._band_dim_values_map[dim_name] = selected_coords
        # Refresh legacy primary-dim values to match the (possibly
        # updated) primary entry in the map. `_band_dim_name` is
        # guaranteed non-None here: entry to `sel()` requires
        # `_band_dim_names` to be non-empty, and the build path always
        # sets `_band_dim_name = _band_dim_names[0]`.
        result._band_dim_values = result._band_dim_values_map.get(result._band_dim_name)

        return result

    @classmethod
    def read_file(  # type: ignore[override]
        cls,
        path: str | Path,
        read_only: bool = True,
        open_as_multi_dimensional: bool = True,
        file_i: int = 0,
        *,
        vsi: str | None = None,
    ) -> NetCDF:
        """Open a NetCDF file from a path, URL, or archive member.

        Plain local paths, ``/vsi*`` paths, and URL schemes
        (``http(s)://``, ``s3://``, ``gs://``, ``az://`` / ``abfs://``,
        ``file://``) are all accepted — URLs are transparently rewritten
        to GDAL's virtual filesystem. Compressed archives (``.zip`` /
        ``.tar`` / ``.tar.gz`` / ``.gz``) are detected from the
        extension; pass ``vsi=`` to be explicit about the archive kind
        (e.g. an archive without a recognised extension, or to open a
        specific member by index).

        Args:
            path: Path or URL of the ``.nc`` file or archive.
            read_only: If True, open in read-only mode. Set to False for
                write access. Defaults to True.
            open_as_multi_dimensional: If True, open with
                ``gdal.OF_MULTIDIM_RASTER`` to access the full group /
                dimension / variable hierarchy. If False, open in
                classic raster mode where each variable is a subdataset.
                Defaults to True.
            file_i: Which member to open when ``path`` is (or is forced
                to be) a multi-file archive. Default ``0``.
            vsi: Treat ``path`` as an archive of this kind and open
                member ``file_i`` from inside it: ``"zip"``, ``"tar"``
                (also ``"tar.gz"`` / ``"tgz"``), ``"gzip"`` (also
                ``"gz"``), or ``"auto"`` (infer from the extension).
                Default ``None`` — ``path`` is opened directly /
                extension-sniffed as before. GDAL's archive handlers
                key off the file-name extension, so an extension-less
                download URL must first be fetched and saved with a
                ``.zip`` name (or written to ``/vsimem/<name>.zip`` via
                :func:`osgeo.gdal.FileFromMemBuffer`).

                **Platform caveat for NetCDF:** GDAL's netCDF driver
                requires Linux ``userfaultfd`` to open a ``.nc`` from
                any ``/vsi*`` path (archive, ``/vsicurl/``, ``/vsimem/``
                via this route). On Windows / macOS the call raises a
                ``RuntimeError`` from GDAL pointing at the missing
                ``userfaultfd``. Use :meth:`from_bytes` to read a
                downloaded ``.nc`` from memory on those platforms.

        Returns:
            NetCDF: The opened dataset.

        Examples:
            - Open a plain ``.nc`` from disk and list its variables:
                ```python
                >>> from pyramids.netcdf import NetCDF
                >>> nc = NetCDF.read_file(
                ...     "tests/data/netcdf/noah-precipitation-1979.nc"
                ... )
                >>> sorted(nc.variables)
                ['Band1', 'Band2', 'Band3', 'Band4']

                ```
            - Open a NetCDF held inside a zip — ``vsi="auto"`` infers
              the archive kind from the ``.zip`` extension. GDAL's
              netCDF driver needs Linux ``userfaultfd`` to read through
              ``/vsizip/``, so the open actually succeeds only on Linux;
              the ``try`` / ``except`` keeps the doctest runnable on
              Windows / macOS too (where it falls through with the
              ``RuntimeError`` GDAL raises):
                ```python
                >>> import tempfile, zipfile
                >>> from pathlib import Path
                >>> from pyramids.netcdf import NetCDF
                >>> src = Path("tests/data/netcdf/noah-precipitation-1979.nc")
                >>> with tempfile.TemporaryDirectory() as tmp:
                ...     zpath = Path(tmp) / "noah.zip"
                ...     with zipfile.ZipFile(zpath, "w") as zf:
                ...         zf.write(src, arcname="noah.nc")
                ...     try:
                ...         nc = NetCDF.read_file(zpath, vsi="auto")
                ...         variables = sorted(nc.variables)
                ...     except RuntimeError:
                ...         variables = ["Band1", "Band2", "Band3", "Band4"]
                >>> variables
                ['Band1', 'Band2', 'Band3', 'Band4']

                ```

        See Also:
            - :meth:`from_bytes`: open a NetCDF from in-memory bytes.
            - :meth:`pyramids.dataset.Dataset.read_file`: the same
              ``vsi=`` / ``file_i=`` surface for GeoTIFFs.
        """
        src = _io.read_file(
            path,
            read_only,
            open_as_multi_dimensional,
            file_i=file_i,
            vsi=vsi,
        )
        access = "read_only" if read_only else "write"
        return cls(
            src, access=access, open_as_multi_dimensional=open_as_multi_dimensional
        )

    @classmethod
    def from_bytes(  # type: ignore[override]
        cls,
        data: bytes | bytearray | memoryview,
        *,
        suffix: str = ".nc",
        name: str | None = None,
        read_only: bool = True,
        open_as_multi_dimensional: bool = True,
    ) -> NetCDF:
        """Open a NetCDF held in memory as a byte string.

        Writes ``data`` to a temporary GDAL ``/vsimem/`` path and opens
        it as a NetCDF — no on-disk temp file needed. Useful for HTTP
        response bodies, object-store payloads, and test fixtures.

        This is **not** a URL helper — see
        :meth:`pyramids.dataset.Dataset.from_bytes` for the rationale.
        The ``/vsimem/`` entry is removed automatically when the
        returned :class:`NetCDF` is garbage-collected.

        Args:
            data: Raw bytes of a NetCDF file.
            suffix: Extension hint for GDAL's driver detection. Defaults
                to ``".nc"``.
            name: Optional label recorded as :attr:`file_name`
                (cosmetic). Defaults to ``None``.
            read_only: Open read-only. Defaults to ``True``.
            open_as_multi_dimensional: Open with
                ``gdal.OF_MULTIDIM_RASTER`` to access the full group /
                dimension / variable hierarchy. Defaults to ``True``.

        Returns:
            NetCDF: The opened in-memory dataset.

        Raises:
            TypeError: ``data`` is not a bytes-like object.
            ValueError: GDAL could not open the bytes as a NetCDF.

        Examples:
            - Open the bytes of a NetCDF and list its variables (the bytes
              here come from a file, but could be ``requests.get(url).content``):
                ```python
                >>> from pathlib import Path
                >>> from pyramids.netcdf import NetCDF
                >>> data = Path("tests/data/netcdf/noah-precipitation-1979.nc").read_bytes()
                >>> nc = NetCDF.from_bytes(data, name="downloaded.nc")
                >>> list(nc.variables)
                ['Band1', 'Band2', 'Band3', 'Band4']
                >>> nc.epsg
                4326
                >>> nc.file_name
                'downloaded.nc'

                ```
            - An in-memory NetCDF cannot be pickled — anchor it to disk first:
                ```python
                >>> import pickle
                >>> from pathlib import Path
                >>> from pyramids.netcdf import NetCDF
                >>> data = Path("tests/data/netcdf/noah-precipitation-1979.nc").read_bytes()
                >>> try:
                ...     pickle.dumps(NetCDF.from_bytes(data))
                ... except TypeError as exc:
                ...     print("to_file" in str(exc))
                True

                ```

        See Also:
            - :meth:`read_file`: open a NetCDF from a path or URL.
            - :meth:`pyramids.dataset.Dataset.from_bytes`: the GeoTIFF variant.
        """
        src, vsi_path = _io.bytes_to_gdal(
            data,
            suffix=suffix,
            read_only=read_only,
            open_as_multi_dimensional=open_as_multi_dimensional,
        )
        try:
            obj = cls(
                src,
                access="read_only" if read_only else "write",
                open_as_multi_dimensional=open_as_multi_dimensional,
            )
        except Exception as e:
            src = None
            _io.silent_unlink(vsi_path)
            raise ValueError(
                "could not open the supplied bytes as a NetCDF dataset "
                f"(the data may be corrupt or truncated): {e}"
            ) from e
        obj._vsimem_path = vsi_path
        weakref.finalize(obj, _io.silent_unlink, vsi_path)
        if name is not None:
            obj._file_name = str(name)
        return obj

    def to_kerchunk(
        self,
        output_path,
        *,
        inline_threshold: int = 500,
        vlen_encode: str = "embed",
    ) -> dict:
        """Emit a kerchunk JSON reference manifest for this file.

        Thin forwarder to :func:`pyramids.netcdf._kerchunk.to_kerchunk`
        using `self._file_name` as the source path. Requires the
        `[netcdf-lazy]` optional extra.

        Args:
            output_path: Path where the manifest JSON is written.
            inline_threshold: Chunks smaller than this many bytes are
                embedded directly. Default 500.
            vlen_encode: VLEN string handling mode. Default `"embed"`.

        Returns:
            dict: The manifest dict that was written.
        """
        return to_kerchunk(
            self._file_name,
            output_path,
            inline_threshold=inline_threshold,
            vlen_encode=vlen_encode,
        )

    @classmethod
    def combine_kerchunk(
        cls,
        paths,
        output_path,
        *,
        concat_dims=("time",),
        identical_dims=("lat", "lon"),
        inline_threshold: int = 500,
    ) -> dict:
        """Emit a combined kerchunk manifest spanning many NetCDFs.

        Thin forwarder to
        :func:`pyramids.netcdf._kerchunk.combine_kerchunk`. Requires
        the `[netcdf-lazy]` optional extra.

        Args:
            paths: Sequence of NetCDF paths to combine.
            output_path: Path where the combined manifest is written.
            concat_dims: Dimension name(s) along which to concatenate.
                Default `("time",)`.
            identical_dims: Dimensions expected to match across all
                files. Default `("lat", "lon")`.
            inline_threshold: Chunks smaller than this inline bytes are
                embedded. Default 500.

        Returns:
            dict: The combined manifest.
        """
        return combine_kerchunk(
            paths,
            output_path,
            concat_dims=concat_dims,
            identical_dims=identical_dims,
            inline_threshold=inline_threshold,
        )

    @classmethod
    def open_mfdataset(
        cls,
        paths,
        variable: str,
        *,
        chunks=None,
        parallel: bool = False,
        preprocess=None,
    ):
        """Open many NetCDFs and stack `variable` into one lazy dask array.

        Thin forwarder to
        :func:`pyramids.netcdf._mfdataset.open_mfdataset`; see that
        function for the full argument contract. Requires the
        `[lazy]` optional extra.

        Args:
            paths: Glob string, explicit path, or sequence of paths.
            variable: Name of the variable to extract from each file.
            chunks: Chunk spec forwarded to
                :meth:`NetCDF.read_array`.
            parallel: Fan out per-file opens through `dask.delayed`.
            preprocess: Optional callable applied to each
                :class:`NetCDF` before extraction.

        Returns:
            dask.array.Array: Stack of shape `(n_files, *var_shape)`.
        """
        return open_mfdataset(
            paths,
            variable,
            chunks=chunks,
            parallel=parallel,
            preprocess=preprocess,
        )

    @property
    def meta_data(self) -> NetCDFMetadata:
        """Structured metadata for this NetCDF.

        Uses the GDAL Multidimensional API (groups, arrays, dimensions) when
        the file was opened with `open_as_multi_dimensional=True`. Falls
        back to the classic `NETCDF_DIM_*` parser (`dimensions.py`) when
        opened in classic mode (no root group available).

        Cached on first access. Invalidated by add_variable/remove_variable.

        Returns:
            NetCDFMetadata
        """
        if self._cached_meta_data is None:
            open_options = {
                "Open Mode": "SHARED" if self.is_subset else "MULTIDIM_RASTER"
            }
            self._cached_meta_data = get_metadata(self._raster, open_options)
        return self._cached_meta_data

    @meta_data.setter
    def meta_data(self, value: dict[str, str] | NetCDFMetadata) -> None:
        """Set metadata on this NetCDF dataset."""
        if isinstance(value, dict):
            for key, val in value.items():
                self._raster.SetMetadataItem(key, val)
        else:
            self._cached_meta_data = value

    def get_all_metadata(self, open_options: dict | None = None) -> NetCDFMetadata:
        """Get full MDIM metadata (uncached).

        Unlike `meta_data` (which is cached), this always re-traverses
        the GDAL multidimensional structure.

        Args:
            open_options: Driver-specific open options forwarded to
                `get_metadata()`. Defaults to None.

        Returns:
            NetCDFMetadata
        """
        result = get_metadata(self._raster, open_options)
        return result

    def get_time_variable(
        self, var_name: str = "time", time_format: str = "%Y-%m-%d"
    ) -> list[str] | None:
        """Parse the time coordinate variable into formatted date strings.

        Reads the `units` attribute (e.g., `"days since 1979-01-01"`)
        from the dimension metadata and converts raw numeric values to
        human-readable date strings.

        Args:
            var_name: Name of the time dimension / variable.
                Defaults to `"time"`.
            time_format: strftime format for the output strings.
                Defaults to `"%Y-%m-%d"`.

        Returns:
            list[str] or None: Formatted time strings, or None if the
            time dimension is not found or lacks a `units` attribute.
        """
        time_stamp = None
        time_dim = self.meta_data.get_dimension(var_name)
        if time_dim is not None:
            units = time_dim.attrs.get("units")
            if units is not None:
                calendar = time_dim.attrs.get("calendar", "standard")
                time_vals = self._read_variable(var_name)
                if time_vals is not None:
                    func = create_time_conversion_func(
                        units, time_format, calendar=calendar
                    )
                    time_stamp = list(map(func, time_vals.reshape(-1)))
        return time_stamp

    def _get_dimension_names(self) -> list[str] | None:
        """Return all dimension names, in storage order.

        On the root MDIM container, this reads from `GetRootGroup()`.
        On a variable subset (returned by `get_variable()`), the
        underlying raster is a classic-mode in-memory `Dataset` whose
        `GetRootGroup()` is `None`, but the source MDArray's dim names
        were captured into `_md_array_dims` at subset-build time. Fall
        through to that field so cube callers see the same public
        surface as container callers.

        Returns:
            list[str] or None: Dim names. `None` only when the cube is
            neither MDIM-backed nor has cached `_md_array_dims`.
        """
        rg = self._raster.GetRootGroup()
        if rg is not None:
            dims = rg.GetDimensions()
            return [dim.GetName() for dim in dims]
        cached = getattr(self, "_md_array_dims", None)
        if cached:
            return list(cached)
        return None

    @property
    def dimension_names(self) -> list[str] | None:
        """Names of all dimensions in storage order.

        On the root MDIM container the names come from the GDAL root
        group (e.g. `["x", "y", "time"]`). On a variable subset
        returned by `get_variable()` the names come from the cached
        `_md_array_dims` captured at subset-build time, so 4-D+ cubes
        report all dims (e.g. `["valid_time", "pressure_level",
        "latitude", "longitude"]`) without touching private state.

        Returns:
            list[str] or None: Dim names. `None` only on a cube that
            has neither a root group nor cached `_md_array_dims`.
        """
        return self._get_dimension_names()

    def _get_dimension(self, name: str) -> gdal.Dimension:
        dim_names = self.dimension_names
        if dim_names is not None and name in dim_names:
            rg = self._raster.GetRootGroup()
            dims = rg.GetDimensions()
            dim = dims[dim_names.index(name)]
        else:
            dim = None
        return dim

    def _needs_y_flip(self, rg, md_arr) -> bool:
        """Check if an MDArray's Y dimension goes south-to-north.

        Uses AsClassicDataset to check the geotransform Y pixel size.
        Returns True if the data needs flipping (positive Y pixel size).
        Returns False for 1-D arrays or when orientation is already correct.

        Args:
            rg: The root group (kept alive to prevent SWIG GC).
            md_arr: The MDArray to check.
        """
        result = False
        dims = md_arr.GetDimensions()
        if len(dims) >= 2:
            try:
                src = md_arr.AsClassicDataset(len(dims) - 1, len(dims) - 2, rg)
                result = src.GetGeoTransform()[5] > 0
            except Exception:
                pass
        return result

    def _read_variable(
        self,
        var: str,
        window: list[tuple[int, int]] | None = None,
    ) -> np.ndarray | None:
        """Read a variable's data as a numpy array, optionally windowed.

        Uses the MDIM root group when available (avoids opening a new GDAL
        handle). Falls back to the classic `NETCDF:file:var` path.

        For arrays with 2+ dimensions, the Y axis is flipped if the data
        is stored south-to-north (matching the flip in `get_variable`).

        Args:
            var: Variable name in the dataset.
            window: Per-dimension window as a list of `(start, count)`
                tuples, one per dimension of the target variable. For
                example, `[(0, 1), (100, 256), (200, 256)]` reads
                time[0:1], y[100:356], x[200:456]. When `None` the
                full variable is read. Only supported in MDIM mode;
                ignored in classic mode.

        Returns:
            np.ndarray or None: The variable data, or None if the
                variable is not found.
        """
        result = None
        rg = self._raster.GetRootGroup()
        if rg is not None:
            try:
                md_arr = rg.OpenMDArray(var)
                if md_arr is not None:
                    if window is not None:
                        starts = [w[0] for w in window]
                        counts = [w[1] for w in window]
                        result = md_arr.ReadAsArray(
                            array_start_idx=starts,
                            count=counts,
                        )
                    else:
                        result = md_arr.ReadAsArray()
                    # Flip Y axis if south-to-north (same as get_variable)
                    if result is not None and result.ndim >= 2:
                        if window is None and self._needs_y_flip(rg, md_arr):
                            y_axis = result.ndim - 2
                            result = np.flip(result, axis=y_axis)
            except Exception:
                pass  # nosec B110
            # Fall back to dimension indexing variable
            if result is None:
                dim = self._get_dimension(var)
                if dim is not None:
                    iv = dim.GetIndexingVariable()
                    if iv is not None:
                        if window is not None and len(window) == 1:
                            starts = [window[0][0]]
                            counts = [window[0][1]]
                            result = iv.ReadAsArray(
                                array_start_idx=starts,
                                count=counts,
                            )
                        else:
                            result = iv.ReadAsArray()
        else:
            # Classic mode: open via subdataset string
            try:
                ds = gdal.Open(f"NETCDF:{self.file_name}:{var}")
                if ds is not None:
                    result = ds.ReadAsArray()
                ds = None
            except (RuntimeError, AttributeError):
                pass
        return result

    @property
    def group_names(self) -> list[str]:
        """Names of sub-groups in the root group.

        Returns:
            list[str]: Sub-group names (e.g. `["forecast", "analysis"]`).
            Empty list if no sub-groups exist or the dataset is in
            classic mode.
        """
        rg = self._raster.GetRootGroup()
        result = []
        if rg is not None:
            try:
                names = rg.GetGroupNames()
                if names:
                    result = list(names)
            except Exception:
                pass
        return result

    def get_group(self, group_name: str) -> NetCDF:
        """Open a sub-group as a NetCDF container.

        The returned object wraps the sub-group's GDAL dataset and
        exposes the sub-group's variables and dimensions via the
        same API as the root container.

        Args:
            group_name: Name of the sub-group. Supports nested paths
                separated by `/` (e.g. `"forecast/surface"`).

        Returns:
            NetCDF: A container backed by the sub-group.

        Raises:
            ValueError: If the group doesn't exist or the dataset
                has no root group.
        """
        rg = self._raster.GetRootGroup()
        if rg is None:
            raise ValueError("get_group requires a multidimensional container.")

        # Navigate nested paths: "forecast/surface" → open each level
        group = rg
        parts = group_name.split("/")
        for part in parts:
            try:
                group = group.OpenGroup(part)
            except Exception:
                group = None
            if group is None:
                raise ValueError(
                    f"Group '{group_name}' not found. "
                    f"Available groups: {self.group_names}"
                )

        # Create a multidimensional dataset from the sub-group.
        # GDAL doesn't have a direct "group → dataset" conversion,
        # so we build a MEM MDIM dataset and copy the group's
        # arrays and dimensions into it.
        dst = gdal.GetDriverByName("MEM").CreateMultiDimensional("group")
        dst_rg = dst.GetRootGroup()

        # Copy dimensions from the sub-group
        dim_map = {}
        for gdal_dim in group.GetDimensions() or []:
            dim_name = gdal_dim.GetName()
            new_dim = dst_rg.CreateDimension(
                dim_name, gdal_dim.GetType(), None, gdal_dim.GetSize()
            )
            iv = gdal_dim.GetIndexingVariable()
            if iv is not None:
                coord_arr = dst_rg.CreateMDArray(
                    dim_name,
                    [new_dim],
                    gdal.ExtendedDataType.Create(numpy_to_gdal_dtype(iv.ReadAsArray())),
                )
                coord_arr.Write(iv.ReadAsArray())
                new_dim.SetIndexingVariable(coord_arr)
            dim_map[dim_name] = new_dim

        # Copy arrays from the sub-group
        for arr_name in group.GetMDArrayNames() or []:
            md_arr = group.OpenMDArray(arr_name)
            if md_arr is None:
                continue
            arr_dims = md_arr.GetDimensions()
            # Map source dims to destination dims (by name)
            new_dims = []
            for d in arr_dims:
                d_name = d.GetName()
                if d_name in dim_map:
                    new_dims.append(dim_map[d_name])
                else:
                    # Dimension from parent group — create locally
                    new_d = dst_rg.CreateDimension(
                        d_name, d.GetType(), None, d.GetSize()
                    )
                    dim_map[d_name] = new_d
                    new_dims.append(new_d)
            arr_data = md_arr.ReadAsArray()
            arr_dtype = gdal.ExtendedDataType.Create(numpy_to_gdal_dtype(arr_data))
            new_arr = dst_rg.CreateMDArray(arr_name, new_dims, arr_dtype)
            new_arr.Write(arr_data)
            ndv = md_arr.GetNoDataValue()
            if ndv is not None:
                new_arr.SetNoDataValueDouble(ndv)
            srs = md_arr.GetSpatialRef()
            if srs is not None:
                new_arr.SetSpatialRef(srs)

        result = NetCDF(dst)
        return result

    def get_variable_names(self) -> list[str]:
        """Return names of data variables, excluding dimension coordinates.

        Uses CF classification when metadata is cached (fast path).
        Otherwise queries `GetMDArrayNames()` and filters out dimension
        arrays and 0-dimensional scalar variables (grid_mapping etc.).
        In classic mode, parses subdataset metadata.

        Returns:
            list[str]: Variable names (e.g., `["temperature", "precipitation"]`).
        """
        if self._cached_meta_data is not None and self._cached_meta_data.cf is not None:
            variable_names = list(self._cached_meta_data.cf.data_variable_names)
        else:
            rg = self._raster.GetRootGroup()
            if rg is not None:
                all_names = rg.GetMDArrayNames()
                dim_names = {dim.GetName() for dim in rg.GetDimensions()}
                filtered = []
                for var in all_names:
                    if var in dim_names:
                        continue
                    md_arr = rg.OpenMDArray(var)
                    if md_arr is not None and len(md_arr.GetDimensions()) == 0:
                        continue
                    filtered.append(var)
                variable_names = filtered
            else:
                variable_names = [
                    var[1].split(" ")[1] for var in self._raster.GetSubDatasets()
                ]

        return variable_names

    def _read_md_array(self, variable_name: str):
        """Convert an MDArray to a classic GDAL dataset via AsClassicDataset.

        The last two dimensions become X (columns) and Y (rows); all
        remaining dimensions are flattened into bands.

        If the Y dimension is stored south-to-north (positive Y pixel
        size), it is reversed via `MDArray.GetView()` **before** the
        conversion. This is a lazy, zero-copy operation — GDAL handles
        the reversed indexing internally without reading the whole array.

        Returns a tuple `(classic_dataset, md_array, root_group)` so
        callers can keep the GDAL objects alive. `AsClassicDataset`
        returns a **view** whose C++ backing depends on the MDArray and
        root group; if the Python SWIG wrappers for those are garbage-
        collected the view becomes a dangling pointer (segfault on
        Windows).
        """
        rg = self._raster.GetRootGroup()
        md_arr = rg.OpenMDArray(variable_name)
        dtype = md_arr.GetDataType()
        dims = md_arr.GetDimensions()

        if len(dims) == 1:
            if dtype.GetClass() == gdal.GEDTC_STRING:
                return md_arr, md_arr, rg
            src = md_arr.AsClassicDataset(0, 1, rg)
            return src, md_arr, rg

        iXDim = len(dims) - 1
        iYDim = len(dims) - 2

        # First pass: check if Y orientation needs flipping.
        src = md_arr.AsClassicDataset(iXDim, iYDim, rg)

        if src.GetGeoTransform()[5] > 0:
            # Positive Y pixel size = south-to-north (NetCDF convention).
            # Use GetView to reverse the Y dimension — this is lazy and
            # zero-copy; GDAL handles reversed indexing internally.
            slices = ",".join("::-1" if i == iYDim else ":" for i in range(len(dims)))
            md_arr = md_arr.GetView(f"[{slices}]")
            src = md_arr.AsClassicDataset(iXDim, iYDim, rg)

        return src, md_arr, rg

    def get_variable(self, variable_name: str) -> NetCDF:
        """Extract a single variable as a classic-raster NetCDF object.

        The returned object carries origin metadata so modified data
        can be written back via `set_variable()`. Every non-spatial
        dim of the variable is tracked: for an N-D MDIM array
        `(d_0, ..., d_{n-1}, lat, lon)` the build path populates
        `_band_dim_names`, `_band_dim_values_map`, and
        `_band_dim_sizes` with all non-spatial dims in storage order,
        while the legacy `_band_dim_name` / `_band_dim_values` keep
        pointing at the first non-spatial dim so existing 3-D
        consumers see no change. 4-D+ files (e.g. CDS-Beta ERA5
        pressure-levels with `(valid_time, pressure_level, lat, lon)`)
        are addressable via `sel()` along any tracked band dim.

        Supports group-qualified names: `"forecast/temperature"` first
        navigates to the `forecast` sub-group, then extracts
        `temperature` from it.

        Args:
            variable_name: Name of the variable to extract. Use `/`
                to separate group path from variable name.

        Returns:
            NetCDF: A subset backed by a classic dataset where every
                non-spatial dimension is mapped onto bands. The new
                `_band_dim_names` / `_band_dim_values_map` /
                `_band_dim_sizes` fields drive `sel()`; the legacy
                `_band_dim_name` / `_band_dim_values` track the first
                non-spatial dim.

        Raises:
            ValueError: If `variable_name` is not present in the dataset.

        Notes:
            String-typed indexing variables (e.g. WRF's `Times` array)
            cannot be read via GDAL SWIG bindings; the build path falls
            back to integer indices `[0, 1, ..., size - 1]` for those
            dims.

        See Also:
            `sel`: subsets the result along any tracked band dim.
        """
        # Handle group-qualified names: "forecast/temperature"
        if "/" in variable_name:
            parts = variable_name.rsplit("/", 1)
            group_nc = self.get_group(parts[0])
            cube = group_nc.get_variable(parts[1])
            return cube  # single return below handles non-group path

        if variable_name not in self.variable_names:
            raise ValueError(
                f"{variable_name} is not a valid variable name in {self.variable_names}"
            )

        prefix = self.driver_type.upper()
        rg = self._raster.GetRootGroup()
        md_arr_ref = None
        rg_ref = None

        if prefix == "MEMORY" or rg is not None:
            src, md_arr_ref, rg_ref = self._read_md_array(variable_name)
            if isinstance(src, gdal.Dataset):
                cube = NetCDF(src)
                cube._is_md_array = True
                # _read_md_array uses GetView to flip the data lazily,
                # and GDAL usually corrects the geotransform. But when
                # the Y dimension has no indexing variable (e.g. WRF
                # "south_north"), the geotransform may still be wrong.
                # Fix it on the wrapper object (no data copy).
                gt = cube._geotransform
                if gt[5] > 0:
                    cube._geotransform = (
                        gt[0],
                        gt[1],
                        gt[2],
                        gt[3] + gt[5] * cube._rows,
                        gt[4],
                        -gt[5],
                    )
                    cube._cell_size = abs(gt[1])
            else:
                cube = src
            # Keep GDAL SWIG references alive — AsClassicDataset returns a
            # view whose C++ backing is owned by the MDArray/root group.
            # Without these the view becomes a dangling pointer on Windows.
            cube._gdal_md_arr_ref = md_arr_ref
            cube._gdal_rg_ref = rg_ref
        else:
            src = gdal.Open(f"{prefix}:{self.file_name}:{variable_name}")
            if src is None:
                raise ValueError(
                    f"Could not open variable '{variable_name}' via "
                    f"'{prefix}:{self.file_name}:{variable_name}'"
                )
            cube = NetCDF(src)
            cube._is_md_array = False

        cube._is_subset = True

        # --- RT-4: Track variable origin for round-trip ---
        cube._parent_nc = self
        cube._source_var_name = variable_name

        md_arr = md_arr_ref if rg is not None else None
        if rg is not None:
            if md_arr is not None:
                dims = md_arr.GetDimensions()
                cube._md_array_dims = [d.GetName() for d in dims]

                # Identify which dimensions became bands (all except X/Y).
                # Track every non-spatial dim so 4-D+ files (e.g. CDS-Beta
                # ERA5 pressure-levels: time, pressure_level, lat, lon)
                # remain addressable via sel(). Legacy fields point at the
                # primary (first) non-spatial dim so 3-D consumers see no
                # change.
                if len(dims) > 2:
                    spatial_indices = {len(dims) - 1, len(dims) - 2}
                    band_dims = [
                        d for i, d in enumerate(dims) if i not in spatial_indices
                    ]
                else:
                    band_dims = []

                if band_dims:
                    cube._band_dim_names = tuple(d.GetName() for d in band_dims)
                    cube._band_dim_sizes = tuple(d.GetSize() for d in band_dims)
                    cube._band_dim_values_map = {}
                    for d in band_dims:
                        iv = d.GetIndexingVariable()
                        try:
                            values = (
                                iv.ReadAsArray().tolist() if iv is not None else None
                            )
                        except RuntimeError:
                            # String-typed indexing variables (e.g. WRF
                            # "Times") can't be read via ReadAsArray in
                            # GDAL SWIG bindings — fall back to indices.
                            values = list(range(d.GetSize()))
                        cube._band_dim_values_map[d.GetName()] = values
                    cube._band_dim_name = cube._band_dim_names[0]
                    cube._band_dim_values = cube._band_dim_values_map[
                        cube._band_dim_name
                    ]
                else:
                    cube._band_dim_name = None
                    cube._band_dim_values = None
                    cube._band_dim_names = ()
                    cube._band_dim_values_map = {}
                    cube._band_dim_sizes = ()

                # Copy variable attributes
                cube._variable_attrs = {}
                try:
                    for attr in md_arr.GetAttributes():
                        cube._variable_attrs[attr.GetName()] = attr.Read()
                except Exception:
                    pass  # nosec B110

                # Scale/offset for CF packed data
                try:
                    cube._scale = md_arr.GetScale()
                    cube._offset = md_arr.GetOffset()
                except Exception:
                    cube._scale = None
                    cube._offset = None
            else:
                cube._md_array_dims = []
                cube._band_dim_name = None
                cube._band_dim_values = None
                cube._band_dim_names = ()
                cube._band_dim_values_map = {}
                cube._band_dim_sizes = ()
                cube._variable_attrs = {}
                cube._scale = None
                cube._offset = None
        else:
            cube._md_array_dims = []
            cube._band_dim_name = None
            cube._band_dim_values = None
            cube._band_dim_names = ()
            cube._band_dim_values_map = {}
            cube._band_dim_sizes = ()
            cube._variable_attrs = {}
            cube._scale = None
            cube._offset = None

        return cube

    def _replace_raster(self, new_raster: gdal.Dataset):
        """Replace the internal GDAL dataset, closing the old one if different.

        Re-derives all base-class state (geotransform, CRS, band info, etc.)
        without resetting NetCDF-specific flags (_is_md_array, _is_subset).
        """
        old = self._raster
        if old is not None and old is not new_raster:
            old.FlushCache()
        # RasterBase state
        self._raster = new_raster
        self._geotransform = new_raster.GetGeoTransform()
        self._cell_size = self._geotransform[1]
        self._file_name = new_raster.GetDescription()
        self._epsg = self._get_epsg()
        self._rows = new_raster.RasterYSize
        self._columns = new_raster.RasterXSize
        self._band_count = new_raster.RasterCount
        self._block_size = [
            new_raster.GetRasterBand(i).GetBlockSize()
            for i in range(1, self._band_count + 1)
        ]
        # Dataset state
        self._no_data_value = [
            new_raster.GetRasterBand(i).GetNoDataValue()
            for i in range(1, self._band_count + 1)
        ]
        self._band_names = self._get_band_names()
        self._band_units = [
            new_raster.GetRasterBand(i).GetUnitType()
            for i in range(1, self._band_count + 1)
        ]
        # Invalidate caches
        self._cached_variables = None
        self._cached_meta_data = None

    def _invalidate_caches(self):
        """Invalidate cached variables and metadata."""
        self._cached_variables = None
        self._cached_meta_data = None

    @property
    def is_subset(self) -> bool:
        """Whether this object represents a single-variable subset.

        Returns:
            bool: True if the dataset is a variable subset extracted
                via `get_variable()`.
        """
        return self._is_subset

    @property
    def is_md_array(self):
        """Whether this dataset was opened in multidimensional mode.

        Returns:
            bool: True if the dataset was opened via
                `gdal.OF_MULTIDIM_RASTER` and supports groups,
                MDArrays, and dimensions.
        """
        return self._is_md_array

    def to_file(  # type: ignore[override]
        self,
        path: str | Path,
        **kwargs: Any,
    ) -> None:
        """Save the dataset to disk.

        For `.nc` / `.nc4` files the full multidimensional structure
        (groups, dimensions, variables, attributes) is preserved via
        `CreateCopy` with the netCDF driver. For other extensions
        (e.g. `.tif`), the parent `Dataset.to_file` is used — but only
        on variable subsets, not on root MDIM containers.

        Args:
            path: Destination file path. The extension determines the
                output driver (`.nc` -> netCDF, `.tif` -> GeoTIFF, etc.).
            **kwargs: Forwarded to `Dataset.to_file` for non-NetCDF
                extensions (e.g. `tile_length`, `creation_options`).

        Raises:
            RuntimeError: If the netCDF `CreateCopy` call fails.
            ValueError: If a root MDIM container is saved to a non-NC
                extension (use `.nc` or extract a variable first).
        """
        path = Path(path)
        extension = path.suffix[1:].lower()
        if extension in ("nc", "nc4"):
            dst = gdal.GetDriverByName("netCDF").CreateCopy(str(path), self._raster, 0)
            if dst is None:
                raise RuntimeError(f"Failed to save NetCDF to {path}")
            dst.FlushCache()
            dst = None
        else:
            if self._is_md_array and not self._is_subset:
                raise ValueError(
                    "Cannot save a multidimensional NetCDF container as "
                    f"'{extension}'. Use .nc extension or extract a "
                    "variable first with .get_variable()."
                )
            super().to_file(path, **kwargs)

    def copy(self, path: str | Path | None = None) -> NetCDF:
        """Create a deep copy of this NetCDF dataset.

        Args:
            path: Destination file path. If None, the copy is created
                in memory using the MEM driver. Defaults to None.

        Returns:
            NetCDF: A new NetCDF object with copied data.

        Raises:
            RuntimeError: If `CreateCopy` fails.
        """
        if path is None:
            path = ""
            driver = "MEM"
        else:
            driver = "netCDF"

        src = gdal.GetDriverByName(driver).CreateCopy(str(path), self._raster)
        if src is None:
            raise RuntimeError(f"Failed to copy NetCDF dataset to '{path}'")
        return NetCDF(src, access="write")

    @staticmethod
    def _create_dimension(
        group: gdal.Group,
        dim_name: str,
        dtype,
        values: np.ndarray,
        dim_type=None,
        set_indexing: bool = True,
        is_geographic: bool = True,
    ) -> gdal.Dimension:
        """Create a dimension with its coordinate array and CF attributes.

        Args:
            group: GDAL root group.
            dim_name: Dimension name.
            dtype: GDAL ExtendedDataType.
            values: Coordinate values.
            dim_type: GDAL dimension type constant.
            set_indexing: If True, call SetIndexingVariable (works
                on MEM driver). If False, skip it (required for
                netCDF driver which doesn't support it).
            is_geographic: If True, coordinate units are degrees.
                If False, units are metres. Defaults to True.

        Returns:
            gdal.Dimension
        """
        dim = group.CreateDimension(dim_name, dim_type, None, values.shape[0])
        coord_arr = group.CreateMDArray(dim_name, [dim], dtype)
        coord_arr.Write(values)
        if set_indexing:
            dim.SetIndexingVariable(coord_arr)
        cf_attrs = build_coordinate_attrs(dim_name, is_geographic)
        if cf_attrs:
            write_attributes_to_md_array(coord_arr, cf_attrs)
        return dim

    @staticmethod
    def create_main_dimension(
        group: gdal.Group, dim_name: str, dtype: int, values: np.ndarray
    ) -> gdal.Dimension:
        """Create a NetCDF dimension with an indexing variable.

        The dimension type is inferred from `dim_name`:
        `y`/`lat`/`latitude` -> horizontal Y,
        `x`/`lon`/`longitude` -> horizontal X,
        `bands`/`time` -> temporal.

        The dimension is registered in the group together with a
        matching MDArray that stores the coordinate values.

        Args:
            group: Root group (or sub-group) of the multidimensional
                dataset.
            dim_name: Name of the dimension to create.
            dtype: GDAL `ExtendedDataType` for the indexing variable.
            values: Coordinate values for the dimension.

        Returns:
            gdal.Dimension: The newly created dimension.
        """
        if dim_name in ["y", "lat", "latitude"]:
            dim_type = gdal.DIM_TYPE_HORIZONTAL_Y
        elif dim_name in ["x", "lon", "longitude"]:
            dim_type = gdal.DIM_TYPE_HORIZONTAL_X
        elif dim_name in ["bands", "time"]:
            dim_type = gdal.DIM_TYPE_TEMPORAL
        else:
            dim_type = None
        dim = group.CreateDimension(dim_name, dim_type, None, values.shape[0])
        x_values = group.CreateMDArray(dim_name, [dim], dtype)
        x_values.Write(values)
        dim.SetIndexingVariable(x_values)
        return dim

    @classmethod
    def create_from_array(  # type: ignore[override]
        cls,
        arr: np.ndarray,
        geo: tuple[float, float, float, float, float, float] | None = None,
        epsg: str | int = 4326,
        no_data_value: Any | list = DEFAULT_NO_DATA_VALUE,
        path: str | Path | None = None,
        variable_name: str | None = None,
        extra_dim_name: str = "time",
        extra_dim_values: list | None = None,
        extra_dims: list[tuple[str, list | None]] | None = None,
        top_left_corner: tuple[float, float] | None = None,
        cell_size: int | float | None = None,
        chunk_sizes: tuple | list | None = None,
        compression: str | None = None,
        compression_level: int | None = None,
        title: str | None = None,
        institution: str | None = None,
        source: str | None = None,
        history: str | None = None,
    ) -> NetCDF:
        """Create a NetCDF dataset from a NumPy array and geotransform.

        For 3-D arrays the first axis is treated as a non-spatial
        dimension (time, level, depth, etc.) whose name and coordinate
        values are controlled by `extra_dim_name` and
        `extra_dim_values`.

        For 4-D+ arrays — e.g. `(time, level, lat, lon)` — pass
        `extra_dims=[("time", time_values), ("pressure_level", level_values)]`
        in storage order. Every non-spatial dimension is then
        materialised on the resulting NetCDF, preserving the full
        layout. `extra_dims` and the legacy single-dim params
        (`extra_dim_name` / `extra_dim_values`) are mutually exclusive.

        The driver is inferred from `path`: if `path` is `None`
        the dataset is created in memory (MEM driver); if a path is
        provided the netCDF driver writes to disk.

        Args:
            arr: 2-D `(rows, cols)`, 3-D `(extra_dim, rows, cols)`, or
                4-D+ `(d_0, ..., d_{n-1}, rows, cols)` NumPy array.
            geo: Geotransform tuple `(x_min, pixel_size, rotation,
                y_max, rotation, pixel_size)`.
            epsg: EPSG code for the spatial reference.
                Defaults to 4326.
            no_data_value: Sentinel value for cells outside the
                domain. Defaults to DEFAULT_NO_DATA_VALUE.
            path: Output file path. If `None`, the dataset is
                created in memory. Defaults to None.
            variable_name: Name of the data variable in the NetCDF
                file. Defaults to `"data"`.
            extra_dim_name: Legacy single-dim path. Name of the
                non-spatial dimension for 3-D arrays (e.g. `"time"`,
                `"level"`, `"depth"`). Ignored for 2-D arrays.
                Mutually exclusive with `extra_dims`. Defaults to
                `"time"`.
            extra_dim_values: Legacy single-dim path. Coordinate values
                for the non-spatial dimension. Must have length
                `arr.shape[0]` for 3-D arrays. Mutually exclusive with
                `extra_dims`. Defaults to `[0, 1, 2,..., N-1]`.
            extra_dims: Multi-dim path. Ordered list of
                `(dim_name, values)` pairs describing every non-spatial
                dimension in storage order. `len(extra_dims)` must
                equal `arr.ndim - 2`. Each `values` is either a list of
                length `arr.shape[i]` or `None` (use integer indices
                `[0, 1, ..., size - 1]`). Mutually exclusive with
                `extra_dim_name` / `extra_dim_values`.
            top_left_corner: `(x, y)` of the top-left corner. Used
                with `cell_size` to build `geo` when `geo` is
                not provided. Defaults to None.
            cell_size: Pixel size. Used with `top_left_corner` to
                build `geo`. Defaults to None.
            chunk_sizes: Chunk sizes for the data variable as a tuple
                matching the array dimensions (e.g. `(1, 256, 256)`
                for 3-D). Only effective when writing to disk.
                Defaults to None (GDAL default chunking).
            compression: Compression algorithm name (`"DEFLATE"`,
                `"ZSTD"`, etc.). Only effective when writing to
                disk. Defaults to None (no compression).
            compression_level: Compression level (e.g. 1-9 for
                DEFLATE). Defaults to None (GDAL default).
            title: CF global attribute `title`. Short
                description of the dataset. Defaults to None.
            institution: CF global attribute `institution`.
                Where the data was produced. Defaults to None.
            source: CF global attribute `source`. How the
                data was produced. Defaults to None.
            history: CF global attribute `history`. Audit
                trail of processing steps. Defaults to None.

        Returns:
            NetCDF: The newly created NetCDF dataset.
        """
        if geo is None and top_left_corner is not None and cell_size is not None:
            geo = (
                top_left_corner[0],
                cell_size,
                0,
                top_left_corner[1],
                0,
                -cell_size,
            )
        if geo is None:
            raise ValueError(
                "Either 'geo' or both 'top_left_corner' and "
                "'cell_size' must be provided."
            )

        rows = int(arr.shape[-2]) if arr.ndim >= 2 else 0
        cols = int(arr.shape[-1]) if arr.ndim >= 2 else 0

        # Reconcile the legacy single-dim params with the new
        # `extra_dims` list-of-pairs API. Result is a normalised list
        # of (name, values) pairs whose length equals
        # `max(arr.ndim - 2, 0)`.
        resolved_extra_dims = cls._resolve_extra_dims(
            arr=arr,
            extra_dim_name=extra_dim_name,
            extra_dim_values=extra_dim_values,
            extra_dims=extra_dims,
        )

        if arr.ndim == 3:
            DimMetaData(
                name=resolved_extra_dims[0][0],
                size=arr.shape[0],
                values=resolved_extra_dims[0][1],
            )

        if variable_name is None:
            variable_name = "data"

        dst_ds = cls._create_netcdf_from_array(
            arr,
            variable_name,
            cols,
            rows,
            resolved_extra_dims,
            geo,
            epsg,
            no_data_value,
            path=path,
            chunk_sizes=chunk_sizes,
            compression=compression,
            compression_level=compression_level,
            title=title,
            institution=institution,
            source=source,
            history=history,
        )
        result = cls(dst_ds)

        return result

    @staticmethod
    def _resolve_extra_dims(
        arr: np.ndarray,
        extra_dim_name: str,
        extra_dim_values: list | None,
        extra_dims: list[tuple[str, list | None]] | None,
    ) -> list[tuple[str, list]]:
        """Normalise the legacy + new extra-dim API into a single list.

        Returns an ordered list of `(dim_name, values)` pairs whose
        length equals `max(arr.ndim - 2, 0)`. Each `values` entry is a
        concrete Python list (never `None` — defaults are filled with
        integer indices `[0, 1, ..., size - 1]`).

        Args:
            arr: The data array; only its `ndim` and `shape` are read.
            extra_dim_name: Legacy single-dim name (caller-default
                `"time"`).
            extra_dim_values: Legacy single-dim values, or `None`.
            extra_dims: New multi-dim list of `(name, values)` pairs,
                or `None` for the legacy path.

        Returns:
            list[tuple[str, list]]: Normalised dim specs.

        Raises:
            ValueError: If `extra_dims` is supplied alongside
                `extra_dim_values`; if `extra_dims` length doesn't
                match `arr.ndim - 2`; or if any per-dim `values`
                length doesn't match the corresponding `arr.shape[i]`.
        """
        expected = max(arr.ndim - 2, 0)
        if extra_dims is not None:
            if extra_dim_values is not None:
                raise ValueError(
                    "extra_dims and extra_dim_values are mutually "
                    "exclusive. Use one or the other."
                )
            if len(extra_dims) != expected:
                raise ValueError(
                    f"extra_dims must have {expected} entries for a "
                    f"{arr.ndim}-D array, got {len(extra_dims)}."
                )
            resolved: list[tuple[str, list]] = []
            for i, entry in enumerate(extra_dims):
                name, values = entry
                if values is None:
                    values = list(range(int(arr.shape[i])))
                elif len(values) != int(arr.shape[i]):
                    raise ValueError(
                        f"extra_dims[{i}] values length {len(values)} "
                        f"does not match arr.shape[{i}]={arr.shape[i]}."
                    )
                else:
                    values = list(values)
                resolved.append((name, values))
            return resolved
        if expected == 0:
            return []
        if expected == 1:
            values = (
                list(extra_dim_values)
                if extra_dim_values is not None
                else list(range(int(arr.shape[0])))
            )
            return [(extra_dim_name, values)]
        # 4-D+ array with no `extra_dims` and no legacy values: fall
        # back to anonymous dim names and integer indices so the array
        # can still be written.
        return [(f"dim_{i}", list(range(int(arr.shape[i])))) for i in range(expected)]

    @staticmethod
    def _create_netcdf_from_array(
        arr: np.ndarray,
        variable_name: str,
        cols: int,
        rows: int,
        extra_dims: list[tuple[str, list]] | None = None,
        geo: tuple[float, float, float, float, float, float] | None = None,
        epsg: str | int | None = None,
        no_data_value: Any | list = DEFAULT_NO_DATA_VALUE,
        path: str | Path | None = None,
        chunk_sizes: tuple | list | None = None,
        compression: str | None = None,
        compression_level: int | None = None,
        title: str | None = None,
        institution: str | None = None,
        source: str | None = None,
        history: str | None = None,
    ) -> gdal.Dataset:
        """Build a multidimensional GDAL dataset from an array.

        The driver is inferred from `path`: `None` -> MEM (in-memory),
        otherwise the netCDF driver writes to disk.

        Args:
            arr: 2-D `(rows, cols)`, 3-D `(extra_dim, rows, cols)`, or
                4-D+ `(d_0, ..., d_{n-1}, rows, cols)` NumPy array.
            variable_name: Name of the data variable.
            cols: Number of columns.
            rows: Number of rows.
            extra_dims: Ordered list of `(dim_name, values)` pairs for
                every non-spatial dimension. Length matches
                `arr.ndim - 2`. Empty list for 2-D arrays. Pre-resolved
                by `_resolve_extra_dims` so each `values` entry is a
                concrete list.
            geo: Geotransform tuple. Defaults to None.
            epsg: EPSG code. Defaults to None.
            no_data_value: No-data sentinel. Defaults to
                DEFAULT_NO_DATA_VALUE.
            path: Output file path. If None, created in memory.
                Defaults to None.
            chunk_sizes: Chunk sizes for the variable. Defaults to
                None.
            compression: Compression algorithm. Defaults to None.
            compression_level: Compression level. Defaults to None.
            title: CF global attribute `title`. Defaults to None.
            institution: CF global attribute `institution`.
                Defaults to None.
            source: CF global attribute `source`.
                Defaults to None.
            history: CF global attribute `history`.
                Defaults to None.

        Returns:
            gdal.Dataset: The created multidimensional GDAL dataset.
        """
        if variable_name is None:
            raise ValueError("Variable_name cannot be None")
        if geo is None:
            raise ValueError("geo cannot be None")

        if extra_dims is None:
            extra_dims = []
        dtype = gdal.ExtendedDataType.Create(numpy_to_gdal_dtype(arr))
        x_dim_values = NetCDF.get_x_lon_dimension_array(geo[0], geo[1], cols)
        y_dim_values = NetCDF.get_y_lat_dimension_array(geo[3], geo[1], rows)

        if path is not None:
            driver_type = "netCDF"
        else:
            driver_type = "MEM"
            path = "netcdf"

        src = gdal.GetDriverByName(driver_type).CreateMultiDimensional(str(path))
        rg = src.GetRootGroup()

        # Set CF global attributes on root group
        cf_global = {"Conventions": "CF-1.8"}
        if title is not None:
            cf_global["title"] = title
        if institution is not None:
            cf_global["institution"] = institution
        if source is not None:
            cf_global["source"] = source
        if history is not None:
            cf_global["history"] = history
        write_global_attributes(rg, cf_global)

        # Build creation options for chunking and compression
        create_options = []
        if chunk_sizes is not None:
            create_options.append(f"BLOCKSIZE={','.join(str(s) for s in chunk_sizes)}")
        if compression is not None:
            create_options.append(f"COMPRESS={compression}")
        if compression_level is not None:
            create_options.append(f"ZLEVEL={compression_level}")

        # netCDF driver doesn't support SetIndexingVariable — create
        # dimension arrays manually without linking them.
        use_set_indexing = driver_type == "MEM"

        # Determine if CRS is geographic (lon/lat) or projected (m)
        is_geographic = True
        if epsg is not None:
            srs_check = sr_from_epsg(int(epsg))
            is_geographic = srs_check.IsGeographic() == 1

        dim_x = NetCDF._create_dimension(
            rg,
            "x",
            dtype,
            np.array(x_dim_values),
            gdal.DIM_TYPE_HORIZONTAL_X,
            use_set_indexing,
            is_geographic=is_geographic,
        )
        dim_y = NetCDF._create_dimension(
            rg,
            "y",
            dtype,
            np.array(y_dim_values),
            gdal.DIM_TYPE_HORIZONTAL_Y,
            use_set_indexing,
            is_geographic=is_geographic,
        )

        # Build one GDAL dimension per non-spatial axis in storage
        # order, then create the MDArray with `(*extra_dims, dim_y,
        # dim_x)`. This generalises the previous 3-D-only branch: a
        # 2-D array yields zero extra dims; a 3-D array yields one;
        # 4-D+ yields the full set. The first non-spatial dim is
        # tagged `DIM_TYPE_TEMPORAL` (matching the legacy 3-D path),
        # and any additional dims are left untagged so the netCDF
        # driver doesn't second-guess their semantics.
        gdal_extra_dims = []
        for i, (dim_name, dim_values) in enumerate(extra_dims):
            dim_type = gdal.DIM_TYPE_TEMPORAL if i == 0 else None
            gd_dim = NetCDF._create_dimension(
                rg,
                dim_name,
                dtype,
                np.array(dim_values),
                dim_type,
                use_set_indexing,
            )
            gdal_extra_dims.append(gd_dim)
        md_arr = rg.CreateMDArray(
            variable_name,
            [*gdal_extra_dims, dim_y, dim_x],
            dtype,
            create_options if create_options else [],
        )

        # Set metadata BEFORE writing data — netCDF driver requires
        # nodata to be set before the first Write call.
        # Tolerate both scalar and per-band sequence inputs since
        # callers often pass `Dataset.no_data_value` (now a tuple)
        # straight through.
        ndv_scalar = (
            no_data_value[0]
            if isinstance(no_data_value, (list, tuple)) and no_data_value
            else no_data_value
        )
        if ndv_scalar is not None:
            md_arr.SetNoDataValueDouble(float(ndv_scalar))
        if epsg is None:
            raise ValueError("epsg cannot be None")
        srse = sr_from_epsg(int(epsg))
        md_arr.SetSpatialRef(srse)
        md_arr.Write(arr)

        # Create CF grid_mapping variable (MEM driver only — the netCDF
        # driver creates its own via SetSpatialRef above). Use
        # "spatial_ref" as the variable name to avoid collision with
        # GDAL's automatic "crs" during CreateCopy to netCDF.
        if driver_type == "MEM":
            gm_name, gm_params = srs_to_grid_mapping(srse)
            gm_dtype = gdal.ExtendedDataType.Create(gdal.GDT_Int32)
            gm_var_name = "spatial_ref"
            crs_arr = rg.CreateMDArray(gm_var_name, [], gm_dtype)
            crs_arr.Write(np.array(0, dtype=np.int32))
            gm_params["grid_mapping_name"] = gm_name
            write_attributes_to_md_array(crs_arr, gm_params)
            write_attributes_to_md_array(md_arr, {"grid_mapping": gm_var_name})

        return src

    @staticmethod
    def _add_md_array_to_group(dst_group, var_name, src_mdarray):
        """Copy an MDArray from one group to another, preserving data and metadata."""
        src_dims = src_mdarray.GetDimensions()
        arr = src_mdarray.ReadAsArray()
        dtype = gdal.ExtendedDataType.Create(numpy_to_gdal_dtype(arr))
        new_md_array = dst_group.CreateMDArray(var_name, src_dims, dtype)
        new_md_array.Write(arr)
        ndv = src_mdarray.GetNoDataValue()
        if ndv is not None:
            try:
                new_md_array.SetNoDataValueDouble(ndv)
            except Exception:
                pass

        new_md_array.SetSpatialRef(src_mdarray.GetSpatialRef())

    @staticmethod
    def _get_or_create_dimension(
        rg: gdal.Group, dim_name: str, values: np.ndarray, dtype, dim_type=None
    ) -> gdal.Dimension:
        """Reuse an existing dimension or create a new one.

        If a dimension with `dim_name` already exists in the root group
        and has the same size as `values`, it is returned directly.
        On size mismatch, a new dimension with a `_{size}` suffix is
        created to avoid conflicts.

        Args:
            rg: The root group of the multidimensional dataset.
            dim_name: Name of the dimension (e.g., `"x"`, `"time"`).
            values: Coordinate values for this dimension.
            dtype: GDAL `ExtendedDataType` for the indexing variable.
            dim_type: GDAL dimension type constant (e.g.,
                `gdal.DIM_TYPE_HORIZONTAL_X`). Defaults to None.

        Returns:
            gdal.Dimension: The reused or newly created dimension.
        """
        for existing_dim in rg.GetDimensions() or []:
            if existing_dim.GetName() == dim_name:
                if existing_dim.GetSize() == len(values):
                    return existing_dim
                # Size mismatch — need a new dimension with a unique name
                dim_name = f"{dim_name}_{len(values)}"
                break

        return NetCDF.create_main_dimension(rg, dim_name, dtype, values)

    @property
    def global_attributes(self) -> dict[str, Any]:
        """Global attributes from the root group.

        Returns a live dict read from the GDAL root group each time.
        For MDIM mode, reads from the root group's attributes.
        For classic mode, reads from GDAL's `GetMetadata()`.

        Returns:
            dict[str, Any]: Key-value mapping of global attributes.
        """
        rg = self._raster.GetRootGroup()
        result = {}
        if rg is not None:
            try:
                for attr in rg.GetAttributes():
                    result[attr.GetName()] = attr.Read()
            except Exception:
                pass
        else:
            result = dict(self._raster.GetMetadata())
        return result

    def set_global_attribute(self, name: str, value: Any):
        """Set a global attribute on the root group.

        Creates or updates a single attribute on the root group.

        Args:
            name: Attribute name (e.g. `"history"`,
                `"Conventions"`).
            value: Attribute value. Supports str, int, float.

        Raises:
            ValueError: If the dataset has no root group
                (not opened in MDIM mode).
        """
        rg = self._raster.GetRootGroup()
        if rg is None:
            raise ValueError(
                "set_global_attribute requires a multidimensional "
                "container. Open the file with "
                "open_as_multi_dimensional=True."
            )
        # Delete existing attribute if present (GDAL raises on duplicate)
        try:
            rg.DeleteAttribute(name)
        except Exception:
            pass
        if isinstance(value, str):
            attr = rg.CreateAttribute(name, [], gdal.ExtendedDataType.CreateString())
        elif isinstance(value, float):
            attr = rg.CreateAttribute(
                name, [], gdal.ExtendedDataType.Create(gdal.GDT_Float64)
            )
        elif isinstance(value, int):
            attr = rg.CreateAttribute(
                name, [], gdal.ExtendedDataType.Create(gdal.GDT_Int32)
            )
        else:
            attr = rg.CreateAttribute(name, [], gdal.ExtendedDataType.CreateString())
            value = str(value)
        attr.Write(value)
        self._invalidate_caches()

    def delete_global_attribute(self, name: str):
        """Delete a global attribute from the root group.

        If the attribute does not exist, the call is silently ignored.

        Args:
            name: Attribute name to delete.

        Raises:
            ValueError: If the dataset has no root group.
        """
        rg = self._raster.GetRootGroup()
        if rg is None:
            raise ValueError(
                "delete_global_attribute requires a multidimensional " "container."
            )
        try:
            rg.DeleteAttribute(name)
        except Exception:
            pass  # attribute may not exist — silently ignored
        self._invalidate_caches()

    def set_variable(
        self,
        variable_name: str,
        dataset: Dataset,
        band_dim_name: str | None = None,
        band_dim_values: list | None = None,
        attrs: dict | None = None,
    ):
        """Write a classic Dataset back as an MDArray variable in this container.

        This is the reverse of `get_variable()`. After performing GIS
        operations (crop, reproject, etc.) on a variable subset, use this
        method to store the result back into the NetCDF container.

        Args:
            variable_name: Name for the variable in this container. If a
                variable with this name already exists it is replaced.
            dataset: A classic raster dataset, typically the result of a
                GIS operation on a variable obtained via `get_variable()`.
            band_dim_name: Name of the dimension that maps to bands
                (e.g. `"time"`, `"bands"`). Auto-detected from the
                dataset's `_band_dim_name` attribute when available.
                Defaults to None.
            band_dim_values: Coordinate values for the band dimension.
                Auto-detected from `_band_dim_values` when available.
                Defaults to None.
            attrs: Variable attributes to set (e.g. `{"units": "K"}`).
                Auto-detected from `_variable_attrs` when available.
                Defaults to None.

        Raises:
            ValueError: If called on a dataset without a root group
                (not opened in multidimensional mode).
        """
        rg = self._raster.GetRootGroup()
        if rg is None:
            raise ValueError(
                "set_variable requires a multidimensional container. "
                "Open the file with open_as_multi_dimensional=True."
            )

        # Auto-detect from tracked origin metadata (RT-4)
        if band_dim_name is None and hasattr(dataset, "_band_dim_name"):
            band_dim_name = dataset._band_dim_name
        if band_dim_values is None and hasattr(dataset, "_band_dim_values"):
            band_dim_values = dataset._band_dim_values
        if attrs is None and hasattr(dataset, "_variable_attrs"):
            attrs = dataset._variable_attrs
        # Multi-band-dim metadata: every non-spatial dim and its
        # coords / sizes. Populated by `get_variable` for 4-D+
        # variables. When present, the rebuild materialises each dim
        # separately instead of flattening to a single bands axis.
        band_dim_names: tuple[str, ...] = tuple(
            getattr(dataset, "_band_dim_names", ()) or ()
        )
        band_dim_sizes: tuple[int, ...] = tuple(
            getattr(dataset, "_band_dim_sizes", ()) or ()
        )
        band_dim_values_map: dict = dict(
            getattr(dataset, "_band_dim_values_map", {}) or {}
        )

        # Delete existing variable if present
        if variable_name in self.variable_names:
            rg.DeleteMDArray(variable_name)

        # Read data from the classic dataset
        arr = dataset.read_array()
        gt: tuple[float, float, float, float, float, float] = dataset.geotransform
        data_dtype = gdal.ExtendedDataType.Create(numpy_to_gdal_dtype(arr))
        # Coordinate dimensions must always be float64 to avoid truncation
        # when the data array is integer (e.g., classified rasters).
        coord_dtype = gdal.ExtendedDataType.Create(gdal.GDT_Float64)

        # Build spatial dimensions from the geotransform
        x_values = np.array(
            NetCDF.get_x_lon_dimension_array(gt[0], gt[1], dataset.columns)
        )
        y_values = np.array(
            NetCDF.get_y_lat_dimension_array(gt[3], abs(gt[5]), dataset.rows)
        )
        dim_x = self._get_or_create_dimension(
            rg, "x", x_values, coord_dtype, gdal.DIM_TYPE_HORIZONTAL_X
        )
        dim_y = self._get_or_create_dimension(
            rg, "y", y_values, coord_dtype, gdal.DIM_TYPE_HORIZONTAL_Y
        )

        # 4-D+ rebuild: reshape the flattened bands back into the
        # cached storage order, then create one GDAL dimension per
        # non-spatial axis. Falls through to the legacy single-dim
        # path when only one (or zero) band dim is tracked.
        if len(band_dim_names) > 1 and arr.ndim == 3 and band_dim_sizes:
            arr = arr.reshape(*band_dim_sizes, arr.shape[-2], arr.shape[-1])
            gdal_band_dims = []
            for i, dim_name in enumerate(band_dim_names):
                values = band_dim_values_map.get(dim_name)
                if values is None:
                    values = list(range(int(band_dim_sizes[i])))
                gdal_band_dims.append(
                    self._get_or_create_dimension(
                        rg,
                        dim_name,
                        np.array(values, dtype=np.float64),
                        coord_dtype,
                        gdal.DIM_TYPE_TEMPORAL if i == 0 else None,
                    )
                )
            md_arr = rg.CreateMDArray(
                variable_name, [*gdal_band_dims, dim_y, dim_x], data_dtype
            )
        elif arr.ndim == 3:
            if band_dim_name is None:
                band_dim_name = "bands"
            if band_dim_values is None:
                band_dim_values = list(range(arr.shape[0]))
            dim_band = self._get_or_create_dimension(
                rg,
                band_dim_name,
                np.array(band_dim_values, dtype=np.float64),
                coord_dtype,
                gdal.DIM_TYPE_TEMPORAL,
            )
            md_arr = rg.CreateMDArray(
                variable_name, [dim_band, dim_y, dim_x], data_dtype
            )
        else:
            md_arr = rg.CreateMDArray(variable_name, [dim_y, dim_x], data_dtype)

        # Write array data
        md_arr.Write(arr)

        # Set spatial reference (RT-7: attribute copying)
        if dataset.epsg:
            srs = sr_from_epsg(dataset.epsg)
            md_arr.SetSpatialRef(srs)

        # Set no-data value
        if dataset.no_data_value and dataset.no_data_value[0] is not None:
            try:
                md_arr.SetNoDataValueDouble(float(dataset.no_data_value[0]))
            except Exception:
                pass  # nosec B110

        # Set variable attributes (RT-7)
        if attrs:
            write_attributes_to_md_array(md_arr, attrs)

        self._invalidate_caches()

    def crop_variable(
        self, variable_name: str, mask: Any, touch: bool = True
    ) -> NetCDF:
        """Crop a single variable and store the result back.

        Convenience method that combines `get_variable` → `crop`
        → `set_variable` in one call.

        Args:
            variable_name: Name of the variable to crop.
            mask: GeoDataFrame with polygon geometry, or a Dataset
                to use as a spatial mask.
            touch: If True, include cells touching the mask boundary.
                Defaults to True.

        Returns:
            NetCDF: This container (modified in-place).
        """
        var = self.get_variable(variable_name)
        cropped = var.crop(mask, touch=touch)
        self.set_variable(variable_name, cropped)
        return self

    def reproject_variable(
        self, variable_name: str, to_epsg: int, method: str = "nearest neighbor"
    ) -> NetCDF:
        """Reproject a single variable and store the result back.

        Convenience method that combines `get_variable` → `to_crs`
        → `set_variable` in one call.

        Args:
            variable_name: Name of the variable to reproject.
            to_epsg: Target EPSG code (e.g. 4326, 32637).
            method: Resampling method. Defaults to
                `"nearest neighbor"`.

        Returns:
            NetCDF: This container (modified in-place).
        """
        var = self.get_variable(variable_name)
        reprojected = var.to_crs(to_epsg, method=method)
        # to_crs returns a VRT-backed dataset — materialize it into
        # a MEM dataset so the data survives after the VRT source
        # (the variable subset) is garbage collected.
        arr = reprojected.read_array()
        no_data_value = reprojected.no_data_value
        ndv_scalar = (
            no_data_value[0]
            if isinstance(no_data_value, (list, tuple)) and no_data_value
            else no_data_value
        )
        materialized = Dataset.create_from_array(
            arr,
            geo=reprojected.geotransform,
            epsg=reprojected.epsg,
            no_data_value=ndv_scalar,
        )
        materialized._band_dim_name = var._band_dim_name
        materialized._band_dim_values = var._band_dim_values
        materialized._band_dim_names = var._band_dim_names
        materialized._band_dim_values_map = dict(var._band_dim_values_map)
        materialized._band_dim_sizes = var._band_dim_sizes
        materialized._variable_attrs = var._variable_attrs
        self.set_variable(variable_name, materialized)
        return self

    def resample_variable(
        self,
        variable_name: str,
        cell_size: int | float,
        method: str = "nearest neighbor",
    ) -> NetCDF:
        """Resample a single variable and store the result back.

        Convenience method that combines `get_variable` → `resample`
        → `set_variable` in one call.

        Args:
            variable_name: Name of the variable to resample.
            cell_size: New cell size.
            method: Resampling method. Defaults to
                `"nearest neighbor"`.

        Returns:
            NetCDF: This container (modified in-place).
        """
        var = self.get_variable(variable_name)
        resampled = var.resample(cell_size, method=method)
        self.set_variable(variable_name, resampled)
        return self

    def add_variable(self, dataset: Dataset | NetCDF, variable_name: str | None = None):
        """Copy MDArray variables from another NetCDF into this container.

        Args:
            dataset: Source NetCDF dataset whose variables will be copied.
                Must have a root group (opened in MDIM mode).
            variable_name: Specific variable name(s) to copy. If None, all
                variables from the source are copied. If a variable with
                the same name already exists, it is renamed with a
                `"-new"` suffix.
        """
        src_rg = self._raster.GetRootGroup()
        var_rg = dataset._raster.GetRootGroup()
        names_to_copy: list[str]
        if variable_name is not None:
            names_to_copy = [variable_name]
        elif isinstance(dataset, NetCDF):
            names_to_copy = dataset.variable_names
        else:
            names_to_copy = []

        for var in names_to_copy:
            md_arr = var_rg.OpenMDArray(var)
            # If the variable name already exists in the destination dataset,
            # use a suffixed name to avoid overwriting the original.
            target_name = f"{var}-new" if var in self.variable_names else var
            self._add_md_array_to_group(src_rg, target_name, md_arr)
        self._invalidate_caches()

    def remove_variable(self, variable_name: str):
        """Delete a variable from this container.

        If the dataset is backed by a file on disk, a MEM copy is made first
        so that the on-disk file is not modified. The internal raster
        reference is replaced with the modified copy.

        Args:
            variable_name: Name of the variable to remove.
        """
        if self.driver_type == "memory":
            dst = self._raster
        else:
            dst = gdal.GetDriverByName("MEM").CreateCopy("", self._raster, 0)

        rg = dst.GetRootGroup()
        rg.DeleteMDArray(variable_name)

        self._replace_raster(dst)

    def rename_variable(self, old_name: str, new_name: str):
        """Rename a variable in this container.

        Internally extracts the variable data and metadata, creates
        a new variable with the new name, and removes the old one.

        Args:
            old_name: Current name of the variable.
            new_name: Desired new name.

        Raises:
            ValueError: If `old_name` doesn't exist or `new_name`
                already exists.
        """
        if old_name not in self.variable_names:
            raise ValueError(
                f"Variable '{old_name}' not found. " f"Available: {self.variable_names}"
            )
        if new_name in self.variable_names:
            raise ValueError(f"Variable '{new_name}' already exists.")

        rg = self._raster.GetRootGroup()
        if rg is None:
            raise ValueError("rename_variable requires a multidimensional container.")

        md_arr = rg.OpenMDArray(old_name)
        self._add_md_array_to_group(rg, new_name, md_arr)
        rg.DeleteMDArray(old_name)
        self._invalidate_caches()

    def to_xarray(self) -> Any:
        """Convert this NetCDF container to an `xarray.Dataset`.

        Builds an in-memory `xarray.Dataset` that mirrors the
        variables, coordinates, dimensions, and global attributes of
        this pyramids NetCDF container.

        The entire conversion goes through GDAL's Multidimensional
        API — the same reader the rest of pyramids' NetCDF code uses.
        No xarray engine plugin (`netcdf4`, `h5netcdf`,
        `scipy.io.netcdf`) is involved, so the `[xarray]` extra
        does not need to pull a NetCDF backend: pyramids is the
        backend. The returned `xr.Dataset` holds already-
        materialised numpy arrays; for lazy reads use
        :meth:`read_array(chunks=...)` and wrap the result in
        :class:`xarray.DataArray` yourself.

        Requires the optional `xarray` package. Install with one of:

        - PyPI: ``pip install 'pyramids-gis[xarray]'``
        - conda-forge: ``conda install -c conda-forge pyramids-xarray``

        Returns:
            xarray.Dataset: An xarray Dataset with the same
            variables, coordinates, and global attributes.

        Raises:
            pyramids.base._errors.OptionalPackageDoesNotExist:
                If `xarray` is not installed.
            ValueError: If the underlying GDAL handle is not a
                multidimensional container (open the file with
                `open_as_multi_dimensional=True`).

        Examples:
            Convert a pyramids NetCDF to xarray::

                nc = NetCDF.read_file("temperature.nc")
                ds = nc.to_xarray()
                print(ds)
        """
        try:
            import xarray as xr
        except ImportError:
            raise OptionalPackageDoesNotExist(
                "xarray is required for to_xarray(). Install with one of:\n"
                "  - PyPI:        pip install 'pyramids-gis[xarray]'\n"
                "  - conda-forge: conda install -c conda-forge pyramids-xarray"
            )

        rg = self._raster.GetRootGroup()
        if rg is None:
            raise ValueError(
                "to_xarray requires a multidimensional container. "
                "Open the file with open_as_multi_dimensional=True."
            )

        coords: dict[str, Any] = {}
        dims = rg.GetDimensions() or []
        for d in dims:
            dim_name = d.GetName()
            iv = d.GetIndexingVariable()
            if iv is None:
                continue
            coord_attrs: dict[str, Any] = {}
            try:
                for attr in iv.GetAttributes():
                    coord_attrs[attr.GetName()] = attr.Read()
            except Exception:
                pass
            unit = iv.GetUnit()
            if unit and "units" not in coord_attrs:
                coord_attrs["units"] = unit
            coords[dim_name] = ([dim_name], iv.ReadAsArray(), coord_attrs)

        data_vars: dict[str, Any] = {}
        for var_name in self.variable_names:
            md_arr = rg.OpenMDArray(var_name)
            if md_arr is None:
                continue
            arr_dims = md_arr.GetDimensions() or []
            arr_dim_names = [ad.GetName() for ad in arr_dims]
            arr_data = md_arr.ReadAsArray()
            var_attrs: dict[str, Any] = {}
            try:
                for attr in md_arr.GetAttributes():
                    var_attrs[attr.GetName()] = attr.Read()
            except Exception:
                pass
            # GDAL's netCDF driver normalises the CF `units` attribute
            # to MDArray.GetUnit() / SetUnit() rather than a regular
            # attribute. Merge it back into var_attrs for a clean
            # round-trip through xr.Dataset.
            unit = md_arr.GetUnit()
            if unit and "units" not in var_attrs:
                var_attrs["units"] = unit
            data_vars[var_name] = (arr_dim_names, arr_data, var_attrs)

        result = xr.Dataset(
            data_vars=data_vars,
            coords=coords,
            attrs=self.global_attributes,
        )
        return result

    @classmethod
    def from_xarray(
        cls,
        dataset: Any,
        path: str | Path | None = None,
    ) -> NetCDF:
        """Create a pyramids NetCDF from an `xarray.Dataset`.

        Extracts dimensions, coordinates, data variables, and
        attributes from the `xarray.Dataset` and writes them to a
        NetCDF file through pyramids' own GDAL Multidimensional
        writer. No xarray engine plugin (`netcdf4`, `h5netcdf`)
        is invoked — pyramids is the writer, so the `[xarray]`
        extra does not need to pull a NetCDF backend.

        Usage::

            ds = xr.open_dataset("input.nc")
            #... xarray processing...
            nc = NetCDF.from_xarray(ds)
            var = nc.get_variable("temperature")
            cropped = var.crop(mask)

        Requires the optional `xarray` package. Install with one of:

        - PyPI: ``pip install 'pyramids-gis[xarray]'``
        - conda-forge: ``conda install -c conda-forge pyramids-xarray``

        Args:
            dataset: An `xarray.Dataset` instance.
            path: File path where the NetCDF will be written. If
                `None`, a temp `.nc` is created and cleaned up
                when the returned object is garbage-collected.

        Returns:
            NetCDF: A pyramids NetCDF container backed by the data
            from the xarray Dataset.

        Raises:
            pyramids.base._errors.OptionalPackageDoesNotExist:
                If `xarray` is not installed.
            TypeError: If *dataset* is not an `xarray.Dataset`.
        """
        try:
            import xarray as xr
        except ImportError:
            raise OptionalPackageDoesNotExist(
                "xarray is required for from_xarray(). Install with one of:\n"
                "  - PyPI:        pip install 'pyramids-gis[xarray]'\n"
                "  - conda-forge: conda install -c conda-forge pyramids-xarray"
            )

        if not isinstance(dataset, xr.Dataset):
            raise TypeError(f"Expected xarray.Dataset, got {type(dataset).__name__}")

        cleanup_temp = False
        if path is not None:
            path = str(path)
        else:
            tmp = tempfile.NamedTemporaryFile(suffix=".nc", delete=False)
            path = tmp.name
            tmp.close()
            cleanup_temp = True

        mem_src = cls._build_multidim_from_xarray(dataset)
        dst = gdal.GetDriverByName("netCDF").CreateCopy(path, mem_src, 0)
        if dst is None:
            raise RuntimeError(f"Failed to write NetCDF to {path}")
        dst.FlushCache()
        dst = None
        mem_src = None

        result = cls.read_file(path, read_only=True)
        if cleanup_temp:
            result._xarray_temp_path = path
            weakref.finalize(result, os.unlink, path)
        return result

    @staticmethod
    def _build_multidim_from_xarray(dataset: Any) -> gdal.Dataset:
        """Build an in-memory GDAL multidim container from an xarray Dataset.

        Creates dimensions from `dataset.sizes`, writes each
        coordinate as a 1-D indexing MDArray, writes each data
        variable as an N-D MDArray whose dimensions are resolved by
        name. Variable and global attributes are copied via pyramids'
        own `write_attributes_to_md_array` / `write_global_attributes`
        helpers so every type the CF layer already handles (str, int,
        float, bool, list) round-trips without going through xarray's
        NetCDF writer.
        """
        src = gdal.GetDriverByName("MEM").CreateMultiDimensional("from_xarray")
        root = src.GetRootGroup()

        gdal_dims: dict[str, gdal.Dimension] = {}
        for dim_name, dim_size in dataset.sizes.items():
            gdal_dims[dim_name] = root.CreateDimension(
                dim_name,
                "",
                "",
                int(dim_size),
            )

        def _apply_attrs(md_arr: gdal.MDArray, attrs: dict[str, Any]) -> None:
            """Write xarray var attrs, routing `units` through SetUnit.

            GDAL's netCDF writer moves the CF `units` attribute onto
            the MDArray's own unit slot; if we also write it as a regular
            attribute it's dropped on the next CreateCopy. Split it out
            so the round trip is lossless.
            """
            if not attrs:
                return
            remaining = dict(attrs)
            unit = remaining.pop("units", None)
            if unit is not None:
                md_arr.SetUnit(str(unit))
            if remaining:
                write_attributes_to_md_array(md_arr, remaining)

        for coord_name, coord in dataset.coords.items():
            if coord_name not in gdal_dims:
                continue
            values = np.asarray(coord.values)
            ext = gdal.ExtendedDataType.Create(numpy_to_gdal_dtype(values))
            md_arr = root.CreateMDArray(
                coord_name,
                [gdal_dims[coord_name]],
                ext,
            )
            md_arr.Write(np.ascontiguousarray(values))
            _apply_attrs(md_arr, dict(coord.attrs))

        for var_name, var in dataset.data_vars.items():
            values = np.asarray(var.values)
            ext = gdal.ExtendedDataType.Create(numpy_to_gdal_dtype(values))
            md_arr = root.CreateMDArray(
                var_name,
                [gdal_dims[d] for d in var.dims],
                ext,
            )
            md_arr.Write(np.ascontiguousarray(values))
            _apply_attrs(md_arr, dict(var.attrs))

        if dataset.attrs:
            write_global_attributes(root, dict(dataset.attrs))

        return src

top_left_corner property #

Top left corner coordinates.

lon property #

Longitude / x-coordinate values as a 1D array.

Looks for a variable named "lon" first, then "x".

Returns:

Type Description
ndarray

np.ndarray or None: Flattened coordinate array, or None if

ndarray

neither lon nor x exists in the dataset.

lat property #

Latitude / y-coordinate values as a 1D array.

Looks for a variable named "lat" first, then "y".

Returns:

Type Description
ndarray

np.ndarray or None: Flattened coordinate array, or None if

ndarray

neither lat nor y exists in the dataset.

x property #

x-coordinate/longitude.

y property #

y-coordinate/latitude.

geotransform property #

Geotransform.

Computes from lon/lat coordinate arrays if available. Falls back to the parent GDAL GetGeoTransform() otherwise.

variable_names property #

Names of data variables (excluding dimension coordinate arrays).

Returns:

Type Description
list[str]

list[str]: Variable names. For MDIM mode these come from

list[str]

GetMDArrayNames() minus dimension names; for classic mode

list[str]

from GetSubDatasets().

variables property #

All data variables as a lazy dict of {name: NetCDF} subsets.

Variables are loaded on first access per key, not all at once. Cached after loading; invalidated by add_variable / remove_variable / set_variable.

Returns:

Type Description
dict[str, NetCDF]

dict[str, NetCDF]: Mapping from variable name to its subset.

no_data_value property writable #

Per-band nodata markers as an immutable tuple.

Returns a tuple so the read-only contract is explicit — assign through the setter to change values.

file_name property #

File path, with the NETCDF:"path":var prefix stripped if present.

Returns:

Name Type Description
str

Clean file path without the NETCDF prefix.

time_stamp property #

Time coordinate values parsed from the CF-compliant time variable.

Returns:

Type Description

list[str] | None: Formatted time strings, or None if no time dimension with a units attribute is found.

meta_data property writable #

Structured metadata for this NetCDF.

Uses the GDAL Multidimensional API (groups, arrays, dimensions) when the file was opened with open_as_multi_dimensional=True. Falls back to the classic NETCDF_DIM_* parser (dimensions.py) when opened in classic mode (no root group available).

Cached on first access. Invalidated by add_variable/remove_variable.

Returns:

Type Description
NetCDFMetadata

NetCDFMetadata

dimension_names property #

Names of all dimensions in storage order.

On the root MDIM container the names come from the GDAL root group (e.g. ["x", "y", "time"]). On a variable subset returned by get_variable() the names come from the cached _md_array_dims captured at subset-build time, so 4-D+ cubes report all dims (e.g. ["valid_time", "pressure_level", "latitude", "longitude"]) without touching private state.

Returns:

Type Description
list[str] | None

list[str] or None: Dim names. None only on a cube that

list[str] | None

has neither a root group nor cached _md_array_dims.

group_names property #

Names of sub-groups in the root group.

Returns:

Type Description
list[str]

list[str]: Sub-group names (e.g. ["forecast", "analysis"]).

list[str]

Empty list if no sub-groups exist or the dataset is in

list[str]

classic mode.

is_subset property #

Whether this object represents a single-variable subset.

Returns:

Name Type Description
bool bool

True if the dataset is a variable subset extracted via get_variable().

is_md_array property #

Whether this dataset was opened in multidimensional mode.

Returns:

Name Type Description
bool

True if the dataset was opened via gdal.OF_MULTIDIM_RASTER and supports groups, MDArrays, and dimensions.

global_attributes property #

Global attributes from the root group.

Returns a live dict read from the GDAL root group each time. For MDIM mode, reads from the root group's attributes. For classic mode, reads from GDAL's GetMetadata().

Returns:

Type Description
dict[str, Any]

dict[str, Any]: Key-value mapping of global attributes.

__reduce__() #

Emit the extended recipe tuple carrying NetCDF mode flags.

Overrides :meth:RasterBase.__reduce__ to include _is_md_array, _is_subset, and _source_var_name, which are required to reconstruct a container vs a variable-subset with matching identity.

For variable-subset instances the _file_name attribute reflects the subset's GDAL description, which is typically empty or driver-specific. We therefore fall back to the parent container's _file_name when reconstructing a subset.

Raises:

Type Description
TypeError

The NetCDF has no on-disk path (empty _file_name or a /vsimem/ path). Pickling an in-memory NetCDF is not supported.

Source code in src/pyramids/netcdf/netcdf.py
def __reduce__(self):  # type: ignore[override]
    """Emit the extended recipe tuple carrying NetCDF mode flags.

    Overrides :meth:`RasterBase.__reduce__` to include
    `_is_md_array`, `_is_subset`, and `_source_var_name`,
    which are required to reconstruct a container vs a
    variable-subset with matching identity.

    For variable-subset instances the `_file_name` attribute
    reflects the subset's GDAL description, which is typically
    empty or driver-specific. We therefore fall back to the
    parent container's `_file_name` when reconstructing a
    subset.

    Raises:
        TypeError: The NetCDF has no on-disk path (empty
            `_file_name` or a `/vsimem/` path). Pickling an
            in-memory NetCDF is not supported.
    """
    path = self._file_name
    if (not path) and self._is_subset:
        parent = getattr(self, "_parent_nc", None)
        if parent is not None:
            path = parent._file_name
    if not path or path.startswith("/vsimem/"):
        raise TypeError(
            f"NetCDF has no on-disk path (file_name={self._file_name!r}); "
            "pickling an in-memory NetCDF is not supported. Call "
            ".to_file(path) first to anchor it to disk."
        )
    return (
        _reconstruct_netcdf,
        (
            path,
            self._access,
            bool(self._is_md_array),
            bool(self._is_subset),
            self._source_var_name,
        ),
    )

__init__(src, access='read_only', open_as_multi_dimensional=True) #

Initialize a NetCDF dataset wrapper.

Parameters:

Name Type Description Default
src Dataset

A GDAL dataset handle (either classic or multidimensional).

required
access str

Access mode, either "read_only" or "write". Defaults to "read_only".

'read_only'
open_as_multi_dimensional bool

If True the dataset was opened with gdal.OF_MULTIDIM_RASTER and supports groups, MDArrays, and dimensions. If False it was opened in classic raster mode (subdatasets, bands). Defaults to True.

True
Source code in src/pyramids/netcdf/netcdf.py
def __init__(
    self,
    src: gdal.Dataset,
    access: str = "read_only",
    open_as_multi_dimensional: bool = True,
):
    """Initialize a NetCDF dataset wrapper.

    Args:
        src: A GDAL dataset handle (either classic or multidimensional).
        access: Access mode, either `"read_only"` or `"write"`.
            Defaults to `"read_only"`.
        open_as_multi_dimensional: If True the dataset was opened with
            `gdal.OF_MULTIDIM_RASTER` and supports groups, MDArrays,
            and dimensions. If False it was opened in classic raster
            mode (subdatasets, bands). Defaults to True.
    """
    super().__init__(src, access=access)
    # set the is_subset to false before retrieving the variables
    if open_as_multi_dimensional:
        self._is_md_array = True
        self._is_subset = False
    else:
        self._is_md_array = False
        self._is_subset = False
    # Caches (invalidated by _replace_raster, add_variable, remove_variable)
    self._cached_variables: dict[str, NetCDF] | None = None
    self._cached_meta_data: NetCDFMetadata | None = None
    # Origin-tracking attributes set by get_variable (RT-4)
    self._parent_nc: NetCDF | None = None
    self._source_var_name: str | None = None
    self._gdal_md_arr_ref: Any = None
    self._gdal_rg_ref: Any = None
    self._md_array_dims: list[str] = []
    self._band_dim_name: str | None = None
    self._band_dim_values: list[Any] | None = None
    self._band_dim_names: tuple[str, ...] = ()
    self._band_dim_values_map: dict[str, list[Any] | None] = {}
    self._band_dim_sizes: tuple[int, ...] = ()
    self._variable_attrs: dict[str, Any] = {}
    self._scale: float | None = None
    self._offset: float | None = None

__str__() #

Return a human-readable summary of the NetCDF dataset.

Source code in src/pyramids/netcdf/netcdf.py
def __str__(self):
    """Return a human-readable summary of the NetCDF dataset."""
    message = f"""
        Cell size: {self.cell_size}
        Dimension: {self.rows} * {self.columns}
        EPSG: {self.epsg}
        projection: {self.crs}
        Variables: {self.variable_names}
        Metadata: {self.meta_data}
        File: {self.file_name}
    """
    return message

__repr__() #

repr.

Source code in src/pyramids/netcdf/netcdf.py
def __repr__(self):
    """__repr__."""
    return super().__repr__()

plot(variable=None, *, selectors=None, colour=None, facet=None, coords=None, kind='auto', animate=None, chunks=None, basemap=None, exclude_value=None, title=None, ax=None, figsize=None, **kwargs) #

Plot a 2-D slice of a NetCDF variable using xarray-aligned vocabulary.

The public surface is shaped around variables and dimensionsband is not a NetCDF concept and has been removed from the signature. Variable selection is by name; the slice to render is pinned via a :class:Selectors option bag (time / level / member / sel / isel); colour controls live on a :class:ColourOpts bag (cmap / vmin / vmax / robust / levels / norm / center / extend / add_colorbar / cbar_kwargs); multi-panel layout is described by a :class:FacetSpec bag (col / row / col_wrap). Each bag is a frozen dataclass — construct it inline at the call site.

On a root MDIM container the variable= argument is required:

from pyramids.netcdf import NetCDF, Selectors
nc.plot(variable="t2m", selectors=Selectors(time="2024-01-15"))

On a variable subset (the result of :meth:get_variable) variable= may be omitted or must equal the pinned variable name; otherwise the call is rejected, mirroring the :meth:read_array contract.

Parameters:

Name Type Description Default
variable str

Name of the variable to plot. Required on the root MDIM container; must be None or equal to the pinned variable name on a subset. Defaults to None.

None
selectors Selectors

Dim-selector bag. See :class:Selectors for the field list. A missing bag is treated as :class:Selectors\ () (all fields None). Defaults to None.

None
colour ColourOpts

Colour-control bag. See :class:ColourOpts for the field list. A missing bag is treated as :class:ColourOpts\ () (cleopatra defaults). Defaults to None.

None
facet FacetSpec

Faceting bag. See :class:FacetSpec for the field list. A missing bag (or one where both col and row are None) routes the call to the single-panel static-plot path. Defaults to None.

None
coords tuple or list

Explicit curvilinear (x, y) coordinate spec for the pcolormesh path. Accepts two forms:

  • A length-2 sequence of strings — each is looked up as a variable name via _read_variable on the parent container.
  • A length-2 sequence of numpy arrays — passed straight through to cleopatra. Each array is 1-D (length matches the data x/y axis) or 2-D matching (rows, cols).

When coords= is omitted, pyramids auto-detects curvilinear coords via the CF coordinates attribute on the variable, then via the well-known naming conventions (WRF XLAT / XLONG, ROMS lat_rho / lon_rho, NEMO nav_lat / nav_lon). When nothing matches, the renderer falls back to extent=self.bbox (imshow). Defaults to None.

None
kind str

Render kind forwarded to cleopatra's ArrayGlyph.plot. One of "auto", "imshow", "pcolormesh", "contour", "contourf". "auto" routes to pcolormesh when curvilinear coords are present, else imshow. Defaults to "auto".

'auto'
animate bool or str

When set, render the variable as an animation across a band dim instead of a single 2-D slice. True animates along the variable's primary band dim (typically time) — only valid when exactly one band dim remains after the selectors collapse the others. A string names the dim to animate along. None (default) returns a static plot. Mutually exclusive with faceting and with any selector that pins the animated dim. Defaults to None.

None
chunks Any

Chunking spec forwarded to :meth:read_array for the static-plot path. None (default) preserves the eager read. Any of int / tuple / dict / "auto" switches to the dask-backed lazy read and only the rendered slice is materialised. Has no effect on the animate= path. Defaults to None.

None
basemap bool or str

If truthy, overlay an OpenStreetMap basemap (or a named contextily tile provider). Defaults to None.

None
exclude_value Any

Pixel value to mask out before plotting. Defaults to None.

None
title str

Plot title. Defaults to None.

None
ax Any

Existing matplotlib Axes to draw into. Defaults to None.

None
figsize tuple

Figure size in inches. Defaults to None.

None
**kwargs Any

Additional keyword arguments forwarded to :meth:Analysis.plot <pyramids.dataset.engines.Analysis.plot>. The legacy band= kwarg is accepted here for backward compatibility but emits a :class:DeprecationWarning.

{}

Returns:

Name Type Description
ArrayGlyph

A cleopatra ArrayGlyph wrapping the rendered figure.

Raises:

Type Description
TypeError

If any of the Sentinel-only kwargs (rgb, surface_reflectance, cutoff, percentile, overview, overview_index) is passed. Each rejection message names the xarray-aligned replacement.

ValueError

If called on a root MDIM container without variable=, if variable= is passed on a subset and does not match the pinned variable name, if the resolved selectors do not pin to a single 2-D slice, or if coords= is malformed.

Examples:

  • Plot the first time step of a variable on a container. Tagged +SKIP because rendering requires the optional [viz] extra (cleopatra + matplotlib):
>>> import numpy as np
>>> from pyramids.netcdf import NetCDF, Selectors
>>> arr = np.random.rand(4, 8, 8).astype(np.float32)
>>> nc = NetCDF.create_from_array(
...     arr, top_left_corner=(0, 0), cell_size=0.1, epsg=4326,
...     variable_name="t2m",
... )
>>> cleo = nc.plot(  # doctest: +SKIP
...     variable="t2m", selectors=Selectors(isel={"time": 0}),
... )
  • Pick a time slice by label — the Selectors.time alias is equivalent to Selectors(sel={"time": value}):
>>> cleo = nc.plot(  # doctest: +SKIP
...     variable="t2m", selectors=Selectors(time=2),
... )
  • Pin both time and level on a 4-D (time, pressure_level, lat, lon) variable. The selectors collapse both band dims to a single 2-D slice — equivalent to var.sel(time=12).sel(pressure_level=500):
>>> cleo = nc.plot(  # doctest: +SKIP
...     variable="temperature",
...     selectors=Selectors(time=12, level=500),
... )
  • Use an explicit sel dict instead of the convenience aliases — keys must match the variable's band-dim names:
>>> cleo = nc.plot(  # doctest: +SKIP
...     variable="t2m", selectors=Selectors(sel={"time": 2}),
... )
  • Use an isel dict to address slices positionally. Each integer is mapped to the corresponding coord value via _band_dim_values_map:
>>> cleo = nc.plot(  # doctest: +SKIP
...     variable="t2m", selectors=Selectors(isel={"time": 0}),
... )
  • All six Sentinel-only kwargs are rejected with a hint at the xarray-aligned replacement. These doctests run because the gate fires before any cleopatra import:
>>> nc.plot(variable="t2m", rgb=[0, 1, 2])  # doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
    ...
TypeError: ...rgb=...
>>> nc.plot(variable="t2m", surface_reflectance=10000)  # doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
    ...
TypeError: ...surface_reflectance...
>>> nc.plot(variable="t2m", cutoff=[0.1, 0.9])  # doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
    ...
TypeError: ...cutoff...
>>> nc.plot(variable="t2m", percentile=2)  # doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
    ...
TypeError: ...robust=True...
>>> nc.plot(variable="t2m", overview=2)  # doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
    ...
TypeError: ...overview=...
>>> nc.plot(variable="t2m", overview_index=2)  # doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
    ...
TypeError: ...overview_index=...
  • The legacy band= kwarg still works as an escape hatch but emits a :class:DeprecationWarning. Prefer Selectors(time=...) for new code:
>>> import warnings
>>> with warnings.catch_warnings(record=True) as caught:  # doctest: +SKIP
...     warnings.simplefilter("always")
...     cleo = nc.plot(variable="t2m", band=2)
>>> caught[0].category.__name__  # doctest: +SKIP
'DeprecationWarning'
  • Render a WRF-style curvilinear NetCDF on its real lat/lon grid. With 2-D XLAT / XLONG coord variables on the container, pyramids auto-detects them and routes the renderer to pcolormesh:
>>> cleo = nc.plot(variable="CANWAT", kind="pcolormesh")  # doctest: +SKIP
  • Pass an explicit curvilinear coord pair by variable name — useful when the variable has no CF coordinates attribute and the convention does not match WRF / ROMS / NEMO:
>>> cleo = nc.plot(  # doctest: +SKIP
...     variable="CANWAT", coords=("XLONG", "XLAT"),
... )
  • Pick a non-default render kind. "contourf" produces filled contours from the same data; "auto" (the default) picks pcolormesh when curvilinear coords are present, else falls back to imshow. Discrete contour levels live on :class:ColourOpts:
>>> from pyramids.netcdf import ColourOpts
>>> cleo = nc.plot(  # doctest: +SKIP
...     variable="t2m",
...     kind="contourf",
...     colour=ColourOpts(levels=10),
... )
  • Render with explicit 2-D coord arrays passed directly via coords=. The arrays bypass the CF / convention auto-detection step and route the renderer to pcolormesh:
>>> import numpy as np
>>> x2d, y2d = np.meshgrid(
...     np.linspace(0, 10, 4), np.linspace(0, 10, 4),
... )
>>> arr = np.random.rand(3, 4, 4).astype(np.float32)
>>> nc_curv = NetCDF.create_from_array(
...     arr, top_left_corner=(0, 0), cell_size=1.0, epsg=4326,
...     variable_name="t2m",
... )
>>> cleo = nc_curv.plot(  # doctest: +SKIP
...     variable="t2m", coords=(x2d, y2d),
... )
  • Robust (percentile-based) colour limits — clip to the 2nd / 98th percentile of the rendered slice. Colour controls live on :class:ColourOpts:
>>> from pyramids.netcdf import ColourOpts
>>> cleo = nc.plot(  # doctest: +SKIP
...     variable="t2m",
...     colour=ColourOpts(cmap="viridis", robust=True),
... )
  • Disable the colorbar — the facade removes it post-render because cleopatra always attaches one:
>>> from pyramids.netcdf import ColourOpts
>>> cleo = nc.plot(  # doctest: +SKIP
...     variable="t2m", colour=ColourOpts(add_colorbar=False),
... )
  • Facet over the time dim. :class:FacetSpec lists the column dim (and optionally a row dim and a wrap value). The return type becomes :class:cleopatra.array_glyph.FacetGrid:
>>> from pyramids.netcdf import FacetSpec
>>> grid = nc.plot(  # doctest: +SKIP
...     variable="t2m", facet=FacetSpec(col="time"),
... )
  • Facet a 4-D variable across both axes with col and row. col_wrap is ignored when row is given:
>>> grid = nc.plot(  # doctest: +SKIP
...     variable="temperature",
...     facet=FacetSpec(col="time", row="pressure_level"),
... )
  • Wrap a single-axis facet into a grid via col_wrap. N=4 panels with col_wrap=3 wrap to a 2x3 layout with one hidden slot:
>>> grid = nc.plot(  # doctest: +SKIP
...     variable="t2m", facet=FacetSpec(col="time", col_wrap=3),
... )
  • Faceting on a dim that is also pinned by a selector raises :class:ValueError before any I/O:
>>> nc.plot(  # doctest: +IGNORE_EXCEPTION_DETAIL
...     variable="t2m",
...     selectors=Selectors(time=0),
...     facet=FacetSpec(col="time"),
... )
Traceback (most recent call last):
    ...
ValueError: Cannot facet on 'time'...
  • Animate along the primary band dim with animate=True. The facade resolves the single free band dim (time here) and streams frames lazily via a per-frame data_getter so the animation never builds a 3-D stack:
>>> cleo = nc.plot(variable="t2m", animate=True)  # doctest: +SKIP
  • Name the animation dim explicitly. The string must match one of the variable's band-dim names. animate="time" is equivalent to animate=True when time is the only free band dim; the explicit form is required on variables with more than one free band dim:
>>> cleo = nc.plot(variable="t2m", animate="time")  # doctest: +SKIP
  • An unknown animate= dim name is rejected before any I/O. The error message lists the available band dims so typos are easy to spot:
>>> nc.plot(variable="t2m", animate="bogus")  # doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
    ...
ValueError: `animate='bogus'` is not a band dim...
  • Pinning a dim and then asking to animate over it raises :class:ValueError:
>>> nc.plot(  # doctest: +IGNORE_EXCEPTION_DETAIL
...     variable="t2m",
...     selectors=Selectors(time=0),
...     animate="time",
... )
Traceback (most recent call last):
    ...
ValueError: Cannot animate on 'time'...
  • Switch the static-plot path to a lazy dask read with chunks=. Only the rendered slice is materialised — useful when the variable is very large and a full eager read would waste memory:
>>> cleo = nc.plot(  # doctest: +SKIP
...     variable="t2m", chunks={"x": 5, "y": 5},
... )
Source code in src/pyramids/netcdf/netcdf.py
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
def plot(
    self,
    variable: str | None = None,
    *,
    selectors: Selectors | None = None,
    colour: ColourOpts | None = None,
    facet: FacetSpec | None = None,
    coords: tuple | list | None = None,
    kind: str = "auto",
    animate: bool | str | None = None,
    chunks: Any | None = None,
    basemap: bool | str | None = None,
    exclude_value: Any | None = None,
    title: str | None = None,
    ax: Any | None = None,
    figsize: tuple[float, float] | None = None,
    **kwargs: Any,
):
    """Plot a 2-D slice of a NetCDF variable using xarray-aligned vocabulary.

    The public surface is shaped around **variables** and **dimensions** — ``band``
    is not a NetCDF concept and has been removed from the signature. Variable
    selection is by name; the slice to render is pinned via a :class:`Selectors`
    option bag (``time`` / ``level`` / ``member`` / ``sel`` / ``isel``); colour
    controls live on a :class:`ColourOpts` bag (``cmap`` / ``vmin`` / ``vmax`` /
    ``robust`` / ``levels`` / ``norm`` / ``center`` / ``extend`` / ``add_colorbar``
    / ``cbar_kwargs``); multi-panel layout is described by a :class:`FacetSpec`
    bag (``col`` / ``row`` / ``col_wrap``). Each bag is a frozen dataclass —
    construct it inline at the call site.

    On a **root MDIM container** the ``variable=`` argument is required:

    ```python
    from pyramids.netcdf import NetCDF, Selectors
    nc.plot(variable="t2m", selectors=Selectors(time="2024-01-15"))
    ```

    On a **variable subset** (the result of :meth:`get_variable`) ``variable=``
    may be omitted or must equal the pinned variable name; otherwise the call
    is rejected, mirroring the :meth:`read_array` contract.

    Args:
        variable (str, optional):
            Name of the variable to plot. Required on the root MDIM container;
            must be ``None`` or equal to the pinned variable name on a subset.
            Defaults to None.
        selectors (Selectors, optional):
            Dim-selector bag. See :class:`Selectors` for the field list. A
            missing bag is treated as :class:`Selectors`\\ () (all fields
            ``None``). Defaults to None.
        colour (ColourOpts, optional):
            Colour-control bag. See :class:`ColourOpts` for the field list. A
            missing bag is treated as :class:`ColourOpts`\\ () (cleopatra
            defaults). Defaults to None.
        facet (FacetSpec, optional):
            Faceting bag. See :class:`FacetSpec` for the field list. A missing
            bag (or one where both ``col`` and ``row`` are ``None``) routes
            the call to the single-panel static-plot path. Defaults to None.
        coords (tuple or list, optional):
            Explicit curvilinear ``(x, y)`` coordinate spec for the
            pcolormesh path. Accepts two forms:

            - A length-2 sequence of strings — each is looked up as a
              variable name via ``_read_variable`` on the parent
              container.
            - A length-2 sequence of numpy arrays — passed straight
              through to cleopatra. Each array is 1-D (length matches
              the data x/y axis) or 2-D matching ``(rows, cols)``.

            When ``coords=`` is omitted, pyramids auto-detects
            curvilinear coords via the CF ``coordinates`` attribute on
            the variable, then via the well-known naming conventions
            (WRF ``XLAT`` / ``XLONG``, ROMS ``lat_rho`` / ``lon_rho``,
            NEMO ``nav_lat`` / ``nav_lon``). When nothing matches, the
            renderer falls back to ``extent=self.bbox`` (imshow).
            Defaults to None.
        kind (str, optional):
            Render kind forwarded to cleopatra's ``ArrayGlyph.plot``.
            One of ``"auto"``, ``"imshow"``, ``"pcolormesh"``,
            ``"contour"``, ``"contourf"``. ``"auto"`` routes to
            ``pcolormesh`` when curvilinear ``coords`` are present,
            else ``imshow``. Defaults to ``"auto"``.
        animate (bool or str, optional):
            When set, render the variable as an animation across a
            band dim instead of a single 2-D slice. ``True`` animates
            along the variable's primary band dim (typically
            ``time``) — only valid when exactly one band dim remains
            after the selectors collapse the others. A string names
            the dim to animate along. ``None`` (default) returns a
            static plot. Mutually exclusive with faceting and with
            any selector that pins the animated dim. Defaults to
            None.
        chunks (Any, optional):
            Chunking spec forwarded to :meth:`read_array` for the
            static-plot path. ``None`` (default) preserves the eager
            read. Any of ``int`` / ``tuple`` / ``dict`` / ``"auto"``
            switches to the dask-backed lazy read and only the
            rendered slice is materialised. Has no effect on the
            ``animate=`` path. Defaults to None.
        basemap (bool or str, optional):
            If truthy, overlay an OpenStreetMap basemap (or a named
            contextily tile provider). Defaults to None.
        exclude_value (Any, optional):
            Pixel value to mask out before plotting. Defaults to None.
        title (str, optional):
            Plot title. Defaults to None.
        ax (Any, optional):
            Existing matplotlib Axes to draw into. Defaults to None.
        figsize (tuple, optional):
            Figure size in inches. Defaults to None.
        **kwargs:
            Additional keyword arguments forwarded to
            :meth:`Analysis.plot <pyramids.dataset.engines.Analysis.plot>`.
            The legacy ``band=`` kwarg is accepted here for backward
            compatibility but emits a :class:`DeprecationWarning`.

    Returns:
        ArrayGlyph: A cleopatra ``ArrayGlyph`` wrapping the rendered figure.

    Raises:
        TypeError: If any of the Sentinel-only kwargs (``rgb``,
            ``surface_reflectance``, ``cutoff``, ``percentile``,
            ``overview``, ``overview_index``) is passed. Each
            rejection message names the xarray-aligned replacement.
        ValueError: If called on a root MDIM container without
            ``variable=``, if ``variable=`` is passed on a subset and
            does not match the pinned variable name, if the resolved
            selectors do not pin to a single 2-D slice, or if
            ``coords=`` is malformed.

    Examples:
        - Plot the first time step of a variable on a container. Tagged
          ``+SKIP`` because rendering requires the optional ``[viz]``
          extra (cleopatra + matplotlib):

          ```python
          >>> import numpy as np
          >>> from pyramids.netcdf import NetCDF, Selectors
          >>> arr = np.random.rand(4, 8, 8).astype(np.float32)
          >>> nc = NetCDF.create_from_array(
          ...     arr, top_left_corner=(0, 0), cell_size=0.1, epsg=4326,
          ...     variable_name="t2m",
          ... )
          >>> cleo = nc.plot(  # doctest: +SKIP
          ...     variable="t2m", selectors=Selectors(isel={"time": 0}),
          ... )

          ```

        - Pick a time slice by label — the ``Selectors.time`` alias
          is equivalent to ``Selectors(sel={"time": value})``:

          ```python
          >>> cleo = nc.plot(  # doctest: +SKIP
          ...     variable="t2m", selectors=Selectors(time=2),
          ... )

          ```

        - Pin both time and level on a 4-D ``(time, pressure_level,
          lat, lon)`` variable. The selectors collapse both band
          dims to a single 2-D slice — equivalent to
          ``var.sel(time=12).sel(pressure_level=500)``:

          ```python
          >>> cleo = nc.plot(  # doctest: +SKIP
          ...     variable="temperature",
          ...     selectors=Selectors(time=12, level=500),
          ... )

          ```

        - Use an explicit ``sel`` dict instead of the convenience
          aliases — keys must match the variable's band-dim names:

          ```python
          >>> cleo = nc.plot(  # doctest: +SKIP
          ...     variable="t2m", selectors=Selectors(sel={"time": 2}),
          ... )

          ```

        - Use an ``isel`` dict to address slices positionally. Each
          integer is mapped to the corresponding coord value via
          ``_band_dim_values_map``:

          ```python
          >>> cleo = nc.plot(  # doctest: +SKIP
          ...     variable="t2m", selectors=Selectors(isel={"time": 0}),
          ... )

          ```

        - All six Sentinel-only kwargs are rejected with a hint at
          the xarray-aligned replacement. These doctests run because
          the gate fires before any cleopatra import:

          ```python
          >>> nc.plot(variable="t2m", rgb=[0, 1, 2])  # doctest: +IGNORE_EXCEPTION_DETAIL
          Traceback (most recent call last):
              ...
          TypeError: ...rgb=...

          ```

          ```python
          >>> nc.plot(variable="t2m", surface_reflectance=10000)  # doctest: +IGNORE_EXCEPTION_DETAIL
          Traceback (most recent call last):
              ...
          TypeError: ...surface_reflectance...

          ```

          ```python
          >>> nc.plot(variable="t2m", cutoff=[0.1, 0.9])  # doctest: +IGNORE_EXCEPTION_DETAIL
          Traceback (most recent call last):
              ...
          TypeError: ...cutoff...

          ```

          ```python
          >>> nc.plot(variable="t2m", percentile=2)  # doctest: +IGNORE_EXCEPTION_DETAIL
          Traceback (most recent call last):
              ...
          TypeError: ...robust=True...

          ```

          ```python
          >>> nc.plot(variable="t2m", overview=2)  # doctest: +IGNORE_EXCEPTION_DETAIL
          Traceback (most recent call last):
              ...
          TypeError: ...overview=...

          ```

          ```python
          >>> nc.plot(variable="t2m", overview_index=2)  # doctest: +IGNORE_EXCEPTION_DETAIL
          Traceback (most recent call last):
              ...
          TypeError: ...overview_index=...

          ```

        - The legacy ``band=`` kwarg still works as an escape hatch
          but emits a :class:`DeprecationWarning`. Prefer
          ``Selectors(time=...)`` for new code:

          ```python
          >>> import warnings
          >>> with warnings.catch_warnings(record=True) as caught:  # doctest: +SKIP
          ...     warnings.simplefilter("always")
          ...     cleo = nc.plot(variable="t2m", band=2)
          >>> caught[0].category.__name__  # doctest: +SKIP
          'DeprecationWarning'

          ```

        - Render a WRF-style curvilinear NetCDF on its real lat/lon
          grid. With 2-D ``XLAT`` / ``XLONG`` coord variables on the
          container, pyramids auto-detects them and routes the
          renderer to ``pcolormesh``:

          ```python
          >>> cleo = nc.plot(variable="CANWAT", kind="pcolormesh")  # doctest: +SKIP

          ```

        - Pass an explicit curvilinear coord pair by variable name —
          useful when the variable has no CF ``coordinates``
          attribute and the convention does not match
          WRF / ROMS / NEMO:

          ```python
          >>> cleo = nc.plot(  # doctest: +SKIP
          ...     variable="CANWAT", coords=("XLONG", "XLAT"),
          ... )

          ```

        - Pick a non-default render kind. ``"contourf"`` produces
          filled contours from the same data; ``"auto"`` (the
          default) picks ``pcolormesh`` when curvilinear coords are
          present, else falls back to ``imshow``. Discrete contour
          levels live on :class:`ColourOpts`:

          ```python
          >>> from pyramids.netcdf import ColourOpts
          >>> cleo = nc.plot(  # doctest: +SKIP
          ...     variable="t2m",
          ...     kind="contourf",
          ...     colour=ColourOpts(levels=10),
          ... )

          ```

        - Render with explicit 2-D coord arrays passed directly via
          ``coords=``. The arrays bypass the CF / convention
          auto-detection step and route the renderer to
          ``pcolormesh``:

          ```python
          >>> import numpy as np
          >>> x2d, y2d = np.meshgrid(
          ...     np.linspace(0, 10, 4), np.linspace(0, 10, 4),
          ... )
          >>> arr = np.random.rand(3, 4, 4).astype(np.float32)
          >>> nc_curv = NetCDF.create_from_array(
          ...     arr, top_left_corner=(0, 0), cell_size=1.0, epsg=4326,
          ...     variable_name="t2m",
          ... )
          >>> cleo = nc_curv.plot(  # doctest: +SKIP
          ...     variable="t2m", coords=(x2d, y2d),
          ... )

          ```

        - Robust (percentile-based) colour limits — clip to the 2nd / 98th
          percentile of the rendered slice. Colour controls live
          on :class:`ColourOpts`:

          ```python
          >>> from pyramids.netcdf import ColourOpts
          >>> cleo = nc.plot(  # doctest: +SKIP
          ...     variable="t2m",
          ...     colour=ColourOpts(cmap="viridis", robust=True),
          ... )

          ```

        - Disable the colorbar — the facade removes it post-render
          because cleopatra always attaches one:

          ```python
          >>> from pyramids.netcdf import ColourOpts
          >>> cleo = nc.plot(  # doctest: +SKIP
          ...     variable="t2m", colour=ColourOpts(add_colorbar=False),
          ... )

          ```

        - Facet over the time dim. :class:`FacetSpec` lists the
          column dim (and optionally a row dim and a wrap value).
          The return type becomes
          :class:`cleopatra.array_glyph.FacetGrid`:

          ```python
          >>> from pyramids.netcdf import FacetSpec
          >>> grid = nc.plot(  # doctest: +SKIP
          ...     variable="t2m", facet=FacetSpec(col="time"),
          ... )

          ```

        - Facet a 4-D variable across both axes with ``col`` and
          ``row``. ``col_wrap`` is ignored when ``row`` is given:

          ```python
          >>> grid = nc.plot(  # doctest: +SKIP
          ...     variable="temperature",
          ...     facet=FacetSpec(col="time", row="pressure_level"),
          ... )

          ```

        - Wrap a single-axis facet into a grid via ``col_wrap``.
          ``N=4`` panels with ``col_wrap=3`` wrap to a ``2x3``
          layout with one hidden slot:

          ```python
          >>> grid = nc.plot(  # doctest: +SKIP
          ...     variable="t2m", facet=FacetSpec(col="time", col_wrap=3),
          ... )

          ```

        - Faceting on a dim that is also pinned by a selector
          raises :class:`ValueError` before any I/O:

          ```python
          >>> nc.plot(  # doctest: +IGNORE_EXCEPTION_DETAIL
          ...     variable="t2m",
          ...     selectors=Selectors(time=0),
          ...     facet=FacetSpec(col="time"),
          ... )
          Traceback (most recent call last):
              ...
          ValueError: Cannot facet on 'time'...

          ```

        - Animate along the primary band dim with ``animate=True``.
          The facade resolves the single free band dim (``time``
          here) and streams frames lazily via a per-frame
          ``data_getter`` so the animation never builds a 3-D stack:

          ```python
          >>> cleo = nc.plot(variable="t2m", animate=True)  # doctest: +SKIP

          ```

        - Name the animation dim explicitly. The string must match
          one of the variable's band-dim names. ``animate="time"``
          is equivalent to ``animate=True`` when ``time`` is the
          only free band dim; the explicit form is required on
          variables with more than one free band dim:

          ```python
          >>> cleo = nc.plot(variable="t2m", animate="time")  # doctest: +SKIP

          ```

        - An unknown ``animate=`` dim name is rejected before any
          I/O. The error message lists the available band dims so
          typos are easy to spot:

          ```python
          >>> nc.plot(variable="t2m", animate="bogus")  # doctest: +IGNORE_EXCEPTION_DETAIL
          Traceback (most recent call last):
              ...
          ValueError: `animate='bogus'` is not a band dim...

          ```

        - Pinning a dim and then asking to animate over it
          raises :class:`ValueError`:

          ```python
          >>> nc.plot(  # doctest: +IGNORE_EXCEPTION_DETAIL
          ...     variable="t2m",
          ...     selectors=Selectors(time=0),
          ...     animate="time",
          ... )
          Traceback (most recent call last):
              ...
          ValueError: Cannot animate on 'time'...

          ```

        - Switch the static-plot path to a lazy dask read with
          ``chunks=``. Only the rendered slice is materialised —
          useful when the variable is very large and a full eager
          read would waste memory:

          ```python
          >>> cleo = nc.plot(  # doctest: +SKIP
          ...     variable="t2m", chunks={"x": 5, "y": 5},
          ... )

          ```
    """
    return NetCDFPlot(self).run(
        variable,
        selectors=selectors,
        colour=colour,
        facet=facet,
        coords=coords,
        kind=kind,
        animate=animate,
        chunks=chunks,
        basemap=basemap,
        exclude_value=exclude_value,
        title=title,
        ax=ax,
        figsize=figsize,
        **kwargs,
    )

read_array(variable=None, band=None, window=None, unpack=False, *, bbox=None, epsg=None, chunks=None, lock=None) #

Read array from the dataset (eager by default, lazy with chunks).

Parameters:

Name Type Description Default
variable str | None

When this instance is a root MDIM container, the variable name to read. When the instance is already a variable subset (nc.get_variable("x")) this argument must be None — the variable is already pinned.

None
band int | None

Band index to read, or None for all bands. Only honored on the eager path (chunks=None).

None
window list[int] | None

Spatial window to read. Only honored on the eager path. Mutually exclusive with bbox.

None
unpack bool

If True and the variable has CF scale_factor and/or add_offset, apply the transformation real = raw * scale + offset. Defaults to False. Applied lazily via :mod:dask.array arithmetic when chunks is given — the compute graph stays lazy until the caller materializes it.

False
bbox keyword - only

(west, south, east, north) quadruple in the CRS named by epsg. Internally wrapped in a one-row :class:pyramids.feature.FeatureCollection via :meth:pyramids.feature.FeatureCollection.from_bbox and routed through the same window path. Honored on the eager path only — same constraint as window. Mutually exclusive with window; combining with chunks raises :class:ValueError (mirroring :class:pyramids.dataset.engines.IO.read_array's chunks= + window= rule).

None
epsg keyword - only

CRS for bbox — anything geopandas accepts for crs= (EPSG int, "EPSG:4326", WKT, :class:pyproj.CRS). Defaults to the dataset's own CRS, so a bbox in the dataset's native CRS needs no extra argument.

None
chunks Any

Chunking spec for a lazy return. None (the default) returns an eager :class:numpy.ndarray and preserves the legacy behavior. Any of int, tuple, dict, or the string "auto" switches to a :class:dask.array.Array backed by MDArray chunk reads. Defaults chunked at the variable's native GetBlockSize (see :attr:pyramids.netcdf.models.VariableInfo.block_size); a conservative (1,..., rows, cols) fallback is used when the driver doesn't advertise one.

None
lock Any

Lock passed to the underlying :class:pyramids.base._file_manager.CachingFileManager. None → :func:pyramids.base._locks.default_lock (a :class:SerializableLock, or a dask.distributed.Lock when a client is active). False → :class:pyramids.base._locks.DummyLock. Only meaningful when chunks is not None.

None

Returns:

Type Description
ArrayLike

np.ndarray or dask.array.Array: The array data, eager

ArrayLike

(numpy) by default or lazy (dask) when chunks is

ArrayLike

supplied. The lazy array computes chunk-by-chunk through

ArrayLike

md_arr.ReadAsArray(array_start_idx=starts, count=counts).

Raises:

Type Description
ValueError

If called on a root MDIM container without a variable argument, when a subset is called with a conflicting variable name, when both window and bbox are supplied, or when both chunks and bbox are supplied (the lazy path doesn't yet honour bbox windowing — matching :class:pyramids.dataset.engines.IO.read_array's chunks= + window= rule).

ImportError

If chunks is given but dask is not installed. Install the [lazy] extra.

Examples:

  • Eager bbox read on a root container — the container auto-routes to the named variable. The noah fixture's geotransform is cell_size=0.5°, origin=(0, 90), 512×512 cells — so its coordinate range is x ∈ [0, 256) and y ∈ (-166, 90]. The bbox below sits well inside that range:
    >>> from pyramids.netcdf import NetCDF
    >>> nc = NetCDF.read_file(
    ...     "tests/data/netcdf/noah-precipitation-1979.nc"
    ... )
    >>> arr = nc.read_array(
    ...     variable="Band1",
    ...     bbox=(10.0, -50.0, 50.0, -20.0),
    ... )
    >>> arr.ndim in (2, 3)
    True
    
See Also
  • :meth:pyramids.dataset.Dataset.read_array: the same bbox= / epsg= surface for plain rasters.
  • :meth:crop: clip the whole dataset by bbox.
Source code in src/pyramids/netcdf/netcdf.py
def read_array(
    self,
    variable: str | None = None,
    band: int | None = None,
    window: list[int] | None = None,
    unpack: bool = False,
    *,
    bbox: tuple[float, float, float, float] | list[float] | None = None,
    epsg: Any = None,
    chunks: Any = None,
    lock: Any = None,
) -> ArrayLike:
    """Read array from the dataset (eager by default, lazy with `chunks`).

    Args:
        variable: When this instance is a root MDIM container,
            the variable name to read. When the instance is
            already a variable subset (`nc.get_variable("x")`)
            this argument must be `None` — the variable is
            already pinned.
        band: Band index to read, or None for all bands. Only
            honored on the eager path (`chunks=None`).
        window: Spatial window to read. Only honored on the
            eager path. Mutually exclusive with ``bbox``.
        unpack: If True and the variable has CF `scale_factor`
            and/or `add_offset`, apply the transformation
            `real = raw * scale + offset`. Defaults to False.
            Applied lazily via :mod:`dask.array` arithmetic when
            `chunks` is given — the compute graph stays lazy
            until the caller materializes it.
        bbox (keyword-only): ``(west, south, east, north)`` quadruple
            in the CRS named by ``epsg``. Internally wrapped in a
            one-row :class:`pyramids.feature.FeatureCollection` via
            :meth:`pyramids.feature.FeatureCollection.from_bbox`
            and routed through the same window path. Honored on
            the **eager path only** — same constraint as ``window``.
            Mutually exclusive with ``window``; combining with
            ``chunks`` raises :class:`ValueError` (mirroring
            :class:`pyramids.dataset.engines.IO.read_array`'s
            ``chunks=`` + ``window=`` rule).
        epsg (keyword-only): CRS for ``bbox`` — anything geopandas
            accepts for ``crs=`` (EPSG int, ``"EPSG:4326"``, WKT,
            :class:`pyproj.CRS`). Defaults to the dataset's own
            CRS, so a bbox in the dataset's native CRS needs no
            extra argument.
        chunks: Chunking spec for a lazy return. `None` (the
            default) returns an eager :class:`numpy.ndarray` and
            preserves the legacy behavior. Any of `int`,
            `tuple`, `dict`, or the string `"auto"` switches
            to a :class:`dask.array.Array` backed by MDArray
            chunk reads. Defaults chunked at the variable's
            native `GetBlockSize` (see
            :attr:`pyramids.netcdf.models.VariableInfo.block_size`);
            a conservative `(1,..., rows, cols)` fallback is
            used when the driver doesn't advertise one.
        lock: Lock passed to the underlying
            :class:`pyramids.base._file_manager.CachingFileManager`.
            `None` → :func:`pyramids.base._locks.default_lock`
            (a :class:`SerializableLock`, or a
            `dask.distributed.Lock` when a client is active).
            `False` → :class:`pyramids.base._locks.DummyLock`.
            Only meaningful when `chunks` is not `None`.

    Returns:
        np.ndarray or dask.array.Array: The array data, eager
        (numpy) by default or lazy (dask) when `chunks` is
        supplied. The lazy array computes chunk-by-chunk through
        `md_arr.ReadAsArray(array_start_idx=starts, count=counts)`.

    Raises:
        ValueError: If called on a root MDIM container without a
            `variable` argument, when a subset is called with a
            conflicting `variable` name, when both ``window`` and
            ``bbox`` are supplied, or when both ``chunks`` and
            ``bbox`` are supplied (the lazy path doesn't yet
            honour bbox windowing — matching
            :class:`pyramids.dataset.engines.IO.read_array`'s
            ``chunks=`` + ``window=`` rule).
        ImportError: If `chunks` is given but `dask` is not
            installed. Install the `[lazy]` extra.

    Examples:
        - Eager bbox read on a root container — the container
          auto-routes to the named variable. The noah fixture's
          geotransform is ``cell_size=0.5°``, ``origin=(0, 90)``,
          512×512 cells — so its coordinate range is
          ``x ∈ [0, 256)`` and ``y ∈ (-166, 90]``. The bbox
          below sits well inside that range:
            ```python
            >>> from pyramids.netcdf import NetCDF
            >>> nc = NetCDF.read_file(
            ...     "tests/data/netcdf/noah-precipitation-1979.nc"
            ... )
            >>> arr = nc.read_array(
            ...     variable="Band1",
            ...     bbox=(10.0, -50.0, 50.0, -20.0),
            ... )
            >>> arr.ndim in (2, 3)
            True

            ```

    See Also:
        - :meth:`pyramids.dataset.Dataset.read_array`: the same
          ``bbox=`` / ``epsg=`` surface for plain rasters.
        - :meth:`crop`: clip the whole dataset by bbox.
    """
    if bbox is not None:
        if window is not None:
            raise ValueError(
                "read_array accepts either `window` or `bbox`, not both"
            )
        if chunks is not None:
            raise ValueError(
                "read_array(chunks=..., bbox=...) is not supported; "
                "read lazily and slice the resulting dask array instead."
            )
        crs = epsg if epsg is not None else self.epsg
        if crs is None:
            raise ValueError(
                "read_array(bbox=…) requires an explicit `epsg=` when "
                "the NetCDF itself has no CRS (self.epsg is None) — a "
                "bbox without a CRS is ambiguous"
            )
        # Build the FC once at the override boundary and forward as
        # `window=fc, bbox=None` so the guards never re-fire on the
        # recursive container→subset call or on super().read_array.
        # Mirrors NetCDF.crop's "build mask once at the top" pattern.
        window = FeatureCollection.from_bbox(bbox, epsg=crs)
        bbox = None
        epsg = None
    is_container = (
        self._is_md_array and not self._is_subset and self.band_count == 0
    )
    if is_container:
        if variable is None:
            self._check_not_container("read_array")
        subset = self.get_variable(variable)
        return subset.read_array(
            band=band,
            window=window,
            unpack=unpack,
            bbox=bbox,
            epsg=epsg,
            chunks=chunks,
            lock=lock,
        )
    if variable is not None and variable != self._source_var_name:
        raise ValueError(
            f"This NetCDF instance is already pinned to variable "
            f"{self._source_var_name!r}; cannot re-read as "
            f"{variable!r}. Call read_array on the parent container "
            "instead."
        )
    if chunks is None:
        result = super().read_array(
            band=band,
            window=window,
            bbox=bbox,
            epsg=epsg,
        )
        if unpack:
            result = _apply_unpack(
                result,
                getattr(self, "_scale", None),
                getattr(self, "_offset", None),
            )
    else:
        parent = self._parent_nc if self._parent_nc is not None else self
        path = parent._file_name
        if path.startswith("NETCDF"):
            path = path.split(":")[1][1:-1]
        var_name = self._source_var_name
        if var_name is None:
            raise ValueError(
                "Lazy read requires a variable name; pass "
                "`variable=` on the container or call read_array "
                "on a subset from `get_variable()`."
            )
        result = build_lazy_array(
            path=path,
            variable_name=var_name,
            chunks=chunks,
            lock=lock,
        )
        if unpack:
            result = _apply_unpack(
                result,
                getattr(self, "_scale", None),
                getattr(self, "_offset", None),
            )
    return result

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

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

On a root MDIM container this crops every variable and returns a new in-memory NetCDF container with the cropped results. On a variable subset it delegates to the parent :meth:pyramids.dataset.Dataset.crop and re-wraps the result as :class:NetCDF to preserve variable metadata (_band_dim_name, _band_dim_values, :meth:sel).

Parameters:

Name Type Description Default
mask Any

GeoDataFrame with polygon geometry, or a Dataset to use as a spatial mask. Mutually exclusive with bbox; exactly one of the two must be supplied.

None
touch bool

If True, include cells that touch the mask boundary. Defaults to True.

True
bbox keyword - only

(west, south, east, north) quadruple in the CRS named by epsg. Internally wrapped in a one-row :class:FeatureCollection via :meth:FeatureCollection.from_bbox and routed through the same polygon path. The FC is built once so a root-container crop does not rebuild it for every variable. Mutually exclusive with mask.

None
epsg keyword - only

CRS for bbox — anything geopandas accepts for crs= (EPSG int, "EPSG:4326", WKT, :class: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 handles it).

None

Returns:

Name Type Description
NetCDF NetCDF

Cropped container or variable subset.

Raises:

Type Description
ValueError

Both mask and bbox were supplied.

TypeError

Neither mask nor bbox was supplied.

Examples:

  • Crop every variable of a root NetCDF container by a bbox in the dataset's own CRS (epsg is inferred). The noah fixture's geotransform is cell_size=0.5°, origin=(0, 90), 512×512 cells — so its coordinate range is x ∈ [0, 256) and y ∈ (-166, 90]. The bbox below sits well inside that range:
    >>> from pyramids.netcdf import NetCDF
    >>> nc = NetCDF.read_file(
    ...     "tests/data/netcdf/noah-precipitation-1979.nc"
    ... )
    >>> cropped = nc.crop(bbox=(10.0, -50.0, 50.0, -20.0))
    >>> sorted(cropped.variables) == sorted(nc.variables)
    True
    
  • Mutual-exclusion guard:
    >>> from pyramids.feature import FeatureCollection
    >>> from pyramids.netcdf import NetCDF
    >>> nc = NetCDF.read_file(
    ...     "tests/data/netcdf/noah-precipitation-1979.nc"
    ... )
    >>> fc = FeatureCollection.from_bbox(
    ...     (10.0, -50.0, 50.0, -20.0), epsg=nc.epsg,
    ... )
    >>> try:
    ...     nc.crop(mask=fc, bbox=(10.0, -50.0, 50.0, -20.0))
    ... except ValueError as exc:
    ...     print("not both" in str(exc))
    True
    
See Also
  • :meth:pyramids.dataset.Dataset.crop: same bbox= / epsg= surface for plain rasters.
  • :meth:pyramids.feature.FeatureCollection.from_bbox: the shared primitive that builds the one-row FC.
Source code in src/pyramids/netcdf/netcdf.py
def crop(
    self,
    mask: Any = None,
    touch: bool = True,
    *,
    bbox: tuple[float, float, float, float] | list[float] | None = None,
    epsg: Any = None,
) -> NetCDF:
    """Crop the dataset using a polygon mask, a raster mask, or a bbox tuple.

    On a **root MDIM container** this crops every variable and
    returns a new in-memory NetCDF container with the cropped
    results. On a **variable subset** it delegates to the parent
    :meth:`pyramids.dataset.Dataset.crop` and re-wraps the result
    as :class:`NetCDF` to preserve variable metadata
    (``_band_dim_name``, ``_band_dim_values``, :meth:`sel`).

    Args:
        mask: GeoDataFrame with polygon geometry, or a Dataset
            to use as a spatial mask. Mutually exclusive with
            ``bbox``; exactly one of the two must be supplied.
        touch: If True, include cells that touch the mask
            boundary. Defaults to True.
        bbox (keyword-only): ``(west, south, east, north)``
            quadruple in the CRS named by ``epsg``. Internally
            wrapped in a one-row :class:`FeatureCollection` via
            :meth:`FeatureCollection.from_bbox` and routed through
            the same polygon path. The FC is built **once** so a
            root-container crop does not rebuild it for every
            variable. Mutually exclusive with ``mask``.
        epsg (keyword-only): CRS for ``bbox`` — anything geopandas
            accepts for ``crs=`` (EPSG int, ``"EPSG:4326"``, WKT,
            :class:`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 handles
            it).

    Returns:
        NetCDF: Cropped container or variable subset.

    Raises:
        ValueError: Both ``mask`` and ``bbox`` were supplied.
        TypeError: Neither ``mask`` nor ``bbox`` was supplied.

    Examples:
        - Crop every variable of a root NetCDF container by a
          bbox in the dataset's own CRS (`epsg` is inferred). The
          noah fixture's geotransform is ``cell_size=0.5°``,
          ``origin=(0, 90)``, 512×512 cells — so its coordinate
          range is ``x ∈ [0, 256)`` and ``y ∈ (-166, 90]``. The
          bbox below sits well inside that range:
            ```python
            >>> from pyramids.netcdf import NetCDF
            >>> nc = NetCDF.read_file(
            ...     "tests/data/netcdf/noah-precipitation-1979.nc"
            ... )
            >>> cropped = nc.crop(bbox=(10.0, -50.0, 50.0, -20.0))
            >>> sorted(cropped.variables) == sorted(nc.variables)
            True

            ```
        - Mutual-exclusion guard:
            ```python
            >>> from pyramids.feature import FeatureCollection
            >>> from pyramids.netcdf import NetCDF
            >>> nc = NetCDF.read_file(
            ...     "tests/data/netcdf/noah-precipitation-1979.nc"
            ... )
            >>> fc = FeatureCollection.from_bbox(
            ...     (10.0, -50.0, 50.0, -20.0), epsg=nc.epsg,
            ... )
            >>> try:
            ...     nc.crop(mask=fc, bbox=(10.0, -50.0, 50.0, -20.0))
            ... except ValueError as exc:
            ...     print("not both" in str(exc))
            True

            ```

    See Also:
        - :meth:`pyramids.dataset.Dataset.crop`: same ``bbox=`` /
          ``epsg=`` surface for plain rasters.
        - :meth:`pyramids.feature.FeatureCollection.from_bbox`: the
          shared primitive that builds the one-row FC.
    """
    if bbox is not None:
        if mask is not None:
            raise ValueError("crop accepts either `mask` or `bbox`, not both")
        crs = epsg if epsg is not None else self.epsg
        if crs is None:
            raise ValueError(
                "crop(bbox=…) requires an explicit `epsg=` when the "
                "NetCDF itself has no CRS (self.epsg is None) — a "
                "bbox without a CRS is ambiguous"
            )
        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 self._is_md_array and not self._is_subset and self.band_count == 0:
        result = self._apply_to_all_variables(
            "crop",
            {"mask": mask, "touch": touch},
        )
    else:
        result = super().crop(mask=mask, touch=touch)
        result = self._preserve_netcdf_metadata(result)
    return result

reduce(dim, how='mean', *, groupby=None, skipna=True) #

Reduce every variable along a named dimension and return a new NetCDF.

Collapses or coarsens one non-spatial dimension (time, pressure_level, depth, an ensemble member, …) of every variable that has it, leaving variables without dim and all other dimensions, coordinates, CRS, and the grid untouched. The result is a new :class:NetCDF container — no xarray involved.

Parameters:

Name Type Description Default
dim str

Name of the non-spatial dimension to reduce. Must be one of a variable's band dimensions (as exposed by sel); spatial lat / lon dimensions are not reducible here.

required
how str

Reduction operation — one of "mean", "sum", "min", "max", "std", "var".

'mean'
groupby list | tuple | str | None

Controls collapse vs. windowed reduction:

  • None (default): collapse dim entirely (it is removed from the output).
  • a sequence of per-index labels (length = the size of dim): reduce each group of equal labels; dim is coarsened to one slice per distinct label, in first-appearance order.
  • a pandas offset alias (e.g. "1MS", "1D", "YS"): group dim by calendar window. Only valid when dim carries a decodable CF time coordinate.
None
skipna bool

When True (default), mask each variable's NoData value to NaN and reduce with the nan-aware operation, then refill NaN results with NoData. The output is float64. When False, reduce the raw values with the plain operation.

True

Returns:

Name Type Description
NetCDF NetCDF

A new container with dim removed (groupby=None) or

NetCDF

coarsened (windowed). When the windowed dimension keeps a numeric

NetCDF

coordinate, each output slice is labelled with the first source

NetCDF

coordinate value of its window.

Raises:

Type Description
ValueError

When how is unknown, the container has no data variables, dim is not a non-spatial dimension of any variable, a frequency groupby is given but dim has no decodable time coordinate, or the grouping does not cover dim exactly.

Examples:

  • Monthly mean of an ERA5-style (time, lat, lon) file:
    >>> from pyramids.netcdf import NetCDF  # doctest: +SKIP
    >>> nc = NetCDF.read_file("era5_t2m_hourly.nc")  # doctest: +SKIP
    >>> monthly = nc.reduce("time", "mean", groupby="1MS")  # doctest: +SKIP
    >>> monthly.get_variable("t2m").band_count  # doctest: +SKIP
    12
    
  • Collapse a pressure-level axis to its column mean:
    >>> column = nc.reduce("pressure_level", "mean")  # doctest: +SKIP
    >>> "pressure_level" in column.get_variable("t").dimensions  # doctest: +SKIP
    False
    
Source code in src/pyramids/netcdf/netcdf.py
def reduce(
    self,
    dim: str,
    how: str = "mean",
    *,
    groupby: list | tuple | str | None = None,
    skipna: bool = True,
) -> NetCDF:
    """Reduce every variable along a named dimension and return a new NetCDF.

    Collapses or coarsens one non-spatial dimension (`time`,
    `pressure_level`, `depth`, an ensemble member, …) of every variable
    that has it, leaving variables without `dim` and all other dimensions,
    coordinates, CRS, and the grid untouched. The result is a new
    :class:`NetCDF` container — no xarray involved.

    Args:
        dim: Name of the non-spatial dimension to reduce. Must be one of a
            variable's band dimensions (as exposed by ``sel``); spatial
            ``lat`` / ``lon`` dimensions are not reducible here.
        how: Reduction operation — one of ``"mean"``, ``"sum"``, ``"min"``,
            ``"max"``, ``"std"``, ``"var"``.
        groupby: Controls collapse vs. windowed reduction:

            - ``None`` (default): collapse `dim` entirely (it is removed
              from the output).
            - a sequence of per-index labels (length = the size of `dim`):
              reduce each group of equal labels; `dim` is coarsened to one
              slice per distinct label, in first-appearance order.
            - a pandas offset alias (e.g. ``"1MS"``, ``"1D"``, ``"YS"``):
              group `dim` by calendar window. Only valid when `dim` carries
              a decodable CF time coordinate.
        skipna: When ``True`` (default), mask each variable's NoData value to
            ``NaN`` and reduce with the ``nan``-aware operation, then refill
            ``NaN`` results with NoData. The output is float64. When
            ``False``, reduce the raw values with the plain operation.

    Returns:
        NetCDF: A new container with `dim` removed (``groupby=None``) or
        coarsened (windowed). When the windowed dimension keeps a numeric
        coordinate, each output slice is labelled with the first source
        coordinate value of its window.

    Raises:
        ValueError: When `how` is unknown, the container has no data
            variables, `dim` is not a non-spatial dimension of any variable,
            a frequency `groupby` is given but `dim` has no decodable time
            coordinate, or the grouping does not cover `dim` exactly.

    Examples:
        - Monthly mean of an ERA5-style ``(time, lat, lon)`` file:
            ```python
            >>> from pyramids.netcdf import NetCDF  # doctest: +SKIP
            >>> nc = NetCDF.read_file("era5_t2m_hourly.nc")  # doctest: +SKIP
            >>> monthly = nc.reduce("time", "mean", groupby="1MS")  # doctest: +SKIP
            >>> monthly.get_variable("t2m").band_count  # doctest: +SKIP
            12

            ```
        - Collapse a pressure-level axis to its column mean:
            ```python
            >>> column = nc.reduce("pressure_level", "mean")  # doctest: +SKIP
            >>> "pressure_level" in column.get_variable("t").dimensions  # doctest: +SKIP
            False

            ```
    """
    if how not in _REDUCERS:
        raise ValueError(f"how must be one of {sorted(_REDUCERS)}; got {how!r}")
    if not self.variable_names:
        raise ValueError("Cannot reduce an empty container (no data variables).")

    group_positions = self._resolve_group_positions(dim, groupby)

    result = None
    found = False
    for var_name in self.variable_names:
        var = self.get_variable(var_name)
        arr = self._materialize_variable_array(var)
        band_names = list(var._band_dim_names)
        values_map = dict(var._band_dim_values_map)
        ndv = self._scalar_no_data_value(var.no_data_value)

        if dim in band_names:
            found = True
            axis = band_names.index(dim)
            arr, band_names, values_map = self._reduce_variable_array(
                arr,
                axis,
                dim,
                band_names,
                values_map,
                how,
                skipna,
                ndv,
                groupby,
                group_positions,
            )

        result = self._stack_reduced_variable(
            result,
            var_name,
            arr,
            var.geotransform,
            var.epsg,
            ndv,
            band_names,
            values_map,
        )

    if not found:
        raise ValueError(
            f"Dimension {dim!r} is not a non-spatial dimension of any "
            f"variable in this container."
        )
    return result

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

Reproject the dataset to a different CRS.

On a root MDIM container this reprojects every variable and returns a new container. On a variable subset it delegates to Dataset.to_crs() and wraps the result as NetCDF to preserve variable metadata.

Parameters:

Name Type Description Default
to_epsg int

Target EPSG code (e.g., 4326, 32637).

required
method str

Resampling method. Defaults to "nearest neighbor".

'nearest neighbor'
maintain_alignment bool

If True, keep the same number of rows and columns. Defaults to False.

False

Returns:

Name Type Description
NetCDF NetCDF

Reprojected container or variable subset.

Source code in src/pyramids/netcdf/netcdf.py
def to_crs(
    self,
    to_epsg: int,
    method: str = "nearest neighbor",
    maintain_alignment: bool = False,
) -> NetCDF:
    """Reproject the dataset to a different CRS.

    On a **root MDIM container** this reprojects every variable
    and returns a new container. On a **variable subset** it
    delegates to `Dataset.to_crs()` and wraps the result as
    `NetCDF` to preserve variable metadata.

    Args:
        to_epsg: Target EPSG code (e.g., 4326, 32637).
        method: Resampling method. Defaults to `"nearest neighbor"`.
        maintain_alignment: If True, keep the same number of rows
            and columns. Defaults to False.

    Returns:
        NetCDF: Reprojected container or variable subset.
    """
    if self._is_md_array and not self._is_subset and self.band_count == 0:
        result = self._apply_to_all_variables(
            "to_crs",
            {
                "to_epsg": to_epsg,
                "method": method,
                "maintain_alignment": maintain_alignment,
            },
        )
    else:
        result = super().to_crs(
            to_epsg=to_epsg,
            method=method,
            maintain_alignment=maintain_alignment,
        )
        result = self._preserve_netcdf_metadata(result)
    return result

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

Resample the dataset to a different cell size.

On a root MDIM container this resamples every variable and returns a new container. On a variable subset it delegates to Dataset.resample() and wraps the result as NetCDF to preserve variable metadata.

Parameters:

Name Type Description Default
cell_size float

New cell size.

required
method str

Resampling method. Defaults to "nearest neighbor".

'nearest neighbor'

Returns:

Name Type Description
NetCDF NetCDF

Resampled container or variable subset.

Source code in src/pyramids/netcdf/netcdf.py
def resample(
    self,
    cell_size: float,
    method: str = "nearest neighbor",
) -> NetCDF:
    """Resample the dataset to a different cell size.

    On a **root MDIM container** this resamples every variable
    and returns a new container. On a **variable subset** it
    delegates to `Dataset.resample()` and wraps the result as
    `NetCDF` to preserve variable metadata.

    Args:
        cell_size: New cell size.
        method: Resampling method. Defaults to `"nearest neighbor"`.

    Returns:
        NetCDF: Resampled container or variable subset.
    """
    if self._is_md_array and not self._is_subset and self.band_count == 0:
        result = self._apply_to_all_variables(
            "resample",
            {"cell_size": cell_size, "method": method},
        )
    else:
        result = super().resample(
            cell_size=cell_size,
            method=method,
        )
        result = self._preserve_netcdf_metadata(result)
    return result

sel(**kwargs) #

Select a subset of bands by coordinate values along a band dim.

Extracts bands whose coordinate values match the given criteria. Works on any variable subset that has at least one non-spatial dimension tracked in _band_dim_names (set by get_variable()). For 4-D+ files with multiple non-spatial dims (e.g. (valid_time, pressure_level, lat, lon) from CDS-Beta ERA5), sel() may name any of those dims; chaining sel() pins multiple band dims one at a time.

The result is always a NetCDF instance with the same variable metadata preserved, so sel() can be chained and NetCDF-only methods like read_array(unpack=True) remain available.

Internals: GDAL flattens an MDIM array (d_0, ..., d_{n-1}, lat, lon) row-major over the non-spatial dims, with the last non-spatial dim varying fastest. For a band dim at axis k with sizes S, the implementation uses stride = prod(S[k+1:]), block = stride * S[k], and total = prod(S) to map each pinned index p to the band ranges [outer + p*stride .. outer + (p+1)*stride) for every outer in range(0, total, block). For a single-band-dim variable this reduces to the identity band_indices == dim_indices.

Parameters:

Name Type Description Default
**kwargs Any

Exactly one keyword argument. The key must name a tracked band dim (one of self._band_dim_names); the value is one of:

  • A single number: select one band by exact value.
  • A list of numbers: select multiple bands.
  • A slice(start, stop): select bands whose coord falls between start and stop inclusive. Bounds are normalised before matching, so the slice is direction-agnostic — works on both ascending and descending coord axes (e.g. latitude stored north-to-south).
{}

Returns:

Name Type Description
NetCDF NetCDF

A new variable subset with only the selected bands and full metadata preserved. _band_dim_sizes reflects the pinned axis (e.g. (4, 1) after pinning a level on a (4, 3) cube), and _band_dim_values_map[dim_name] shrinks to the chosen values. Legacy _band_dim_values is refreshed from the (possibly updated) primary entry in the map.

Raises:

Type Description
ValueError

If exactly one kwarg isn't passed, the variable has no tracked band dims, the named dim isn't one of _band_dim_names, the dim has no coord values (_band_dim_values_map[dim] is None), or no bands match the selector.

Examples:

  • Pin a pressure level on a 4-D file:
    >>> nc = NetCDF.read_file(  # doctest: +SKIP
    ...     "tests/data/netcdf/pyramids-netcdf-4d.nc"
    ... )
    >>> var = nc.get_variable("temperature")  # doctest: +SKIP
    >>> sub = var.sel(pressure_level=500)  # doctest: +SKIP
    >>> sub._band_dim_sizes  # doctest: +SKIP
    (4, 1)
    
  • Chain sel() to pin both time and level (collapses to 2-D):
    >>> sub = var.sel(time=12).sel(pressure_level=500)  # doctest: +SKIP
    >>> sub.read_array().shape  # doctest: +SKIP
    (5, 6)
    
  • Use a list selector to keep only two of the levels:
    >>> sub = var.sel(pressure_level=[1000, 500])  # doctest: +SKIP
    >>> sub._band_dim_values_map["pressure_level"]  # doctest: +SKIP
    [1000.0, 500.0]
    
  • Use a slice selector — direction-agnostic, so the same call works on ascending coords (e.g. [500, 850, 1000]) and on descending coords (e.g. [1000, 850, 500]):
    >>> sub = var.sel(pressure_level=slice(500, 1000))  # doctest: +SKIP
    >>> sub._band_dim_values_map["pressure_level"]  # doctest: +SKIP
    [1000.0, 850.0, 500.0]
    
Notes

All four examples above are tagged # doctest: +SKIP because they need a real on-disk NetCDF fixture. The runnable equivalents live in:

  • tests/netcdf/test_sel.py::TestSelSingleValue / TestSelList / TestSelSlice (3-D scenarios — single value, list selector, slice selector including the direction-agnostic path).
  • tests/netcdf/test_sel_4d.py::TestSelByPressureLevel / TestSelByTime / TestSelChained (4-D scenarios — pin secondary / primary dim, chained sel().sel()).
  • tests/netcdf/test_sel_4d.py::TestSelErrorMessages (the error contract).
See Also

get_variable: builds a variable subset and populates the band-dim metadata that sel() consumes.

Source code in src/pyramids/netcdf/netcdf.py
def sel(self, **kwargs: Any) -> NetCDF:
    """Select a subset of bands by coordinate values along a band dim.

    Extracts bands whose coordinate values match the given criteria.
    Works on any variable subset that has at least one non-spatial
    dimension tracked in `_band_dim_names` (set by
    `get_variable()`). For 4-D+ files with multiple non-spatial
    dims (e.g. `(valid_time, pressure_level, lat, lon)` from CDS-Beta
    ERA5), `sel()` may name any of those dims; chaining `sel()`
    pins multiple band dims one at a time.

    The result is always a `NetCDF` instance with the same variable
    metadata preserved, so `sel()` can be chained and NetCDF-only
    methods like `read_array(unpack=True)` remain available.

    Internals: GDAL flattens an MDIM array `(d_0, ..., d_{n-1},
    lat, lon)` row-major over the non-spatial dims, with the last
    non-spatial dim varying fastest. For a band dim at axis `k`
    with sizes `S`, the implementation uses
    `stride = prod(S[k+1:])`, `block = stride * S[k]`, and
    `total = prod(S)` to map each pinned index `p` to the band
    ranges `[outer + p*stride .. outer + (p+1)*stride)` for every
    `outer in range(0, total, block)`. For a single-band-dim
    variable this reduces to the identity
    `band_indices == dim_indices`.

    Args:
        **kwargs: Exactly one keyword argument. The key must name a
            tracked band dim (one of `self._band_dim_names`); the
            value is one of:

            - A single number: select one band by exact value.
            - A list of numbers: select multiple bands.
            - A `slice(start, stop)`: select bands whose coord
              falls between `start` and `stop` inclusive. Bounds
              are normalised before matching, so the slice is
              direction-agnostic — works on both ascending and
              descending coord axes (e.g. `latitude` stored
              north-to-south).

    Returns:
        NetCDF: A new variable subset with only the selected bands
            and full metadata preserved. `_band_dim_sizes` reflects
            the pinned axis (e.g. `(4, 1)` after pinning a level on
            a `(4, 3)` cube), and `_band_dim_values_map[dim_name]`
            shrinks to the chosen values. Legacy `_band_dim_values`
            is refreshed from the (possibly updated) primary entry
            in the map.

    Raises:
        ValueError: If exactly one kwarg isn't passed, the variable
            has no tracked band dims, the named dim isn't one of
            `_band_dim_names`, the dim has no coord values
            (`_band_dim_values_map[dim] is None`), or no bands match
            the selector.

    Examples:
        - Pin a pressure level on a 4-D file:
            ```python
            >>> nc = NetCDF.read_file(  # doctest: +SKIP
            ...     "tests/data/netcdf/pyramids-netcdf-4d.nc"
            ... )
            >>> var = nc.get_variable("temperature")  # doctest: +SKIP
            >>> sub = var.sel(pressure_level=500)  # doctest: +SKIP
            >>> sub._band_dim_sizes  # doctest: +SKIP
            (4, 1)

            ```
        - Chain `sel()` to pin both time and level (collapses to 2-D):
            ```python
            >>> sub = var.sel(time=12).sel(pressure_level=500)  # doctest: +SKIP
            >>> sub.read_array().shape  # doctest: +SKIP
            (5, 6)

            ```
        - Use a list selector to keep only two of the levels:
            ```python
            >>> sub = var.sel(pressure_level=[1000, 500])  # doctest: +SKIP
            >>> sub._band_dim_values_map["pressure_level"]  # doctest: +SKIP
            [1000.0, 500.0]

            ```
        - Use a slice selector — direction-agnostic, so the same
          call works on ascending coords (e.g. `[500, 850, 1000]`)
          and on descending coords (e.g. `[1000, 850, 500]`):
            ```python
            >>> sub = var.sel(pressure_level=slice(500, 1000))  # doctest: +SKIP
            >>> sub._band_dim_values_map["pressure_level"]  # doctest: +SKIP
            [1000.0, 850.0, 500.0]

            ```

    Notes:
        All four examples above are tagged `# doctest: +SKIP`
        because they need a real on-disk NetCDF fixture. The
        runnable equivalents live in:

        - `tests/netcdf/test_sel.py::TestSelSingleValue` /
          `TestSelList` / `TestSelSlice` (3-D scenarios — single
          value, list selector, slice selector including the
          direction-agnostic path).
        - `tests/netcdf/test_sel_4d.py::TestSelByPressureLevel` /
          `TestSelByTime` / `TestSelChained` (4-D scenarios —
          pin secondary / primary dim, chained `sel().sel()`).
        - `tests/netcdf/test_sel_4d.py::TestSelErrorMessages` (the
          error contract).

    See Also:
        `get_variable`: builds a variable subset and populates the
            band-dim metadata that `sel()` consumes.
    """
    if len(kwargs) != 1:
        raise ValueError("sel() requires exactly one keyword argument.")

    dim_name, selector = next(iter(kwargs.items()))

    if not self._band_dim_names:
        raise ValueError(
            "sel() requires a variable with at least one non-spatial "
            "dimension. This variable has no band dimensions tracked."
        )
    if dim_name not in self._band_dim_names:
        raise ValueError(
            f"Dimension {dim_name!r} does not match any band dimension "
            f"of this variable {list(self._band_dim_names)!r}."
        )

    coords = self._band_dim_values_map.get(dim_name)
    if coords is None:
        raise ValueError(
            f"No coordinate values available for dimension {dim_name!r}."
        )

    if isinstance(selector, slice):
        start = selector.start if selector.start is not None else coords[0]
        stop = selector.stop if selector.stop is not None else coords[-1]
        # Normalise bounds so the match works on both ascending and
        # descending coord axes (e.g. `latitude = [44, 43, 42, 41,
        # 40]` from CDS-Beta retrievals). Without this, a
        # `slice(None, None)` on a descending axis defaults to
        # `start=44, stop=40`, the test `44 <= v <= 40` matches
        # nothing, and the user gets a confusing "no bands match"
        # error instead of "select everything".
        lo, hi = (start, stop) if start <= stop else (stop, start)
        dim_indices = [i for i, v in enumerate(coords) if lo <= v <= hi]
    elif isinstance(selector, list):
        coord_set = set(selector)
        dim_indices = [i for i, v in enumerate(coords) if v in coord_set]
    else:
        dim_indices = [i for i, v in enumerate(coords) if v == selector]

    if not dim_indices:
        raise ValueError(
            f"No bands match {dim_name}={selector}. " f"Available values: {coords}"
        )

    # Map (pinned dim index along dim_name) -> classic-band indices.
    # GDAL flattens (d_0, ..., d_{n-1}, lat, lon) row-major over the
    # non-spatial dims: the last non-spatial dim varies fastest. For
    # a band-dim at axis `k` with sizes S, stride = prod(S[k+1:]) and
    # block = stride * S[k]. For each pinned index p we emit
    # `[outer + p*stride .. outer + (p+1)*stride)` for every outer in
    # range(0, total, block). Reduces to identity (band_indices ==
    # dim_indices) when there is exactly one band dim.
    dim_axis = self._band_dim_names.index(dim_name)
    sizes = self._band_dim_sizes
    stride = math.prod(sizes[dim_axis + 1 :])
    block = stride * sizes[dim_axis]
    total = math.prod(sizes)

    band_indices: list[int] = []
    for pinned in dim_indices:
        for outer_start in range(0, total, block):
            base = outer_start + pinned * stride
            band_indices.extend(range(base, base + stride))

    selected_coords = [coords[i] for i in dim_indices]

    # Read only the selected bands instead of loading the full array.
    # Each band index maps to a 1-based GDAL band in the classic
    # dataset view created by get_variable(). Band-by-band reads
    # avoid loading the entire variable into memory.
    band_arrays = [self.read_array(band=i) for i in band_indices]
    if len(band_arrays) == 1:
        selected = band_arrays[0]
    else:
        selected = np.stack(band_arrays, axis=0)

    ndv = self.no_data_value
    ndv_scalar = ndv[0] if isinstance(ndv, list) and ndv else ndv
    ds_result = Dataset.create_from_array(
        selected,
        geo=self.geotransform,
        epsg=self.epsg,
        no_data_value=ndv_scalar,
    )
    result = self._preserve_netcdf_metadata(ds_result)
    new_sizes = tuple(
        len(dim_indices) if i == dim_axis else s for i, s in enumerate(sizes)
    )
    result._band_dim_sizes = new_sizes
    result._band_dim_values_map = dict(self._band_dim_values_map)
    result._band_dim_values_map[dim_name] = selected_coords
    # Refresh legacy primary-dim values to match the (possibly
    # updated) primary entry in the map. `_band_dim_name` is
    # guaranteed non-None here: entry to `sel()` requires
    # `_band_dim_names` to be non-empty, and the build path always
    # sets `_band_dim_name = _band_dim_names[0]`.
    result._band_dim_values = result._band_dim_values_map.get(result._band_dim_name)

    return result

read_file(path, read_only=True, open_as_multi_dimensional=True, file_i=0, *, vsi=None) classmethod #

Open a NetCDF file from a path, URL, or archive member.

Plain local paths, /vsi* paths, and URL schemes (http(s)://, s3://, gs://, az:// / abfs://, file://) are all accepted — URLs are transparently rewritten to GDAL's virtual filesystem. Compressed archives (.zip / .tar / .tar.gz / .gz) are detected from the extension; pass vsi= to be explicit about the archive kind (e.g. an archive without a recognised extension, or to open a specific member by index).

Parameters:

Name Type Description Default
path str | Path

Path or URL of the .nc file or archive.

required
read_only bool

If True, open in read-only mode. Set to False for write access. Defaults to True.

True
open_as_multi_dimensional bool

If True, open with gdal.OF_MULTIDIM_RASTER to access the full group / dimension / variable hierarchy. If False, open in classic raster mode where each variable is a subdataset. Defaults to True.

True
file_i int

Which member to open when path is (or is forced to be) a multi-file archive. Default 0.

0
vsi str | None

Treat path as an archive of this kind and open member file_i from inside it: "zip", "tar" (also "tar.gz" / "tgz"), "gzip" (also "gz"), or "auto" (infer from the extension). Default Nonepath is opened directly / extension-sniffed as before. GDAL's archive handlers key off the file-name extension, so an extension-less download URL must first be fetched and saved with a .zip name (or written to /vsimem/<name>.zip via :func:osgeo.gdal.FileFromMemBuffer).

Platform caveat for NetCDF: GDAL's netCDF driver requires Linux userfaultfd to open a .nc from any /vsi* path (archive, /vsicurl/, /vsimem/ via this route). On Windows / macOS the call raises a RuntimeError from GDAL pointing at the missing userfaultfd. Use :meth:from_bytes to read a downloaded .nc from memory on those platforms.

None

Returns:

Name Type Description
NetCDF NetCDF

The opened dataset.

Examples:

  • Open a plain .nc from disk and list its variables:
    >>> from pyramids.netcdf import NetCDF
    >>> nc = NetCDF.read_file(
    ...     "tests/data/netcdf/noah-precipitation-1979.nc"
    ... )
    >>> sorted(nc.variables)
    ['Band1', 'Band2', 'Band3', 'Band4']
    
  • Open a NetCDF held inside a zip — vsi="auto" infers the archive kind from the .zip extension. GDAL's netCDF driver needs Linux userfaultfd to read through /vsizip/, so the open actually succeeds only on Linux; the try / except keeps the doctest runnable on Windows / macOS too (where it falls through with the RuntimeError GDAL raises):
    >>> import tempfile, zipfile
    >>> from pathlib import Path
    >>> from pyramids.netcdf import NetCDF
    >>> src = Path("tests/data/netcdf/noah-precipitation-1979.nc")
    >>> with tempfile.TemporaryDirectory() as tmp:
    ...     zpath = Path(tmp) / "noah.zip"
    ...     with zipfile.ZipFile(zpath, "w") as zf:
    ...         zf.write(src, arcname="noah.nc")
    ...     try:
    ...         nc = NetCDF.read_file(zpath, vsi="auto")
    ...         variables = sorted(nc.variables)
    ...     except RuntimeError:
    ...         variables = ["Band1", "Band2", "Band3", "Band4"]
    >>> variables
    ['Band1', 'Band2', 'Band3', 'Band4']
    
See Also
  • :meth:from_bytes: open a NetCDF from in-memory bytes.
  • :meth:pyramids.dataset.Dataset.read_file: the same vsi= / file_i= surface for GeoTIFFs.
Source code in src/pyramids/netcdf/netcdf.py
@classmethod
def read_file(  # type: ignore[override]
    cls,
    path: str | Path,
    read_only: bool = True,
    open_as_multi_dimensional: bool = True,
    file_i: int = 0,
    *,
    vsi: str | None = None,
) -> NetCDF:
    """Open a NetCDF file from a path, URL, or archive member.

    Plain local paths, ``/vsi*`` paths, and URL schemes
    (``http(s)://``, ``s3://``, ``gs://``, ``az://`` / ``abfs://``,
    ``file://``) are all accepted — URLs are transparently rewritten
    to GDAL's virtual filesystem. Compressed archives (``.zip`` /
    ``.tar`` / ``.tar.gz`` / ``.gz``) are detected from the
    extension; pass ``vsi=`` to be explicit about the archive kind
    (e.g. an archive without a recognised extension, or to open a
    specific member by index).

    Args:
        path: Path or URL of the ``.nc`` file or archive.
        read_only: If True, open in read-only mode. Set to False for
            write access. Defaults to True.
        open_as_multi_dimensional: If True, open with
            ``gdal.OF_MULTIDIM_RASTER`` to access the full group /
            dimension / variable hierarchy. If False, open in
            classic raster mode where each variable is a subdataset.
            Defaults to True.
        file_i: Which member to open when ``path`` is (or is forced
            to be) a multi-file archive. Default ``0``.
        vsi: Treat ``path`` as an archive of this kind and open
            member ``file_i`` from inside it: ``"zip"``, ``"tar"``
            (also ``"tar.gz"`` / ``"tgz"``), ``"gzip"`` (also
            ``"gz"``), or ``"auto"`` (infer from the extension).
            Default ``None`` — ``path`` is opened directly /
            extension-sniffed as before. GDAL's archive handlers
            key off the file-name extension, so an extension-less
            download URL must first be fetched and saved with a
            ``.zip`` name (or written to ``/vsimem/<name>.zip`` via
            :func:`osgeo.gdal.FileFromMemBuffer`).

            **Platform caveat for NetCDF:** GDAL's netCDF driver
            requires Linux ``userfaultfd`` to open a ``.nc`` from
            any ``/vsi*`` path (archive, ``/vsicurl/``, ``/vsimem/``
            via this route). On Windows / macOS the call raises a
            ``RuntimeError`` from GDAL pointing at the missing
            ``userfaultfd``. Use :meth:`from_bytes` to read a
            downloaded ``.nc`` from memory on those platforms.

    Returns:
        NetCDF: The opened dataset.

    Examples:
        - Open a plain ``.nc`` from disk and list its variables:
            ```python
            >>> from pyramids.netcdf import NetCDF
            >>> nc = NetCDF.read_file(
            ...     "tests/data/netcdf/noah-precipitation-1979.nc"
            ... )
            >>> sorted(nc.variables)
            ['Band1', 'Band2', 'Band3', 'Band4']

            ```
        - Open a NetCDF held inside a zip — ``vsi="auto"`` infers
          the archive kind from the ``.zip`` extension. GDAL's
          netCDF driver needs Linux ``userfaultfd`` to read through
          ``/vsizip/``, so the open actually succeeds only on Linux;
          the ``try`` / ``except`` keeps the doctest runnable on
          Windows / macOS too (where it falls through with the
          ``RuntimeError`` GDAL raises):
            ```python
            >>> import tempfile, zipfile
            >>> from pathlib import Path
            >>> from pyramids.netcdf import NetCDF
            >>> src = Path("tests/data/netcdf/noah-precipitation-1979.nc")
            >>> with tempfile.TemporaryDirectory() as tmp:
            ...     zpath = Path(tmp) / "noah.zip"
            ...     with zipfile.ZipFile(zpath, "w") as zf:
            ...         zf.write(src, arcname="noah.nc")
            ...     try:
            ...         nc = NetCDF.read_file(zpath, vsi="auto")
            ...         variables = sorted(nc.variables)
            ...     except RuntimeError:
            ...         variables = ["Band1", "Band2", "Band3", "Band4"]
            >>> variables
            ['Band1', 'Band2', 'Band3', 'Band4']

            ```

    See Also:
        - :meth:`from_bytes`: open a NetCDF from in-memory bytes.
        - :meth:`pyramids.dataset.Dataset.read_file`: the same
          ``vsi=`` / ``file_i=`` surface for GeoTIFFs.
    """
    src = _io.read_file(
        path,
        read_only,
        open_as_multi_dimensional,
        file_i=file_i,
        vsi=vsi,
    )
    access = "read_only" if read_only else "write"
    return cls(
        src, access=access, open_as_multi_dimensional=open_as_multi_dimensional
    )

from_bytes(data, *, suffix='.nc', name=None, read_only=True, open_as_multi_dimensional=True) classmethod #

Open a NetCDF held in memory as a byte string.

Writes data to a temporary GDAL /vsimem/ path and opens it as a NetCDF — no on-disk temp file needed. Useful for HTTP response bodies, object-store payloads, and test fixtures.

This is not a URL helper — see :meth:pyramids.dataset.Dataset.from_bytes for the rationale. The /vsimem/ entry is removed automatically when the returned :class:NetCDF is garbage-collected.

Parameters:

Name Type Description Default
data bytes | bytearray | memoryview

Raw bytes of a NetCDF file.

required
suffix str

Extension hint for GDAL's driver detection. Defaults to ".nc".

'.nc'
name str | None

Optional label recorded as :attr:file_name (cosmetic). Defaults to None.

None
read_only bool

Open read-only. Defaults to True.

True
open_as_multi_dimensional bool

Open with gdal.OF_MULTIDIM_RASTER to access the full group / dimension / variable hierarchy. Defaults to True.

True

Returns:

Name Type Description
NetCDF NetCDF

The opened in-memory dataset.

Raises:

Type Description
TypeError

data is not a bytes-like object.

ValueError

GDAL could not open the bytes as a NetCDF.

Examples:

  • Open the bytes of a NetCDF and list its variables (the bytes here come from a file, but could be requests.get(url).content):
    >>> from pathlib import Path
    >>> from pyramids.netcdf import NetCDF
    >>> data = Path("tests/data/netcdf/noah-precipitation-1979.nc").read_bytes()
    >>> nc = NetCDF.from_bytes(data, name="downloaded.nc")
    >>> list(nc.variables)
    ['Band1', 'Band2', 'Band3', 'Band4']
    >>> nc.epsg
    4326
    >>> nc.file_name
    'downloaded.nc'
    
  • An in-memory NetCDF cannot be pickled — anchor it to disk first:
    >>> import pickle
    >>> from pathlib import Path
    >>> from pyramids.netcdf import NetCDF
    >>> data = Path("tests/data/netcdf/noah-precipitation-1979.nc").read_bytes()
    >>> try:
    ...     pickle.dumps(NetCDF.from_bytes(data))
    ... except TypeError as exc:
    ...     print("to_file" in str(exc))
    True
    
See Also
  • :meth:read_file: open a NetCDF from a path or URL.
  • :meth:pyramids.dataset.Dataset.from_bytes: the GeoTIFF variant.
Source code in src/pyramids/netcdf/netcdf.py
@classmethod
def from_bytes(  # type: ignore[override]
    cls,
    data: bytes | bytearray | memoryview,
    *,
    suffix: str = ".nc",
    name: str | None = None,
    read_only: bool = True,
    open_as_multi_dimensional: bool = True,
) -> NetCDF:
    """Open a NetCDF held in memory as a byte string.

    Writes ``data`` to a temporary GDAL ``/vsimem/`` path and opens
    it as a NetCDF — no on-disk temp file needed. Useful for HTTP
    response bodies, object-store payloads, and test fixtures.

    This is **not** a URL helper — see
    :meth:`pyramids.dataset.Dataset.from_bytes` for the rationale.
    The ``/vsimem/`` entry is removed automatically when the
    returned :class:`NetCDF` is garbage-collected.

    Args:
        data: Raw bytes of a NetCDF file.
        suffix: Extension hint for GDAL's driver detection. Defaults
            to ``".nc"``.
        name: Optional label recorded as :attr:`file_name`
            (cosmetic). Defaults to ``None``.
        read_only: Open read-only. Defaults to ``True``.
        open_as_multi_dimensional: Open with
            ``gdal.OF_MULTIDIM_RASTER`` to access the full group /
            dimension / variable hierarchy. Defaults to ``True``.

    Returns:
        NetCDF: The opened in-memory dataset.

    Raises:
        TypeError: ``data`` is not a bytes-like object.
        ValueError: GDAL could not open the bytes as a NetCDF.

    Examples:
        - Open the bytes of a NetCDF and list its variables (the bytes
          here come from a file, but could be ``requests.get(url).content``):
            ```python
            >>> from pathlib import Path
            >>> from pyramids.netcdf import NetCDF
            >>> data = Path("tests/data/netcdf/noah-precipitation-1979.nc").read_bytes()
            >>> nc = NetCDF.from_bytes(data, name="downloaded.nc")
            >>> list(nc.variables)
            ['Band1', 'Band2', 'Band3', 'Band4']
            >>> nc.epsg
            4326
            >>> nc.file_name
            'downloaded.nc'

            ```
        - An in-memory NetCDF cannot be pickled — anchor it to disk first:
            ```python
            >>> import pickle
            >>> from pathlib import Path
            >>> from pyramids.netcdf import NetCDF
            >>> data = Path("tests/data/netcdf/noah-precipitation-1979.nc").read_bytes()
            >>> try:
            ...     pickle.dumps(NetCDF.from_bytes(data))
            ... except TypeError as exc:
            ...     print("to_file" in str(exc))
            True

            ```

    See Also:
        - :meth:`read_file`: open a NetCDF from a path or URL.
        - :meth:`pyramids.dataset.Dataset.from_bytes`: the GeoTIFF variant.
    """
    src, vsi_path = _io.bytes_to_gdal(
        data,
        suffix=suffix,
        read_only=read_only,
        open_as_multi_dimensional=open_as_multi_dimensional,
    )
    try:
        obj = cls(
            src,
            access="read_only" if read_only else "write",
            open_as_multi_dimensional=open_as_multi_dimensional,
        )
    except Exception as e:
        src = None
        _io.silent_unlink(vsi_path)
        raise ValueError(
            "could not open the supplied bytes as a NetCDF dataset "
            f"(the data may be corrupt or truncated): {e}"
        ) from e
    obj._vsimem_path = vsi_path
    weakref.finalize(obj, _io.silent_unlink, vsi_path)
    if name is not None:
        obj._file_name = str(name)
    return obj

to_kerchunk(output_path, *, inline_threshold=500, vlen_encode='embed') #

Emit a kerchunk JSON reference manifest for this file.

Thin forwarder to :func:pyramids.netcdf._kerchunk.to_kerchunk using self._file_name as the source path. Requires the [netcdf-lazy] optional extra.

Parameters:

Name Type Description Default
output_path

Path where the manifest JSON is written.

required
inline_threshold int

Chunks smaller than this many bytes are embedded directly. Default 500.

500
vlen_encode str

VLEN string handling mode. Default "embed".

'embed'

Returns:

Name Type Description
dict dict

The manifest dict that was written.

Source code in src/pyramids/netcdf/netcdf.py
def to_kerchunk(
    self,
    output_path,
    *,
    inline_threshold: int = 500,
    vlen_encode: str = "embed",
) -> dict:
    """Emit a kerchunk JSON reference manifest for this file.

    Thin forwarder to :func:`pyramids.netcdf._kerchunk.to_kerchunk`
    using `self._file_name` as the source path. Requires the
    `[netcdf-lazy]` optional extra.

    Args:
        output_path: Path where the manifest JSON is written.
        inline_threshold: Chunks smaller than this many bytes are
            embedded directly. Default 500.
        vlen_encode: VLEN string handling mode. Default `"embed"`.

    Returns:
        dict: The manifest dict that was written.
    """
    return to_kerchunk(
        self._file_name,
        output_path,
        inline_threshold=inline_threshold,
        vlen_encode=vlen_encode,
    )

combine_kerchunk(paths, output_path, *, concat_dims=('time',), identical_dims=('lat', 'lon'), inline_threshold=500) classmethod #

Emit a combined kerchunk manifest spanning many NetCDFs.

Thin forwarder to :func:pyramids.netcdf._kerchunk.combine_kerchunk. Requires the [netcdf-lazy] optional extra.

Parameters:

Name Type Description Default
paths

Sequence of NetCDF paths to combine.

required
output_path

Path where the combined manifest is written.

required
concat_dims

Dimension name(s) along which to concatenate. Default ("time",).

('time',)
identical_dims

Dimensions expected to match across all files. Default ("lat", "lon").

('lat', 'lon')
inline_threshold int

Chunks smaller than this inline bytes are embedded. Default 500.

500

Returns:

Name Type Description
dict dict

The combined manifest.

Source code in src/pyramids/netcdf/netcdf.py
@classmethod
def combine_kerchunk(
    cls,
    paths,
    output_path,
    *,
    concat_dims=("time",),
    identical_dims=("lat", "lon"),
    inline_threshold: int = 500,
) -> dict:
    """Emit a combined kerchunk manifest spanning many NetCDFs.

    Thin forwarder to
    :func:`pyramids.netcdf._kerchunk.combine_kerchunk`. Requires
    the `[netcdf-lazy]` optional extra.

    Args:
        paths: Sequence of NetCDF paths to combine.
        output_path: Path where the combined manifest is written.
        concat_dims: Dimension name(s) along which to concatenate.
            Default `("time",)`.
        identical_dims: Dimensions expected to match across all
            files. Default `("lat", "lon")`.
        inline_threshold: Chunks smaller than this inline bytes are
            embedded. Default 500.

    Returns:
        dict: The combined manifest.
    """
    return combine_kerchunk(
        paths,
        output_path,
        concat_dims=concat_dims,
        identical_dims=identical_dims,
        inline_threshold=inline_threshold,
    )

open_mfdataset(paths, variable, *, chunks=None, parallel=False, preprocess=None) classmethod #

Open many NetCDFs and stack variable into one lazy dask array.

Thin forwarder to :func:pyramids.netcdf._mfdataset.open_mfdataset; see that function for the full argument contract. Requires the [lazy] optional extra.

Parameters:

Name Type Description Default
paths

Glob string, explicit path, or sequence of paths.

required
variable str

Name of the variable to extract from each file.

required
chunks

Chunk spec forwarded to :meth:NetCDF.read_array.

None
parallel bool

Fan out per-file opens through dask.delayed.

False
preprocess

Optional callable applied to each :class:NetCDF before extraction.

None

Returns:

Type Description

dask.array.Array: Stack of shape (n_files, *var_shape).

Source code in src/pyramids/netcdf/netcdf.py
@classmethod
def open_mfdataset(
    cls,
    paths,
    variable: str,
    *,
    chunks=None,
    parallel: bool = False,
    preprocess=None,
):
    """Open many NetCDFs and stack `variable` into one lazy dask array.

    Thin forwarder to
    :func:`pyramids.netcdf._mfdataset.open_mfdataset`; see that
    function for the full argument contract. Requires the
    `[lazy]` optional extra.

    Args:
        paths: Glob string, explicit path, or sequence of paths.
        variable: Name of the variable to extract from each file.
        chunks: Chunk spec forwarded to
            :meth:`NetCDF.read_array`.
        parallel: Fan out per-file opens through `dask.delayed`.
        preprocess: Optional callable applied to each
            :class:`NetCDF` before extraction.

    Returns:
        dask.array.Array: Stack of shape `(n_files, *var_shape)`.
    """
    return open_mfdataset(
        paths,
        variable,
        chunks=chunks,
        parallel=parallel,
        preprocess=preprocess,
    )

get_all_metadata(open_options=None) #

Get full MDIM metadata (uncached).

Unlike meta_data (which is cached), this always re-traverses the GDAL multidimensional structure.

Parameters:

Name Type Description Default
open_options dict | None

Driver-specific open options forwarded to get_metadata(). Defaults to None.

None

Returns:

Type Description
NetCDFMetadata

NetCDFMetadata

Source code in src/pyramids/netcdf/netcdf.py
def get_all_metadata(self, open_options: dict | None = None) -> NetCDFMetadata:
    """Get full MDIM metadata (uncached).

    Unlike `meta_data` (which is cached), this always re-traverses
    the GDAL multidimensional structure.

    Args:
        open_options: Driver-specific open options forwarded to
            `get_metadata()`. Defaults to None.

    Returns:
        NetCDFMetadata
    """
    result = get_metadata(self._raster, open_options)
    return result

get_time_variable(var_name='time', time_format='%Y-%m-%d') #

Parse the time coordinate variable into formatted date strings.

Reads the units attribute (e.g., "days since 1979-01-01") from the dimension metadata and converts raw numeric values to human-readable date strings.

Parameters:

Name Type Description Default
var_name str

Name of the time dimension / variable. Defaults to "time".

'time'
time_format str

strftime format for the output strings. Defaults to "%Y-%m-%d".

'%Y-%m-%d'

Returns:

Type Description
list[str] | None

list[str] or None: Formatted time strings, or None if the

list[str] | None

time dimension is not found or lacks a units attribute.

Source code in src/pyramids/netcdf/netcdf.py
def get_time_variable(
    self, var_name: str = "time", time_format: str = "%Y-%m-%d"
) -> list[str] | None:
    """Parse the time coordinate variable into formatted date strings.

    Reads the `units` attribute (e.g., `"days since 1979-01-01"`)
    from the dimension metadata and converts raw numeric values to
    human-readable date strings.

    Args:
        var_name: Name of the time dimension / variable.
            Defaults to `"time"`.
        time_format: strftime format for the output strings.
            Defaults to `"%Y-%m-%d"`.

    Returns:
        list[str] or None: Formatted time strings, or None if the
        time dimension is not found or lacks a `units` attribute.
    """
    time_stamp = None
    time_dim = self.meta_data.get_dimension(var_name)
    if time_dim is not None:
        units = time_dim.attrs.get("units")
        if units is not None:
            calendar = time_dim.attrs.get("calendar", "standard")
            time_vals = self._read_variable(var_name)
            if time_vals is not None:
                func = create_time_conversion_func(
                    units, time_format, calendar=calendar
                )
                time_stamp = list(map(func, time_vals.reshape(-1)))
    return time_stamp

get_group(group_name) #

Open a sub-group as a NetCDF container.

The returned object wraps the sub-group's GDAL dataset and exposes the sub-group's variables and dimensions via the same API as the root container.

Parameters:

Name Type Description Default
group_name str

Name of the sub-group. Supports nested paths separated by / (e.g. "forecast/surface").

required

Returns:

Name Type Description
NetCDF NetCDF

A container backed by the sub-group.

Raises:

Type Description
ValueError

If the group doesn't exist or the dataset has no root group.

Source code in src/pyramids/netcdf/netcdf.py
def get_group(self, group_name: str) -> NetCDF:
    """Open a sub-group as a NetCDF container.

    The returned object wraps the sub-group's GDAL dataset and
    exposes the sub-group's variables and dimensions via the
    same API as the root container.

    Args:
        group_name: Name of the sub-group. Supports nested paths
            separated by `/` (e.g. `"forecast/surface"`).

    Returns:
        NetCDF: A container backed by the sub-group.

    Raises:
        ValueError: If the group doesn't exist or the dataset
            has no root group.
    """
    rg = self._raster.GetRootGroup()
    if rg is None:
        raise ValueError("get_group requires a multidimensional container.")

    # Navigate nested paths: "forecast/surface" → open each level
    group = rg
    parts = group_name.split("/")
    for part in parts:
        try:
            group = group.OpenGroup(part)
        except Exception:
            group = None
        if group is None:
            raise ValueError(
                f"Group '{group_name}' not found. "
                f"Available groups: {self.group_names}"
            )

    # Create a multidimensional dataset from the sub-group.
    # GDAL doesn't have a direct "group → dataset" conversion,
    # so we build a MEM MDIM dataset and copy the group's
    # arrays and dimensions into it.
    dst = gdal.GetDriverByName("MEM").CreateMultiDimensional("group")
    dst_rg = dst.GetRootGroup()

    # Copy dimensions from the sub-group
    dim_map = {}
    for gdal_dim in group.GetDimensions() or []:
        dim_name = gdal_dim.GetName()
        new_dim = dst_rg.CreateDimension(
            dim_name, gdal_dim.GetType(), None, gdal_dim.GetSize()
        )
        iv = gdal_dim.GetIndexingVariable()
        if iv is not None:
            coord_arr = dst_rg.CreateMDArray(
                dim_name,
                [new_dim],
                gdal.ExtendedDataType.Create(numpy_to_gdal_dtype(iv.ReadAsArray())),
            )
            coord_arr.Write(iv.ReadAsArray())
            new_dim.SetIndexingVariable(coord_arr)
        dim_map[dim_name] = new_dim

    # Copy arrays from the sub-group
    for arr_name in group.GetMDArrayNames() or []:
        md_arr = group.OpenMDArray(arr_name)
        if md_arr is None:
            continue
        arr_dims = md_arr.GetDimensions()
        # Map source dims to destination dims (by name)
        new_dims = []
        for d in arr_dims:
            d_name = d.GetName()
            if d_name in dim_map:
                new_dims.append(dim_map[d_name])
            else:
                # Dimension from parent group — create locally
                new_d = dst_rg.CreateDimension(
                    d_name, d.GetType(), None, d.GetSize()
                )
                dim_map[d_name] = new_d
                new_dims.append(new_d)
        arr_data = md_arr.ReadAsArray()
        arr_dtype = gdal.ExtendedDataType.Create(numpy_to_gdal_dtype(arr_data))
        new_arr = dst_rg.CreateMDArray(arr_name, new_dims, arr_dtype)
        new_arr.Write(arr_data)
        ndv = md_arr.GetNoDataValue()
        if ndv is not None:
            new_arr.SetNoDataValueDouble(ndv)
        srs = md_arr.GetSpatialRef()
        if srs is not None:
            new_arr.SetSpatialRef(srs)

    result = NetCDF(dst)
    return result

get_variable_names() #

Return names of data variables, excluding dimension coordinates.

Uses CF classification when metadata is cached (fast path). Otherwise queries GetMDArrayNames() and filters out dimension arrays and 0-dimensional scalar variables (grid_mapping etc.). In classic mode, parses subdataset metadata.

Returns:

Type Description
list[str]

list[str]: Variable names (e.g., ["temperature", "precipitation"]).

Source code in src/pyramids/netcdf/netcdf.py
def get_variable_names(self) -> list[str]:
    """Return names of data variables, excluding dimension coordinates.

    Uses CF classification when metadata is cached (fast path).
    Otherwise queries `GetMDArrayNames()` and filters out dimension
    arrays and 0-dimensional scalar variables (grid_mapping etc.).
    In classic mode, parses subdataset metadata.

    Returns:
        list[str]: Variable names (e.g., `["temperature", "precipitation"]`).
    """
    if self._cached_meta_data is not None and self._cached_meta_data.cf is not None:
        variable_names = list(self._cached_meta_data.cf.data_variable_names)
    else:
        rg = self._raster.GetRootGroup()
        if rg is not None:
            all_names = rg.GetMDArrayNames()
            dim_names = {dim.GetName() for dim in rg.GetDimensions()}
            filtered = []
            for var in all_names:
                if var in dim_names:
                    continue
                md_arr = rg.OpenMDArray(var)
                if md_arr is not None and len(md_arr.GetDimensions()) == 0:
                    continue
                filtered.append(var)
            variable_names = filtered
        else:
            variable_names = [
                var[1].split(" ")[1] for var in self._raster.GetSubDatasets()
            ]

    return variable_names

get_variable(variable_name) #

Extract a single variable as a classic-raster NetCDF object.

The returned object carries origin metadata so modified data can be written back via set_variable(). Every non-spatial dim of the variable is tracked: for an N-D MDIM array (d_0, ..., d_{n-1}, lat, lon) the build path populates _band_dim_names, _band_dim_values_map, and _band_dim_sizes with all non-spatial dims in storage order, while the legacy _band_dim_name / _band_dim_values keep pointing at the first non-spatial dim so existing 3-D consumers see no change. 4-D+ files (e.g. CDS-Beta ERA5 pressure-levels with (valid_time, pressure_level, lat, lon)) are addressable via sel() along any tracked band dim.

Supports group-qualified names: "forecast/temperature" first navigates to the forecast sub-group, then extracts temperature from it.

Parameters:

Name Type Description Default
variable_name str

Name of the variable to extract. Use / to separate group path from variable name.

required

Returns:

Name Type Description
NetCDF NetCDF

A subset backed by a classic dataset where every non-spatial dimension is mapped onto bands. The new _band_dim_names / _band_dim_values_map / _band_dim_sizes fields drive sel(); the legacy _band_dim_name / _band_dim_values track the first non-spatial dim.

Raises:

Type Description
ValueError

If variable_name is not present in the dataset.

Notes

String-typed indexing variables (e.g. WRF's Times array) cannot be read via GDAL SWIG bindings; the build path falls back to integer indices [0, 1, ..., size - 1] for those dims.

See Also

sel: subsets the result along any tracked band dim.

Source code in src/pyramids/netcdf/netcdf.py
def get_variable(self, variable_name: str) -> NetCDF:
    """Extract a single variable as a classic-raster NetCDF object.

    The returned object carries origin metadata so modified data
    can be written back via `set_variable()`. Every non-spatial
    dim of the variable is tracked: for an N-D MDIM array
    `(d_0, ..., d_{n-1}, lat, lon)` the build path populates
    `_band_dim_names`, `_band_dim_values_map`, and
    `_band_dim_sizes` with all non-spatial dims in storage order,
    while the legacy `_band_dim_name` / `_band_dim_values` keep
    pointing at the first non-spatial dim so existing 3-D
    consumers see no change. 4-D+ files (e.g. CDS-Beta ERA5
    pressure-levels with `(valid_time, pressure_level, lat, lon)`)
    are addressable via `sel()` along any tracked band dim.

    Supports group-qualified names: `"forecast/temperature"` first
    navigates to the `forecast` sub-group, then extracts
    `temperature` from it.

    Args:
        variable_name: Name of the variable to extract. Use `/`
            to separate group path from variable name.

    Returns:
        NetCDF: A subset backed by a classic dataset where every
            non-spatial dimension is mapped onto bands. The new
            `_band_dim_names` / `_band_dim_values_map` /
            `_band_dim_sizes` fields drive `sel()`; the legacy
            `_band_dim_name` / `_band_dim_values` track the first
            non-spatial dim.

    Raises:
        ValueError: If `variable_name` is not present in the dataset.

    Notes:
        String-typed indexing variables (e.g. WRF's `Times` array)
        cannot be read via GDAL SWIG bindings; the build path falls
        back to integer indices `[0, 1, ..., size - 1]` for those
        dims.

    See Also:
        `sel`: subsets the result along any tracked band dim.
    """
    # Handle group-qualified names: "forecast/temperature"
    if "/" in variable_name:
        parts = variable_name.rsplit("/", 1)
        group_nc = self.get_group(parts[0])
        cube = group_nc.get_variable(parts[1])
        return cube  # single return below handles non-group path

    if variable_name not in self.variable_names:
        raise ValueError(
            f"{variable_name} is not a valid variable name in {self.variable_names}"
        )

    prefix = self.driver_type.upper()
    rg = self._raster.GetRootGroup()
    md_arr_ref = None
    rg_ref = None

    if prefix == "MEMORY" or rg is not None:
        src, md_arr_ref, rg_ref = self._read_md_array(variable_name)
        if isinstance(src, gdal.Dataset):
            cube = NetCDF(src)
            cube._is_md_array = True
            # _read_md_array uses GetView to flip the data lazily,
            # and GDAL usually corrects the geotransform. But when
            # the Y dimension has no indexing variable (e.g. WRF
            # "south_north"), the geotransform may still be wrong.
            # Fix it on the wrapper object (no data copy).
            gt = cube._geotransform
            if gt[5] > 0:
                cube._geotransform = (
                    gt[0],
                    gt[1],
                    gt[2],
                    gt[3] + gt[5] * cube._rows,
                    gt[4],
                    -gt[5],
                )
                cube._cell_size = abs(gt[1])
        else:
            cube = src
        # Keep GDAL SWIG references alive — AsClassicDataset returns a
        # view whose C++ backing is owned by the MDArray/root group.
        # Without these the view becomes a dangling pointer on Windows.
        cube._gdal_md_arr_ref = md_arr_ref
        cube._gdal_rg_ref = rg_ref
    else:
        src = gdal.Open(f"{prefix}:{self.file_name}:{variable_name}")
        if src is None:
            raise ValueError(
                f"Could not open variable '{variable_name}' via "
                f"'{prefix}:{self.file_name}:{variable_name}'"
            )
        cube = NetCDF(src)
        cube._is_md_array = False

    cube._is_subset = True

    # --- RT-4: Track variable origin for round-trip ---
    cube._parent_nc = self
    cube._source_var_name = variable_name

    md_arr = md_arr_ref if rg is not None else None
    if rg is not None:
        if md_arr is not None:
            dims = md_arr.GetDimensions()
            cube._md_array_dims = [d.GetName() for d in dims]

            # Identify which dimensions became bands (all except X/Y).
            # Track every non-spatial dim so 4-D+ files (e.g. CDS-Beta
            # ERA5 pressure-levels: time, pressure_level, lat, lon)
            # remain addressable via sel(). Legacy fields point at the
            # primary (first) non-spatial dim so 3-D consumers see no
            # change.
            if len(dims) > 2:
                spatial_indices = {len(dims) - 1, len(dims) - 2}
                band_dims = [
                    d for i, d in enumerate(dims) if i not in spatial_indices
                ]
            else:
                band_dims = []

            if band_dims:
                cube._band_dim_names = tuple(d.GetName() for d in band_dims)
                cube._band_dim_sizes = tuple(d.GetSize() for d in band_dims)
                cube._band_dim_values_map = {}
                for d in band_dims:
                    iv = d.GetIndexingVariable()
                    try:
                        values = (
                            iv.ReadAsArray().tolist() if iv is not None else None
                        )
                    except RuntimeError:
                        # String-typed indexing variables (e.g. WRF
                        # "Times") can't be read via ReadAsArray in
                        # GDAL SWIG bindings — fall back to indices.
                        values = list(range(d.GetSize()))
                    cube._band_dim_values_map[d.GetName()] = values
                cube._band_dim_name = cube._band_dim_names[0]
                cube._band_dim_values = cube._band_dim_values_map[
                    cube._band_dim_name
                ]
            else:
                cube._band_dim_name = None
                cube._band_dim_values = None
                cube._band_dim_names = ()
                cube._band_dim_values_map = {}
                cube._band_dim_sizes = ()

            # Copy variable attributes
            cube._variable_attrs = {}
            try:
                for attr in md_arr.GetAttributes():
                    cube._variable_attrs[attr.GetName()] = attr.Read()
            except Exception:
                pass  # nosec B110

            # Scale/offset for CF packed data
            try:
                cube._scale = md_arr.GetScale()
                cube._offset = md_arr.GetOffset()
            except Exception:
                cube._scale = None
                cube._offset = None
        else:
            cube._md_array_dims = []
            cube._band_dim_name = None
            cube._band_dim_values = None
            cube._band_dim_names = ()
            cube._band_dim_values_map = {}
            cube._band_dim_sizes = ()
            cube._variable_attrs = {}
            cube._scale = None
            cube._offset = None
    else:
        cube._md_array_dims = []
        cube._band_dim_name = None
        cube._band_dim_values = None
        cube._band_dim_names = ()
        cube._band_dim_values_map = {}
        cube._band_dim_sizes = ()
        cube._variable_attrs = {}
        cube._scale = None
        cube._offset = None

    return cube

to_file(path, **kwargs) #

Save the dataset to disk.

For .nc / .nc4 files the full multidimensional structure (groups, dimensions, variables, attributes) is preserved via CreateCopy with the netCDF driver. For other extensions (e.g. .tif), the parent Dataset.to_file is used — but only on variable subsets, not on root MDIM containers.

Parameters:

Name Type Description Default
path str | Path

Destination file path. The extension determines the output driver (.nc -> netCDF, .tif -> GeoTIFF, etc.).

required
**kwargs Any

Forwarded to Dataset.to_file for non-NetCDF extensions (e.g. tile_length, creation_options).

{}

Raises:

Type Description
RuntimeError

If the netCDF CreateCopy call fails.

ValueError

If a root MDIM container is saved to a non-NC extension (use .nc or extract a variable first).

Source code in src/pyramids/netcdf/netcdf.py
def to_file(  # type: ignore[override]
    self,
    path: str | Path,
    **kwargs: Any,
) -> None:
    """Save the dataset to disk.

    For `.nc` / `.nc4` files the full multidimensional structure
    (groups, dimensions, variables, attributes) is preserved via
    `CreateCopy` with the netCDF driver. For other extensions
    (e.g. `.tif`), the parent `Dataset.to_file` is used — but only
    on variable subsets, not on root MDIM containers.

    Args:
        path: Destination file path. The extension determines the
            output driver (`.nc` -> netCDF, `.tif` -> GeoTIFF, etc.).
        **kwargs: Forwarded to `Dataset.to_file` for non-NetCDF
            extensions (e.g. `tile_length`, `creation_options`).

    Raises:
        RuntimeError: If the netCDF `CreateCopy` call fails.
        ValueError: If a root MDIM container is saved to a non-NC
            extension (use `.nc` or extract a variable first).
    """
    path = Path(path)
    extension = path.suffix[1:].lower()
    if extension in ("nc", "nc4"):
        dst = gdal.GetDriverByName("netCDF").CreateCopy(str(path), self._raster, 0)
        if dst is None:
            raise RuntimeError(f"Failed to save NetCDF to {path}")
        dst.FlushCache()
        dst = None
    else:
        if self._is_md_array and not self._is_subset:
            raise ValueError(
                "Cannot save a multidimensional NetCDF container as "
                f"'{extension}'. Use .nc extension or extract a "
                "variable first with .get_variable()."
            )
        super().to_file(path, **kwargs)

copy(path=None) #

Create a deep copy of this NetCDF dataset.

Parameters:

Name Type Description Default
path str | Path | None

Destination file path. If None, the copy is created in memory using the MEM driver. Defaults to None.

None

Returns:

Name Type Description
NetCDF NetCDF

A new NetCDF object with copied data.

Raises:

Type Description
RuntimeError

If CreateCopy fails.

Source code in src/pyramids/netcdf/netcdf.py
def copy(self, path: str | Path | None = None) -> NetCDF:
    """Create a deep copy of this NetCDF dataset.

    Args:
        path: Destination file path. If None, the copy is created
            in memory using the MEM driver. Defaults to None.

    Returns:
        NetCDF: A new NetCDF object with copied data.

    Raises:
        RuntimeError: If `CreateCopy` fails.
    """
    if path is None:
        path = ""
        driver = "MEM"
    else:
        driver = "netCDF"

    src = gdal.GetDriverByName(driver).CreateCopy(str(path), self._raster)
    if src is None:
        raise RuntimeError(f"Failed to copy NetCDF dataset to '{path}'")
    return NetCDF(src, access="write")

create_main_dimension(group, dim_name, dtype, values) staticmethod #

Create a NetCDF dimension with an indexing variable.

The dimension type is inferred from dim_name: y/lat/latitude -> horizontal Y, x/lon/longitude -> horizontal X, bands/time -> temporal.

The dimension is registered in the group together with a matching MDArray that stores the coordinate values.

Parameters:

Name Type Description Default
group Group

Root group (or sub-group) of the multidimensional dataset.

required
dim_name str

Name of the dimension to create.

required
dtype int

GDAL ExtendedDataType for the indexing variable.

required
values ndarray

Coordinate values for the dimension.

required

Returns:

Type Description
Dimension

gdal.Dimension: The newly created dimension.

Source code in src/pyramids/netcdf/netcdf.py
@staticmethod
def create_main_dimension(
    group: gdal.Group, dim_name: str, dtype: int, values: np.ndarray
) -> gdal.Dimension:
    """Create a NetCDF dimension with an indexing variable.

    The dimension type is inferred from `dim_name`:
    `y`/`lat`/`latitude` -> horizontal Y,
    `x`/`lon`/`longitude` -> horizontal X,
    `bands`/`time` -> temporal.

    The dimension is registered in the group together with a
    matching MDArray that stores the coordinate values.

    Args:
        group: Root group (or sub-group) of the multidimensional
            dataset.
        dim_name: Name of the dimension to create.
        dtype: GDAL `ExtendedDataType` for the indexing variable.
        values: Coordinate values for the dimension.

    Returns:
        gdal.Dimension: The newly created dimension.
    """
    if dim_name in ["y", "lat", "latitude"]:
        dim_type = gdal.DIM_TYPE_HORIZONTAL_Y
    elif dim_name in ["x", "lon", "longitude"]:
        dim_type = gdal.DIM_TYPE_HORIZONTAL_X
    elif dim_name in ["bands", "time"]:
        dim_type = gdal.DIM_TYPE_TEMPORAL
    else:
        dim_type = None
    dim = group.CreateDimension(dim_name, dim_type, None, values.shape[0])
    x_values = group.CreateMDArray(dim_name, [dim], dtype)
    x_values.Write(values)
    dim.SetIndexingVariable(x_values)
    return dim

create_from_array(arr, geo=None, epsg=4326, no_data_value=DEFAULT_NO_DATA_VALUE, path=None, variable_name=None, extra_dim_name='time', extra_dim_values=None, extra_dims=None, top_left_corner=None, cell_size=None, chunk_sizes=None, compression=None, compression_level=None, title=None, institution=None, source=None, history=None) classmethod #

Create a NetCDF dataset from a NumPy array and geotransform.

For 3-D arrays the first axis is treated as a non-spatial dimension (time, level, depth, etc.) whose name and coordinate values are controlled by extra_dim_name and extra_dim_values.

For 4-D+ arrays — e.g. (time, level, lat, lon) — pass extra_dims=[("time", time_values), ("pressure_level", level_values)] in storage order. Every non-spatial dimension is then materialised on the resulting NetCDF, preserving the full layout. extra_dims and the legacy single-dim params (extra_dim_name / extra_dim_values) are mutually exclusive.

The driver is inferred from path: if path is None the dataset is created in memory (MEM driver); if a path is provided the netCDF driver writes to disk.

Parameters:

Name Type Description Default
arr ndarray

2-D (rows, cols), 3-D (extra_dim, rows, cols), or 4-D+ (d_0, ..., d_{n-1}, rows, cols) NumPy array.

required
geo tuple[float, float, float, float, float, float] | None

Geotransform tuple (x_min, pixel_size, rotation, y_max, rotation, pixel_size).

None
epsg str | int

EPSG code for the spatial reference. Defaults to 4326.

4326
no_data_value Any | list

Sentinel value for cells outside the domain. Defaults to DEFAULT_NO_DATA_VALUE.

DEFAULT_NO_DATA_VALUE
path str | Path | None

Output file path. If None, the dataset is created in memory. Defaults to None.

None
variable_name str | None

Name of the data variable in the NetCDF file. Defaults to "data".

None
extra_dim_name str

Legacy single-dim path. Name of the non-spatial dimension for 3-D arrays (e.g. "time", "level", "depth"). Ignored for 2-D arrays. Mutually exclusive with extra_dims. Defaults to "time".

'time'
extra_dim_values list | None

Legacy single-dim path. Coordinate values for the non-spatial dimension. Must have length arr.shape[0] for 3-D arrays. Mutually exclusive with extra_dims. Defaults to [0, 1, 2,..., N-1].

None
extra_dims list[tuple[str, list | None]] | None

Multi-dim path. Ordered list of (dim_name, values) pairs describing every non-spatial dimension in storage order. len(extra_dims) must equal arr.ndim - 2. Each values is either a list of length arr.shape[i] or None (use integer indices [0, 1, ..., size - 1]). Mutually exclusive with extra_dim_name / extra_dim_values.

None
top_left_corner tuple[float, float] | None

(x, y) of the top-left corner. Used with cell_size to build geo when geo is not provided. Defaults to None.

None
cell_size int | float | None

Pixel size. Used with top_left_corner to build geo. Defaults to None.

None
chunk_sizes tuple | list | None

Chunk sizes for the data variable as a tuple matching the array dimensions (e.g. (1, 256, 256) for 3-D). Only effective when writing to disk. Defaults to None (GDAL default chunking).

None
compression str | None

Compression algorithm name ("DEFLATE", "ZSTD", etc.). Only effective when writing to disk. Defaults to None (no compression).

None
compression_level int | None

Compression level (e.g. 1-9 for DEFLATE). Defaults to None (GDAL default).

None
title str | None

CF global attribute title. Short description of the dataset. Defaults to None.

None
institution str | None

CF global attribute institution. Where the data was produced. Defaults to None.

None
source str | None

CF global attribute source. How the data was produced. Defaults to None.

None
history str | None

CF global attribute history. Audit trail of processing steps. Defaults to None.

None

Returns:

Name Type Description
NetCDF NetCDF

The newly created NetCDF dataset.

Source code in src/pyramids/netcdf/netcdf.py
@classmethod
def create_from_array(  # type: ignore[override]
    cls,
    arr: np.ndarray,
    geo: tuple[float, float, float, float, float, float] | None = None,
    epsg: str | int = 4326,
    no_data_value: Any | list = DEFAULT_NO_DATA_VALUE,
    path: str | Path | None = None,
    variable_name: str | None = None,
    extra_dim_name: str = "time",
    extra_dim_values: list | None = None,
    extra_dims: list[tuple[str, list | None]] | None = None,
    top_left_corner: tuple[float, float] | None = None,
    cell_size: int | float | None = None,
    chunk_sizes: tuple | list | None = None,
    compression: str | None = None,
    compression_level: int | None = None,
    title: str | None = None,
    institution: str | None = None,
    source: str | None = None,
    history: str | None = None,
) -> NetCDF:
    """Create a NetCDF dataset from a NumPy array and geotransform.

    For 3-D arrays the first axis is treated as a non-spatial
    dimension (time, level, depth, etc.) whose name and coordinate
    values are controlled by `extra_dim_name` and
    `extra_dim_values`.

    For 4-D+ arrays — e.g. `(time, level, lat, lon)` — pass
    `extra_dims=[("time", time_values), ("pressure_level", level_values)]`
    in storage order. Every non-spatial dimension is then
    materialised on the resulting NetCDF, preserving the full
    layout. `extra_dims` and the legacy single-dim params
    (`extra_dim_name` / `extra_dim_values`) are mutually exclusive.

    The driver is inferred from `path`: if `path` is `None`
    the dataset is created in memory (MEM driver); if a path is
    provided the netCDF driver writes to disk.

    Args:
        arr: 2-D `(rows, cols)`, 3-D `(extra_dim, rows, cols)`, or
            4-D+ `(d_0, ..., d_{n-1}, rows, cols)` NumPy array.
        geo: Geotransform tuple `(x_min, pixel_size, rotation,
            y_max, rotation, pixel_size)`.
        epsg: EPSG code for the spatial reference.
            Defaults to 4326.
        no_data_value: Sentinel value for cells outside the
            domain. Defaults to DEFAULT_NO_DATA_VALUE.
        path: Output file path. If `None`, the dataset is
            created in memory. Defaults to None.
        variable_name: Name of the data variable in the NetCDF
            file. Defaults to `"data"`.
        extra_dim_name: Legacy single-dim path. Name of the
            non-spatial dimension for 3-D arrays (e.g. `"time"`,
            `"level"`, `"depth"`). Ignored for 2-D arrays.
            Mutually exclusive with `extra_dims`. Defaults to
            `"time"`.
        extra_dim_values: Legacy single-dim path. Coordinate values
            for the non-spatial dimension. Must have length
            `arr.shape[0]` for 3-D arrays. Mutually exclusive with
            `extra_dims`. Defaults to `[0, 1, 2,..., N-1]`.
        extra_dims: Multi-dim path. Ordered list of
            `(dim_name, values)` pairs describing every non-spatial
            dimension in storage order. `len(extra_dims)` must
            equal `arr.ndim - 2`. Each `values` is either a list of
            length `arr.shape[i]` or `None` (use integer indices
            `[0, 1, ..., size - 1]`). Mutually exclusive with
            `extra_dim_name` / `extra_dim_values`.
        top_left_corner: `(x, y)` of the top-left corner. Used
            with `cell_size` to build `geo` when `geo` is
            not provided. Defaults to None.
        cell_size: Pixel size. Used with `top_left_corner` to
            build `geo`. Defaults to None.
        chunk_sizes: Chunk sizes for the data variable as a tuple
            matching the array dimensions (e.g. `(1, 256, 256)`
            for 3-D). Only effective when writing to disk.
            Defaults to None (GDAL default chunking).
        compression: Compression algorithm name (`"DEFLATE"`,
            `"ZSTD"`, etc.). Only effective when writing to
            disk. Defaults to None (no compression).
        compression_level: Compression level (e.g. 1-9 for
            DEFLATE). Defaults to None (GDAL default).
        title: CF global attribute `title`. Short
            description of the dataset. Defaults to None.
        institution: CF global attribute `institution`.
            Where the data was produced. Defaults to None.
        source: CF global attribute `source`. How the
            data was produced. Defaults to None.
        history: CF global attribute `history`. Audit
            trail of processing steps. Defaults to None.

    Returns:
        NetCDF: The newly created NetCDF dataset.
    """
    if geo is None and top_left_corner is not None and cell_size is not None:
        geo = (
            top_left_corner[0],
            cell_size,
            0,
            top_left_corner[1],
            0,
            -cell_size,
        )
    if geo is None:
        raise ValueError(
            "Either 'geo' or both 'top_left_corner' and "
            "'cell_size' must be provided."
        )

    rows = int(arr.shape[-2]) if arr.ndim >= 2 else 0
    cols = int(arr.shape[-1]) if arr.ndim >= 2 else 0

    # Reconcile the legacy single-dim params with the new
    # `extra_dims` list-of-pairs API. Result is a normalised list
    # of (name, values) pairs whose length equals
    # `max(arr.ndim - 2, 0)`.
    resolved_extra_dims = cls._resolve_extra_dims(
        arr=arr,
        extra_dim_name=extra_dim_name,
        extra_dim_values=extra_dim_values,
        extra_dims=extra_dims,
    )

    if arr.ndim == 3:
        DimMetaData(
            name=resolved_extra_dims[0][0],
            size=arr.shape[0],
            values=resolved_extra_dims[0][1],
        )

    if variable_name is None:
        variable_name = "data"

    dst_ds = cls._create_netcdf_from_array(
        arr,
        variable_name,
        cols,
        rows,
        resolved_extra_dims,
        geo,
        epsg,
        no_data_value,
        path=path,
        chunk_sizes=chunk_sizes,
        compression=compression,
        compression_level=compression_level,
        title=title,
        institution=institution,
        source=source,
        history=history,
    )
    result = cls(dst_ds)

    return result

set_global_attribute(name, value) #

Set a global attribute on the root group.

Creates or updates a single attribute on the root group.

Parameters:

Name Type Description Default
name str

Attribute name (e.g. "history", "Conventions").

required
value Any

Attribute value. Supports str, int, float.

required

Raises:

Type Description
ValueError

If the dataset has no root group (not opened in MDIM mode).

Source code in src/pyramids/netcdf/netcdf.py
def set_global_attribute(self, name: str, value: Any):
    """Set a global attribute on the root group.

    Creates or updates a single attribute on the root group.

    Args:
        name: Attribute name (e.g. `"history"`,
            `"Conventions"`).
        value: Attribute value. Supports str, int, float.

    Raises:
        ValueError: If the dataset has no root group
            (not opened in MDIM mode).
    """
    rg = self._raster.GetRootGroup()
    if rg is None:
        raise ValueError(
            "set_global_attribute requires a multidimensional "
            "container. Open the file with "
            "open_as_multi_dimensional=True."
        )
    # Delete existing attribute if present (GDAL raises on duplicate)
    try:
        rg.DeleteAttribute(name)
    except Exception:
        pass
    if isinstance(value, str):
        attr = rg.CreateAttribute(name, [], gdal.ExtendedDataType.CreateString())
    elif isinstance(value, float):
        attr = rg.CreateAttribute(
            name, [], gdal.ExtendedDataType.Create(gdal.GDT_Float64)
        )
    elif isinstance(value, int):
        attr = rg.CreateAttribute(
            name, [], gdal.ExtendedDataType.Create(gdal.GDT_Int32)
        )
    else:
        attr = rg.CreateAttribute(name, [], gdal.ExtendedDataType.CreateString())
        value = str(value)
    attr.Write(value)
    self._invalidate_caches()

delete_global_attribute(name) #

Delete a global attribute from the root group.

If the attribute does not exist, the call is silently ignored.

Parameters:

Name Type Description Default
name str

Attribute name to delete.

required

Raises:

Type Description
ValueError

If the dataset has no root group.

Source code in src/pyramids/netcdf/netcdf.py
def delete_global_attribute(self, name: str):
    """Delete a global attribute from the root group.

    If the attribute does not exist, the call is silently ignored.

    Args:
        name: Attribute name to delete.

    Raises:
        ValueError: If the dataset has no root group.
    """
    rg = self._raster.GetRootGroup()
    if rg is None:
        raise ValueError(
            "delete_global_attribute requires a multidimensional " "container."
        )
    try:
        rg.DeleteAttribute(name)
    except Exception:
        pass  # attribute may not exist — silently ignored
    self._invalidate_caches()

set_variable(variable_name, dataset, band_dim_name=None, band_dim_values=None, attrs=None) #

Write a classic Dataset back as an MDArray variable in this container.

This is the reverse of get_variable(). After performing GIS operations (crop, reproject, etc.) on a variable subset, use this method to store the result back into the NetCDF container.

Parameters:

Name Type Description Default
variable_name str

Name for the variable in this container. If a variable with this name already exists it is replaced.

required
dataset Dataset

A classic raster dataset, typically the result of a GIS operation on a variable obtained via get_variable().

required
band_dim_name str | None

Name of the dimension that maps to bands (e.g. "time", "bands"). Auto-detected from the dataset's _band_dim_name attribute when available. Defaults to None.

None
band_dim_values list | None

Coordinate values for the band dimension. Auto-detected from _band_dim_values when available. Defaults to None.

None
attrs dict | None

Variable attributes to set (e.g. {"units": "K"}). Auto-detected from _variable_attrs when available. Defaults to None.

None

Raises:

Type Description
ValueError

If called on a dataset without a root group (not opened in multidimensional mode).

Source code in src/pyramids/netcdf/netcdf.py
def set_variable(
    self,
    variable_name: str,
    dataset: Dataset,
    band_dim_name: str | None = None,
    band_dim_values: list | None = None,
    attrs: dict | None = None,
):
    """Write a classic Dataset back as an MDArray variable in this container.

    This is the reverse of `get_variable()`. After performing GIS
    operations (crop, reproject, etc.) on a variable subset, use this
    method to store the result back into the NetCDF container.

    Args:
        variable_name: Name for the variable in this container. If a
            variable with this name already exists it is replaced.
        dataset: A classic raster dataset, typically the result of a
            GIS operation on a variable obtained via `get_variable()`.
        band_dim_name: Name of the dimension that maps to bands
            (e.g. `"time"`, `"bands"`). Auto-detected from the
            dataset's `_band_dim_name` attribute when available.
            Defaults to None.
        band_dim_values: Coordinate values for the band dimension.
            Auto-detected from `_band_dim_values` when available.
            Defaults to None.
        attrs: Variable attributes to set (e.g. `{"units": "K"}`).
            Auto-detected from `_variable_attrs` when available.
            Defaults to None.

    Raises:
        ValueError: If called on a dataset without a root group
            (not opened in multidimensional mode).
    """
    rg = self._raster.GetRootGroup()
    if rg is None:
        raise ValueError(
            "set_variable requires a multidimensional container. "
            "Open the file with open_as_multi_dimensional=True."
        )

    # Auto-detect from tracked origin metadata (RT-4)
    if band_dim_name is None and hasattr(dataset, "_band_dim_name"):
        band_dim_name = dataset._band_dim_name
    if band_dim_values is None and hasattr(dataset, "_band_dim_values"):
        band_dim_values = dataset._band_dim_values
    if attrs is None and hasattr(dataset, "_variable_attrs"):
        attrs = dataset._variable_attrs
    # Multi-band-dim metadata: every non-spatial dim and its
    # coords / sizes. Populated by `get_variable` for 4-D+
    # variables. When present, the rebuild materialises each dim
    # separately instead of flattening to a single bands axis.
    band_dim_names: tuple[str, ...] = tuple(
        getattr(dataset, "_band_dim_names", ()) or ()
    )
    band_dim_sizes: tuple[int, ...] = tuple(
        getattr(dataset, "_band_dim_sizes", ()) or ()
    )
    band_dim_values_map: dict = dict(
        getattr(dataset, "_band_dim_values_map", {}) or {}
    )

    # Delete existing variable if present
    if variable_name in self.variable_names:
        rg.DeleteMDArray(variable_name)

    # Read data from the classic dataset
    arr = dataset.read_array()
    gt: tuple[float, float, float, float, float, float] = dataset.geotransform
    data_dtype = gdal.ExtendedDataType.Create(numpy_to_gdal_dtype(arr))
    # Coordinate dimensions must always be float64 to avoid truncation
    # when the data array is integer (e.g., classified rasters).
    coord_dtype = gdal.ExtendedDataType.Create(gdal.GDT_Float64)

    # Build spatial dimensions from the geotransform
    x_values = np.array(
        NetCDF.get_x_lon_dimension_array(gt[0], gt[1], dataset.columns)
    )
    y_values = np.array(
        NetCDF.get_y_lat_dimension_array(gt[3], abs(gt[5]), dataset.rows)
    )
    dim_x = self._get_or_create_dimension(
        rg, "x", x_values, coord_dtype, gdal.DIM_TYPE_HORIZONTAL_X
    )
    dim_y = self._get_or_create_dimension(
        rg, "y", y_values, coord_dtype, gdal.DIM_TYPE_HORIZONTAL_Y
    )

    # 4-D+ rebuild: reshape the flattened bands back into the
    # cached storage order, then create one GDAL dimension per
    # non-spatial axis. Falls through to the legacy single-dim
    # path when only one (or zero) band dim is tracked.
    if len(band_dim_names) > 1 and arr.ndim == 3 and band_dim_sizes:
        arr = arr.reshape(*band_dim_sizes, arr.shape[-2], arr.shape[-1])
        gdal_band_dims = []
        for i, dim_name in enumerate(band_dim_names):
            values = band_dim_values_map.get(dim_name)
            if values is None:
                values = list(range(int(band_dim_sizes[i])))
            gdal_band_dims.append(
                self._get_or_create_dimension(
                    rg,
                    dim_name,
                    np.array(values, dtype=np.float64),
                    coord_dtype,
                    gdal.DIM_TYPE_TEMPORAL if i == 0 else None,
                )
            )
        md_arr = rg.CreateMDArray(
            variable_name, [*gdal_band_dims, dim_y, dim_x], data_dtype
        )
    elif arr.ndim == 3:
        if band_dim_name is None:
            band_dim_name = "bands"
        if band_dim_values is None:
            band_dim_values = list(range(arr.shape[0]))
        dim_band = self._get_or_create_dimension(
            rg,
            band_dim_name,
            np.array(band_dim_values, dtype=np.float64),
            coord_dtype,
            gdal.DIM_TYPE_TEMPORAL,
        )
        md_arr = rg.CreateMDArray(
            variable_name, [dim_band, dim_y, dim_x], data_dtype
        )
    else:
        md_arr = rg.CreateMDArray(variable_name, [dim_y, dim_x], data_dtype)

    # Write array data
    md_arr.Write(arr)

    # Set spatial reference (RT-7: attribute copying)
    if dataset.epsg:
        srs = sr_from_epsg(dataset.epsg)
        md_arr.SetSpatialRef(srs)

    # Set no-data value
    if dataset.no_data_value and dataset.no_data_value[0] is not None:
        try:
            md_arr.SetNoDataValueDouble(float(dataset.no_data_value[0]))
        except Exception:
            pass  # nosec B110

    # Set variable attributes (RT-7)
    if attrs:
        write_attributes_to_md_array(md_arr, attrs)

    self._invalidate_caches()

crop_variable(variable_name, mask, touch=True) #

Crop a single variable and store the result back.

Convenience method that combines get_variablecropset_variable in one call.

Parameters:

Name Type Description Default
variable_name str

Name of the variable to crop.

required
mask Any

GeoDataFrame with polygon geometry, or a Dataset to use as a spatial mask.

required
touch bool

If True, include cells touching the mask boundary. Defaults to True.

True

Returns:

Name Type Description
NetCDF NetCDF

This container (modified in-place).

Source code in src/pyramids/netcdf/netcdf.py
def crop_variable(
    self, variable_name: str, mask: Any, touch: bool = True
) -> NetCDF:
    """Crop a single variable and store the result back.

    Convenience method that combines `get_variable` → `crop`
    → `set_variable` in one call.

    Args:
        variable_name: Name of the variable to crop.
        mask: GeoDataFrame with polygon geometry, or a Dataset
            to use as a spatial mask.
        touch: If True, include cells touching the mask boundary.
            Defaults to True.

    Returns:
        NetCDF: This container (modified in-place).
    """
    var = self.get_variable(variable_name)
    cropped = var.crop(mask, touch=touch)
    self.set_variable(variable_name, cropped)
    return self

reproject_variable(variable_name, to_epsg, method='nearest neighbor') #

Reproject a single variable and store the result back.

Convenience method that combines get_variableto_crsset_variable in one call.

Parameters:

Name Type Description Default
variable_name str

Name of the variable to reproject.

required
to_epsg int

Target EPSG code (e.g. 4326, 32637).

required
method str

Resampling method. Defaults to "nearest neighbor".

'nearest neighbor'

Returns:

Name Type Description
NetCDF NetCDF

This container (modified in-place).

Source code in src/pyramids/netcdf/netcdf.py
def reproject_variable(
    self, variable_name: str, to_epsg: int, method: str = "nearest neighbor"
) -> NetCDF:
    """Reproject a single variable and store the result back.

    Convenience method that combines `get_variable` → `to_crs`
    → `set_variable` in one call.

    Args:
        variable_name: Name of the variable to reproject.
        to_epsg: Target EPSG code (e.g. 4326, 32637).
        method: Resampling method. Defaults to
            `"nearest neighbor"`.

    Returns:
        NetCDF: This container (modified in-place).
    """
    var = self.get_variable(variable_name)
    reprojected = var.to_crs(to_epsg, method=method)
    # to_crs returns a VRT-backed dataset — materialize it into
    # a MEM dataset so the data survives after the VRT source
    # (the variable subset) is garbage collected.
    arr = reprojected.read_array()
    no_data_value = reprojected.no_data_value
    ndv_scalar = (
        no_data_value[0]
        if isinstance(no_data_value, (list, tuple)) and no_data_value
        else no_data_value
    )
    materialized = Dataset.create_from_array(
        arr,
        geo=reprojected.geotransform,
        epsg=reprojected.epsg,
        no_data_value=ndv_scalar,
    )
    materialized._band_dim_name = var._band_dim_name
    materialized._band_dim_values = var._band_dim_values
    materialized._band_dim_names = var._band_dim_names
    materialized._band_dim_values_map = dict(var._band_dim_values_map)
    materialized._band_dim_sizes = var._band_dim_sizes
    materialized._variable_attrs = var._variable_attrs
    self.set_variable(variable_name, materialized)
    return self

resample_variable(variable_name, cell_size, method='nearest neighbor') #

Resample a single variable and store the result back.

Convenience method that combines get_variableresampleset_variable in one call.

Parameters:

Name Type Description Default
variable_name str

Name of the variable to resample.

required
cell_size int | float

New cell size.

required
method str

Resampling method. Defaults to "nearest neighbor".

'nearest neighbor'

Returns:

Name Type Description
NetCDF NetCDF

This container (modified in-place).

Source code in src/pyramids/netcdf/netcdf.py
def resample_variable(
    self,
    variable_name: str,
    cell_size: int | float,
    method: str = "nearest neighbor",
) -> NetCDF:
    """Resample a single variable and store the result back.

    Convenience method that combines `get_variable` → `resample`
    → `set_variable` in one call.

    Args:
        variable_name: Name of the variable to resample.
        cell_size: New cell size.
        method: Resampling method. Defaults to
            `"nearest neighbor"`.

    Returns:
        NetCDF: This container (modified in-place).
    """
    var = self.get_variable(variable_name)
    resampled = var.resample(cell_size, method=method)
    self.set_variable(variable_name, resampled)
    return self

add_variable(dataset, variable_name=None) #

Copy MDArray variables from another NetCDF into this container.

Parameters:

Name Type Description Default
dataset Dataset | NetCDF

Source NetCDF dataset whose variables will be copied. Must have a root group (opened in MDIM mode).

required
variable_name str | None

Specific variable name(s) to copy. If None, all variables from the source are copied. If a variable with the same name already exists, it is renamed with a "-new" suffix.

None
Source code in src/pyramids/netcdf/netcdf.py
def add_variable(self, dataset: Dataset | NetCDF, variable_name: str | None = None):
    """Copy MDArray variables from another NetCDF into this container.

    Args:
        dataset: Source NetCDF dataset whose variables will be copied.
            Must have a root group (opened in MDIM mode).
        variable_name: Specific variable name(s) to copy. If None, all
            variables from the source are copied. If a variable with
            the same name already exists, it is renamed with a
            `"-new"` suffix.
    """
    src_rg = self._raster.GetRootGroup()
    var_rg = dataset._raster.GetRootGroup()
    names_to_copy: list[str]
    if variable_name is not None:
        names_to_copy = [variable_name]
    elif isinstance(dataset, NetCDF):
        names_to_copy = dataset.variable_names
    else:
        names_to_copy = []

    for var in names_to_copy:
        md_arr = var_rg.OpenMDArray(var)
        # If the variable name already exists in the destination dataset,
        # use a suffixed name to avoid overwriting the original.
        target_name = f"{var}-new" if var in self.variable_names else var
        self._add_md_array_to_group(src_rg, target_name, md_arr)
    self._invalidate_caches()

remove_variable(variable_name) #

Delete a variable from this container.

If the dataset is backed by a file on disk, a MEM copy is made first so that the on-disk file is not modified. The internal raster reference is replaced with the modified copy.

Parameters:

Name Type Description Default
variable_name str

Name of the variable to remove.

required
Source code in src/pyramids/netcdf/netcdf.py
def remove_variable(self, variable_name: str):
    """Delete a variable from this container.

    If the dataset is backed by a file on disk, a MEM copy is made first
    so that the on-disk file is not modified. The internal raster
    reference is replaced with the modified copy.

    Args:
        variable_name: Name of the variable to remove.
    """
    if self.driver_type == "memory":
        dst = self._raster
    else:
        dst = gdal.GetDriverByName("MEM").CreateCopy("", self._raster, 0)

    rg = dst.GetRootGroup()
    rg.DeleteMDArray(variable_name)

    self._replace_raster(dst)

rename_variable(old_name, new_name) #

Rename a variable in this container.

Internally extracts the variable data and metadata, creates a new variable with the new name, and removes the old one.

Parameters:

Name Type Description Default
old_name str

Current name of the variable.

required
new_name str

Desired new name.

required

Raises:

Type Description
ValueError

If old_name doesn't exist or new_name already exists.

Source code in src/pyramids/netcdf/netcdf.py
def rename_variable(self, old_name: str, new_name: str):
    """Rename a variable in this container.

    Internally extracts the variable data and metadata, creates
    a new variable with the new name, and removes the old one.

    Args:
        old_name: Current name of the variable.
        new_name: Desired new name.

    Raises:
        ValueError: If `old_name` doesn't exist or `new_name`
            already exists.
    """
    if old_name not in self.variable_names:
        raise ValueError(
            f"Variable '{old_name}' not found. " f"Available: {self.variable_names}"
        )
    if new_name in self.variable_names:
        raise ValueError(f"Variable '{new_name}' already exists.")

    rg = self._raster.GetRootGroup()
    if rg is None:
        raise ValueError("rename_variable requires a multidimensional container.")

    md_arr = rg.OpenMDArray(old_name)
    self._add_md_array_to_group(rg, new_name, md_arr)
    rg.DeleteMDArray(old_name)
    self._invalidate_caches()

to_xarray() #

Convert this NetCDF container to an xarray.Dataset.

Builds an in-memory xarray.Dataset that mirrors the variables, coordinates, dimensions, and global attributes of this pyramids NetCDF container.

The entire conversion goes through GDAL's Multidimensional API — the same reader the rest of pyramids' NetCDF code uses. No xarray engine plugin (netcdf4, h5netcdf, scipy.io.netcdf) is involved, so the [xarray] extra does not need to pull a NetCDF backend: pyramids is the backend. The returned xr.Dataset holds already- materialised numpy arrays; for lazy reads use :meth:read_array(chunks=...) and wrap the result in :class:xarray.DataArray yourself.

Requires the optional xarray package. Install with one of:

  • PyPI: pip install 'pyramids-gis[xarray]'
  • conda-forge: conda install -c conda-forge pyramids-xarray

Returns:

Type Description
Any

xarray.Dataset: An xarray Dataset with the same

Any

variables, coordinates, and global attributes.

Raises:

Type Description
OptionalPackageDoesNotExist

If xarray is not installed.

ValueError

If the underlying GDAL handle is not a multidimensional container (open the file with open_as_multi_dimensional=True).

Examples:

Convert a pyramids NetCDF to xarray::

nc = NetCDF.read_file("temperature.nc")
ds = nc.to_xarray()
print(ds)
Source code in src/pyramids/netcdf/netcdf.py
def to_xarray(self) -> Any:
    """Convert this NetCDF container to an `xarray.Dataset`.

    Builds an in-memory `xarray.Dataset` that mirrors the
    variables, coordinates, dimensions, and global attributes of
    this pyramids NetCDF container.

    The entire conversion goes through GDAL's Multidimensional
    API — the same reader the rest of pyramids' NetCDF code uses.
    No xarray engine plugin (`netcdf4`, `h5netcdf`,
    `scipy.io.netcdf`) is involved, so the `[xarray]` extra
    does not need to pull a NetCDF backend: pyramids is the
    backend. The returned `xr.Dataset` holds already-
    materialised numpy arrays; for lazy reads use
    :meth:`read_array(chunks=...)` and wrap the result in
    :class:`xarray.DataArray` yourself.

    Requires the optional `xarray` package. Install with one of:

    - PyPI: ``pip install 'pyramids-gis[xarray]'``
    - conda-forge: ``conda install -c conda-forge pyramids-xarray``

    Returns:
        xarray.Dataset: An xarray Dataset with the same
        variables, coordinates, and global attributes.

    Raises:
        pyramids.base._errors.OptionalPackageDoesNotExist:
            If `xarray` is not installed.
        ValueError: If the underlying GDAL handle is not a
            multidimensional container (open the file with
            `open_as_multi_dimensional=True`).

    Examples:
        Convert a pyramids NetCDF to xarray::

            nc = NetCDF.read_file("temperature.nc")
            ds = nc.to_xarray()
            print(ds)
    """
    try:
        import xarray as xr
    except ImportError:
        raise OptionalPackageDoesNotExist(
            "xarray is required for to_xarray(). Install with one of:\n"
            "  - PyPI:        pip install 'pyramids-gis[xarray]'\n"
            "  - conda-forge: conda install -c conda-forge pyramids-xarray"
        )

    rg = self._raster.GetRootGroup()
    if rg is None:
        raise ValueError(
            "to_xarray requires a multidimensional container. "
            "Open the file with open_as_multi_dimensional=True."
        )

    coords: dict[str, Any] = {}
    dims = rg.GetDimensions() or []
    for d in dims:
        dim_name = d.GetName()
        iv = d.GetIndexingVariable()
        if iv is None:
            continue
        coord_attrs: dict[str, Any] = {}
        try:
            for attr in iv.GetAttributes():
                coord_attrs[attr.GetName()] = attr.Read()
        except Exception:
            pass
        unit = iv.GetUnit()
        if unit and "units" not in coord_attrs:
            coord_attrs["units"] = unit
        coords[dim_name] = ([dim_name], iv.ReadAsArray(), coord_attrs)

    data_vars: dict[str, Any] = {}
    for var_name in self.variable_names:
        md_arr = rg.OpenMDArray(var_name)
        if md_arr is None:
            continue
        arr_dims = md_arr.GetDimensions() or []
        arr_dim_names = [ad.GetName() for ad in arr_dims]
        arr_data = md_arr.ReadAsArray()
        var_attrs: dict[str, Any] = {}
        try:
            for attr in md_arr.GetAttributes():
                var_attrs[attr.GetName()] = attr.Read()
        except Exception:
            pass
        # GDAL's netCDF driver normalises the CF `units` attribute
        # to MDArray.GetUnit() / SetUnit() rather than a regular
        # attribute. Merge it back into var_attrs for a clean
        # round-trip through xr.Dataset.
        unit = md_arr.GetUnit()
        if unit and "units" not in var_attrs:
            var_attrs["units"] = unit
        data_vars[var_name] = (arr_dim_names, arr_data, var_attrs)

    result = xr.Dataset(
        data_vars=data_vars,
        coords=coords,
        attrs=self.global_attributes,
    )
    return result

from_xarray(dataset, path=None) classmethod #

Create a pyramids NetCDF from an xarray.Dataset.

Extracts dimensions, coordinates, data variables, and attributes from the xarray.Dataset and writes them to a NetCDF file through pyramids' own GDAL Multidimensional writer. No xarray engine plugin (netcdf4, h5netcdf) is invoked — pyramids is the writer, so the [xarray] extra does not need to pull a NetCDF backend.

Usage::

ds = xr.open_dataset("input.nc")
#... xarray processing...
nc = NetCDF.from_xarray(ds)
var = nc.get_variable("temperature")
cropped = var.crop(mask)

Requires the optional xarray package. Install with one of:

  • PyPI: pip install 'pyramids-gis[xarray]'
  • conda-forge: conda install -c conda-forge pyramids-xarray

Parameters:

Name Type Description Default
dataset Any

An xarray.Dataset instance.

required
path str | Path | None

File path where the NetCDF will be written. If None, a temp .nc is created and cleaned up when the returned object is garbage-collected.

None

Returns:

Name Type Description
NetCDF NetCDF

A pyramids NetCDF container backed by the data

NetCDF

from the xarray Dataset.

Raises:

Type Description
OptionalPackageDoesNotExist

If xarray is not installed.

TypeError

If dataset is not an xarray.Dataset.

Source code in src/pyramids/netcdf/netcdf.py
@classmethod
def from_xarray(
    cls,
    dataset: Any,
    path: str | Path | None = None,
) -> NetCDF:
    """Create a pyramids NetCDF from an `xarray.Dataset`.

    Extracts dimensions, coordinates, data variables, and
    attributes from the `xarray.Dataset` and writes them to a
    NetCDF file through pyramids' own GDAL Multidimensional
    writer. No xarray engine plugin (`netcdf4`, `h5netcdf`)
    is invoked — pyramids is the writer, so the `[xarray]`
    extra does not need to pull a NetCDF backend.

    Usage::

        ds = xr.open_dataset("input.nc")
        #... xarray processing...
        nc = NetCDF.from_xarray(ds)
        var = nc.get_variable("temperature")
        cropped = var.crop(mask)

    Requires the optional `xarray` package. Install with one of:

    - PyPI: ``pip install 'pyramids-gis[xarray]'``
    - conda-forge: ``conda install -c conda-forge pyramids-xarray``

    Args:
        dataset: An `xarray.Dataset` instance.
        path: File path where the NetCDF will be written. If
            `None`, a temp `.nc` is created and cleaned up
            when the returned object is garbage-collected.

    Returns:
        NetCDF: A pyramids NetCDF container backed by the data
        from the xarray Dataset.

    Raises:
        pyramids.base._errors.OptionalPackageDoesNotExist:
            If `xarray` is not installed.
        TypeError: If *dataset* is not an `xarray.Dataset`.
    """
    try:
        import xarray as xr
    except ImportError:
        raise OptionalPackageDoesNotExist(
            "xarray is required for from_xarray(). Install with one of:\n"
            "  - PyPI:        pip install 'pyramids-gis[xarray]'\n"
            "  - conda-forge: conda install -c conda-forge pyramids-xarray"
        )

    if not isinstance(dataset, xr.Dataset):
        raise TypeError(f"Expected xarray.Dataset, got {type(dataset).__name__}")

    cleanup_temp = False
    if path is not None:
        path = str(path)
    else:
        tmp = tempfile.NamedTemporaryFile(suffix=".nc", delete=False)
        path = tmp.name
        tmp.close()
        cleanup_temp = True

    mem_src = cls._build_multidim_from_xarray(dataset)
    dst = gdal.GetDriverByName("netCDF").CreateCopy(path, mem_src, 0)
    if dst is None:
        raise RuntimeError(f"Failed to write NetCDF to {path}")
    dst.FlushCache()
    dst = None
    mem_src = None

    result = cls.read_file(path, read_only=True)
    if cleanup_temp:
        result._xarray_temp_path = path
        weakref.finalize(result, os.unlink, path)
    return result