kriging-rs 0.4.0

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

use js_sys::{Float64Array, Object, Reflect, Uint32Array};
use serde::{Deserialize, Serialize};
use wasm_bindgen::prelude::*;

use crate::aggregate::{PolygonAggregationSummary, polygon_weighted_summaries_batch};
use crate::cv::{
    BinomialCvResidual, BinomialCvSummary, k_fold, k_fold_binomial, k_fold_binomial_projected,
    k_fold_projected, k_fold_simple, k_fold_universal, leave_one_out, leave_one_out_binomial,
    leave_one_out_binomial_projected, leave_one_out_projected, leave_one_out_simple,
    leave_one_out_universal,
};
use crate::distance::GeoCoord;
use crate::geo_dataset::GeoDataset;
#[cfg(feature = "gpu")]
use crate::gpu::detect_gpu_support;
use crate::kriging::binomial::{
    BinomialBuildNotes, BinomialKrigingModel, BinomialObservation, BinomialPrior,
    HeteroskedasticBinomialConfig, build_binomial_observations_dropping_zero_trials,
};
use crate::kriging::ordinary::{Neighborhood, OrdinaryKrigingModel};
use crate::kriging::simple::SimpleKrigingModel;
use crate::kriging::universal::{UniversalKrigingModel, UniversalTrend};
use crate::projected::{
    Anisotropy2D, BinomialProjectedKrigingModel, DirectionalConfig, ProjectedBinomialObservation,
    ProjectedCoord, ProjectedDataset, ProjectedKrigingModel,
    compute_directional_empirical_variogram,
};
use crate::simulation::{
    BinomialSimulationManyResult, BinomialSimulationResult, SimulationOptions,
    conditional_simulate, conditional_simulate_binomial, conditional_simulate_binomial_projected,
    conditional_simulate_many, conditional_simulate_many_binomial,
    conditional_simulate_many_binomial_projected, conditional_simulate_projected,
    conditional_simulate_simple, conditional_simulate_universal,
};
use crate::variogram::empirical::{EmpiricalEstimator, PositiveReal, VariogramConfig};
use crate::variogram::fitting::fit_variogram;
use crate::variogram::models::{VariogramModel, VariogramType};
use crate::variogram::nested::NestedVariogram;
use crate::{Real, compute_empirical_variogram};
use std::num::NonZeroUsize;

pub mod spacetime;

/// WASM-exposed variogram type enum; maps to crate's VariogramType.
#[wasm_bindgen]
pub enum WasmVariogramType {
    Spherical,
    Exponential,
    Gaussian,
    Cubic,
    Stable,
    Matern,
    Power,
    HoleEffect,
}

impl From<WasmVariogramType> for VariogramType {
    fn from(w: WasmVariogramType) -> Self {
        match w {
            WasmVariogramType::Spherical => VariogramType::Spherical,
            WasmVariogramType::Exponential => VariogramType::Exponential,
            WasmVariogramType::Gaussian => VariogramType::Gaussian,
            WasmVariogramType::Cubic => VariogramType::Cubic,
            WasmVariogramType::Stable => VariogramType::Stable,
            WasmVariogramType::Matern => VariogramType::Matern,
            WasmVariogramType::Power => VariogramType::Power,
            WasmVariogramType::HoleEffect => VariogramType::HoleEffect,
        }
    }
}

pub(super) fn parse_variogram(
    variogram_type: &str,
    nugget: f64,
    sill: f64,
    range: f64,
    shape: Option<f64>,
) -> Result<VariogramModel, JsValue> {
    let vt = match variogram_type.to_ascii_lowercase().as_str() {
        "spherical" => VariogramType::Spherical,
        "exponential" => VariogramType::Exponential,
        "gaussian" => VariogramType::Gaussian,
        "cubic" => VariogramType::Cubic,
        "stable" => VariogramType::Stable,
        "matern" => VariogramType::Matern,
        "power" => VariogramType::Power,
        "holeeffect" | "hole_effect" | "hole-effect" => VariogramType::HoleEffect,
        _ => return Err(coded_err("unknown variogram_type", "unknown_variogram")),
    };
    match (vt, shape) {
        (VariogramType::Stable, Some(s))
        | (VariogramType::Matern, Some(s))
        | (VariogramType::Power, Some(s)) => VariogramModel::new_with_shape(
            nugget as Real,
            sill as Real,
            range as Real,
            vt,
            s as Real,
        )
        .map_err(kriging_err_to_js),
        _ => VariogramModel::new(nugget as Real, sill as Real, range as Real, vt)
            .map_err(kriging_err_to_js),
    }
}

/// Build a row-major grid of `GeoCoord`s spanning `[y_min, y_max] × [x_min, x_max]`. The
/// row axis (outer) is y (latitude), the column axis (inner) is x (longitude). When a
/// cell count is 1 the midpoint of the range is used; otherwise cell centers are spaced
/// uniformly from `min + step/2` to `max − step/2`.
fn build_grid_coords(
    x_min: f64,
    x_max: f64,
    y_min: f64,
    y_max: f64,
    x_cells: usize,
    y_cells: usize,
) -> Result<Vec<GeoCoord>, JsValue> {
    if x_cells == 0 || y_cells == 0 {
        return Err(coded_err(
            "xCells and yCells must both be positive",
            "invalid_input",
        ));
    }
    if !(x_min.is_finite() && x_max.is_finite() && y_min.is_finite() && y_max.is_finite()) {
        return Err(coded_err("grid bounds must all be finite", "invalid_input"));
    }
    if x_max <= x_min || y_max <= y_min {
        return Err(coded_err(
            "xMax must exceed xMin and yMax must exceed yMin",
            "invalid_input",
        ));
    }
    let dx = (x_max - x_min) / x_cells as f64;
    let dy = (y_max - y_min) / y_cells as f64;
    let mut coords = Vec::with_capacity(x_cells * y_cells);
    for r in 0..y_cells {
        let lat = y_min + (r as f64 + 0.5) * dy;
        for c in 0..x_cells {
            let lon = x_min + (c as f64 + 0.5) * dx;
            coords.push(GeoCoord::try_new(lat as Real, lon as Real).map_err(kriging_err_to_js)?);
        }
    }
    Ok(coords)
}

pub(super) fn to_coords(lats: &[f64], lons: &[f64]) -> Result<Vec<GeoCoord>, JsValue> {
    if lats.len() != lons.len() {
        return Err(coded_err(
            "lats and lons must have same length",
            "mismatched_arrays",
        ));
    }
    let mut out = Vec::with_capacity(lats.len());
    for i in 0..lats.len() {
        out.push(GeoCoord::try_new(lats[i] as Real, lons[i] as Real).map_err(kriging_err_to_js)?);
    }
    Ok(out)
}

/// Map any display-able error to a coded JS error object. Defaults `code` to `invalid_input`.
/// Prefer [`kriging_err_to_js`] for `KrigingError` so the right code is attached.
pub(super) fn err_to_js(err: impl std::fmt::Display) -> JsValue {
    coded_err(&err.to_string(), "invalid_input")
}

/// Map a [`KrigingError`] to a JS `Error`-like object with `message` and a stable `code` field.
pub(super) fn kriging_err_to_js(err: crate::error::KrigingError) -> JsValue {
    let code = error_code_for(&err);
    coded_err(&err.to_string(), code)
}

pub(super) fn coded_err(message: &str, code: &str) -> JsValue {
    let obj = Object::new();
    let _ = Reflect::set(
        &obj,
        &JsValue::from_str("message"),
        &JsValue::from_str(message),
    );
    let _ = Reflect::set(&obj, &JsValue::from_str("code"), &JsValue::from_str(code));
    let _ = Reflect::set(
        &obj,
        &JsValue::from_str("name"),
        &JsValue::from_str("KrigingError"),
    );
    obj.into()
}

fn error_code_for(err: &crate::error::KrigingError) -> &'static str {
    use crate::error::KrigingError;
    match err {
        KrigingError::InsufficientData(_) => "too_few_points",
        KrigingError::DimensionMismatch(_) => "mismatched_arrays",
        KrigingError::InvalidCoordinate { .. } => "invalid_input",
        KrigingError::MatrixError(_) => "singular_covariance",
        KrigingError::FittingError(_) => "invalid_variogram",
        KrigingError::InvalidBinomialData(_) => "invalid_input",
        KrigingError::BackendUnavailable(_) => "backend_unavailable",
        KrigingError::InvalidInput(_) => "invalid_input",
    }
}

/// Geo binomial call sites: drop `trials == 0` rows, keep their original row indices
/// (for [`BinomialKrigingModel::new_with_config`] / build notes).
fn build_observations(
    lats: &[f64],
    lons: &[f64],
    successes: &[u32],
    trials: &[u32],
) -> Result<(Vec<BinomialObservation>, Vec<usize>), JsValue> {
    if lats.len() != lons.len() || lats.len() != successes.len() || lats.len() != trials.len() {
        return Err(coded_err(
            "all input arrays must have same length",
            "mismatched_arrays",
        ));
    }
    let mut coords = Vec::with_capacity(lats.len());
    for i in 0..lats.len() {
        coords
            .push(GeoCoord::try_new(lats[i] as Real, lons[i] as Real).map_err(kriging_err_to_js)?);
    }
    build_binomial_observations_dropping_zero_trials(coords, successes, trials)
        .map_err(kriging_err_to_js)
}

#[derive(Debug, Serialize)]
pub(super) struct JsPrediction {
    pub value: f64,
    pub variance: f64,
}

#[derive(Debug, Serialize)]
#[serde(rename_all = "camelCase")]
struct JsFittedVariogram {
    variogram_type: String,
    nugget: f64,
    sill: f64,
    range: f64,
    #[serde(skip_serializing_if = "Option::is_none")]
    shape: Option<f64>,
    residuals: f64,
}

#[derive(Debug, Serialize)]
#[serde(rename_all = "camelCase")]
pub(super) struct JsBinomialPrediction {
    pub prevalence: f64,
    pub logit_value: f64,
    pub variance: f64,
    pub prevalence_variance: f64,
}

fn variogram_type_name(variogram_type: VariogramType) -> &'static str {
    match variogram_type {
        VariogramType::Spherical => "spherical",
        VariogramType::Exponential => "exponential",
        VariogramType::Gaussian => "gaussian",
        VariogramType::Cubic => "cubic",
        VariogramType::Stable => "stable",
        VariogramType::Matern => "matern",
        VariogramType::Power => "power",
        VariogramType::HoleEffect => "holeeffect",
    }
}

pub(super) fn map_predictions(out: Vec<crate::kriging::ordinary::Prediction>) -> Vec<JsPrediction> {
    out.into_iter()
        .map(|p| JsPrediction {
            value: p.value as f64,
            variance: p.variance as f64,
        })
        .collect::<Vec<_>>()
}

pub(super) fn split_predictions(
    out: Vec<crate::kriging::ordinary::Prediction>,
) -> (Vec<f64>, Vec<f64>) {
    let mut values = Vec::with_capacity(out.len());
    let mut variances = Vec::with_capacity(out.len());
    for pred in out {
        values.push(pred.value as f64);
        variances.push(pred.variance as f64);
    }
    (values, variances)
}

pub(super) fn map_binomial_predictions(
    out: Vec<crate::kriging::binomial::BinomialPrediction>,
) -> Vec<JsBinomialPrediction> {
    out.into_iter()
        .map(|p| JsBinomialPrediction {
            prevalence: p.prevalence as f64,
            logit_value: p.logit_value as f64,
            variance: p.variance as f64,
            prevalence_variance: p.prevalence_variance as f64,
        })
        .collect::<Vec<_>>()
}

pub(super) fn split_binomial_predictions(
    out: Vec<crate::kriging::binomial::BinomialPrediction>,
) -> (Vec<f64>, Vec<f64>, Vec<f64>, Vec<f64>) {
    let mut prevalences = Vec::with_capacity(out.len());
    let mut logit_values = Vec::with_capacity(out.len());
    let mut variances = Vec::with_capacity(out.len());
    let mut prevalence_variances = Vec::with_capacity(out.len());
    for pred in out {
        prevalences.push(pred.prevalence as f64);
        logit_values.push(pred.logit_value as f64);
        variances.push(pred.variance as f64);
        prevalence_variances.push(pred.prevalence_variance as f64);
    }
    (prevalences, logit_values, variances, prevalence_variances)
}

pub(super) fn set_object_field(obj: &Object, key: &str, value: &JsValue) -> Result<(), JsValue> {
    match Reflect::set(obj, &JsValue::from_str(key), value) {
        Ok(true) => Ok(()),
        Ok(false) => Err(coded_err(
            &format!("failed to set property '{key}' on result object"),
            "internal_error",
        )),
        Err(e) => Err(e),
    }
}

/// Options for ordinary kriging model construction (JS: single object argument).
#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
struct OrdinaryKrigingOptions {
    lats: Vec<f64>,
    lons: Vec<f64>,
    values: Vec<f64>,
    variogram: VariogramParams,
}

/// Variogram parameters (nugget, sill, range, optional shape).
#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
struct VariogramParams {
    variogram_type: String,
    nugget: f64,
    sill: f64,
    range: f64,
    #[serde(default)]
    shape: Option<f64>,
}

/// Options for binomial kriging model construction (JS: single object argument).
#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
struct BinomialKrigingOptions {
    lats: Vec<f64>,
    lons: Vec<f64>,
    successes: Vec<u32>,
    trials: Vec<u32>,
    variogram: VariogramParams,
}

/// Prior parameters for binomial kriging (Beta(alpha, beta)).
#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
struct BinomialPriorParams {
    alpha: f64,
    beta: f64,
}

/// Options for binomial kriging with prior (JS: single object argument).
#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
struct BinomialKrigingWithPriorOptions {
    lats: Vec<f64>,
    lons: Vec<f64>,
    successes: Vec<u32>,
    trials: Vec<u32>,
    variogram: VariogramParams,
    prior: BinomialPriorParams,
}

#[wasm_bindgen]
pub struct WasmOrdinaryKriging {
    inner: OrdinaryKrigingModel,
}

#[wasm_bindgen]
impl WasmOrdinaryKriging {
    #[wasm_bindgen(constructor)]
    pub fn new(options: JsValue) -> Result<WasmOrdinaryKriging, JsValue> {
        let opts: OrdinaryKrigingOptions =
            serde_wasm_bindgen::from_value(options).map_err(err_to_js)?;
        let coords = to_coords(&opts.lats, &opts.lons)?;
        let model = parse_variogram(
            &opts.variogram.variogram_type,
            opts.variogram.nugget,
            opts.variogram.sill,
            opts.variogram.range,
            opts.variogram.shape,
        )?;
        let values_real = opts.values.iter().map(|v| *v as Real).collect::<Vec<_>>();
        let dataset = GeoDataset::new(coords, values_real).map_err(kriging_err_to_js)?;
        let inner = OrdinaryKrigingModel::new(dataset, model).map_err(kriging_err_to_js)?;
        Ok(Self { inner })
    }

    /// Zero-(extra-)copy factory: takes typed arrays directly instead of a JS object, so the
    /// large `lats`/`lons`/`values` slices skip the `serde_wasm_bindgen` deserialization step.
    /// The variogram parameters are passed as scalars.
    #[wasm_bindgen(js_name = fromArrays)]
    pub fn from_arrays(
        lats: &[f64],
        lons: &[f64],
        values: &[f64],
        variogram_type: &str,
        nugget: f64,
        sill: f64,
        range: f64,
        shape: Option<f64>,
    ) -> Result<WasmOrdinaryKriging, JsValue> {
        if values.len() != lats.len() {
            return Err(coded_err(
                "values must have the same length as lats/lons",
                "mismatched_arrays",
            ));
        }
        let coords = to_coords(lats, lons)?;
        let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
        let values_real = values.iter().map(|v| *v as Real).collect::<Vec<_>>();
        let dataset = GeoDataset::new(coords, values_real).map_err(kriging_err_to_js)?;
        let inner = OrdinaryKrigingModel::new(dataset, model).map_err(kriging_err_to_js)?;
        Ok(Self { inner })
    }

    /// Enable a search neighborhood that restricts which stations are used at each
    /// prediction location. Pass `maxNeighbors` (nearest-k), `maxRadius` (kilometers), or
    /// both (intersection). Pass neither to clear any existing neighborhood and return to
    /// the full-data fast path.
    #[wasm_bindgen(js_name = setNeighborhood)]
    pub fn set_neighborhood(
        &mut self,
        max_neighbors: Option<usize>,
        max_radius: Option<f64>,
    ) -> Result<(), JsValue> {
        let neighborhood = match (max_neighbors, max_radius) {
            (None, None) => None,
            (k, r) => {
                if let Some(r) = r
                    && (!r.is_finite() || r <= 0.0)
                {
                    return Err(coded_err(
                        "maxRadius must be finite and positive",
                        "invalid_input",
                    ));
                }
                Some(Neighborhood {
                    max_neighbors: k,
                    max_radius: r.map(|r| r as Real),
                })
            }
        };
        self.inner.set_neighborhood(neighborhood);
        Ok(())
    }

    /// Returns the current search neighborhood as `{ maxNeighbors?, maxRadius? }`, or
    /// `null` when no neighborhood is active.
    #[wasm_bindgen(js_name = neighborhood)]
    pub fn neighborhood(&self) -> JsValue {
        match self.inner.neighborhood() {
            None => JsValue::NULL,
            Some(n) => {
                let obj = Object::new();
                if let Some(k) = n.max_neighbors {
                    let _ = set_object_field(&obj, "maxNeighbors", &JsValue::from_f64(k as f64));
                }
                if let Some(r) = n.max_radius {
                    let _ = set_object_field(&obj, "maxRadius", &JsValue::from_f64(r as f64));
                }
                obj.into()
            }
        }
    }

    pub fn predict(&self, lat: f64, lon: f64) -> Result<JsValue, JsValue> {
        let coord = GeoCoord::try_new(lat as Real, lon as Real).map_err(kriging_err_to_js)?;
        let pred = self.inner.predict(coord).map_err(kriging_err_to_js)?;
        serde_wasm_bindgen::to_value(&JsPrediction {
            value: pred.value as f64,
            variance: pred.variance as f64,
        })
        .map_err(err_to_js)
    }

    #[wasm_bindgen(js_name = predictBatch)]
    pub fn predict_batch(&self, lats: &[f64], lons: &[f64]) -> Result<JsValue, JsValue> {
        let coords = to_coords(lats, lons)?;
        let out = self
            .inner
            .predict_batch(&coords)
            .map_err(kriging_err_to_js)?;
        serde_wasm_bindgen::to_value(&map_predictions(out)).map_err(err_to_js)
    }

    #[wasm_bindgen(js_name = predictBatchArrays)]
    pub fn predict_batch_arrays(&self, lats: &[f64], lons: &[f64]) -> Result<JsValue, JsValue> {
        let coords = to_coords(lats, lons)?;
        let out = self
            .inner
            .predict_batch(&coords)
            .map_err(kriging_err_to_js)?;
        let (values, variances) = split_predictions(out);
        let values_array = Float64Array::from(values.as_slice());
        let variances_array = Float64Array::from(variances.as_slice());
        let result = Object::new();
        set_object_field(&result, "values", &values_array.into())?;
        set_object_field(&result, "variances", &variances_array.into())?;
        Ok(result.into())
    }

    /// Predict a regular lat/lon grid in a single call, returning flat `Float64Array`s of
    /// length `xCells × yCells` in row-major (y-outer, x-inner) order. Avoids constructing
    /// the lat/lon coordinate arrays in JS.
    #[wasm_bindgen(js_name = predictGridArrays)]
    pub fn predict_grid_arrays(
        &self,
        x_min: f64,
        x_max: f64,
        y_min: f64,
        y_max: f64,
        x_cells: usize,
        y_cells: usize,
    ) -> Result<JsValue, JsValue> {
        let coords = build_grid_coords(x_min, x_max, y_min, y_max, x_cells, y_cells)?;
        let out = self
            .inner
            .predict_batch(&coords)
            .map_err(kriging_err_to_js)?;
        let (values, variances) = split_predictions(out);
        let result = Object::new();
        set_object_field(
            &result,
            "values",
            &Float64Array::from(values.as_slice()).into(),
        )?;
        set_object_field(
            &result,
            "variances",
            &Float64Array::from(variances.as_slice()).into(),
        )?;
        set_object_field(&result, "nRows", &JsValue::from_f64(y_cells as f64))?;
        set_object_field(&result, "nCols", &JsValue::from_f64(x_cells as f64))?;
        Ok(result.into())
    }

    #[cfg(feature = "gpu")]
    #[wasm_bindgen(js_name = predictBatchGpu)]
    pub async fn predict_batch_gpu(&self, lats: &[f64], lons: &[f64]) -> Result<JsValue, JsValue> {
        let coords = to_coords(lats, lons)?;
        let out = self
            .inner
            .predict_batch_gpu(&coords)
            .await
            .map_err(kriging_err_to_js)?;
        serde_wasm_bindgen::to_value(&map_predictions(out)).map_err(err_to_js)
    }

    #[cfg(feature = "gpu")]
    #[wasm_bindgen(js_name = predictBatchGpuOrCpu)]
    pub async fn predict_batch_gpu_or_cpu(
        &self,
        lats: &[f64],
        lons: &[f64],
    ) -> Result<JsValue, JsValue> {
        let coords = to_coords(lats, lons)?;
        let out = self
            .inner
            .predict_batch_gpu_or_cpu(&coords)
            .await
            .map_err(kriging_err_to_js)?;
        serde_wasm_bindgen::to_value(&map_predictions(out)).map_err(err_to_js)
    }
}

#[wasm_bindgen]
pub struct WasmBinomialKriging {
    inner: BinomialKrigingModel,
    build_notes: BinomialBuildNotes,
}

#[wasm_bindgen]
impl WasmBinomialKriging {
    #[wasm_bindgen(constructor)]
    pub fn new(options: JsValue) -> Result<WasmBinomialKriging, JsValue> {
        let opts: BinomialKrigingOptions =
            serde_wasm_bindgen::from_value(options).map_err(err_to_js)?;
        let (observations, zero_trial_drops) =
            build_observations(&opts.lats, &opts.lons, &opts.successes, &opts.trials)?;
        if observations.len() < 2 {
            return Err(coded_err(
                "need at least two non-zero-trial sites after dropping trials==0 rows",
                "insufficient_data",
            ));
        }
        let model = parse_variogram(
            &opts.variogram.variogram_type,
            opts.variogram.nugget,
            opts.variogram.sill,
            opts.variogram.range,
            opts.variogram.shape,
        )?;
        let hcfg = HeteroskedasticBinomialConfig::default();
        let fit = BinomialKrigingModel::new_with_config(
            observations,
            model,
            BinomialPrior::default(),
            hcfg,
            &zero_trial_drops,
        )
        .map_err(kriging_err_to_js)?;
        Ok(Self {
            inner: fit.model,
            build_notes: fit.notes,
        })
    }

    /// Zero-(extra-)copy factory: takes typed arrays directly instead of a JS object. See
    /// [`WasmOrdinaryKriging::from_arrays`] for the motivation.
    #[wasm_bindgen(js_name = fromArrays)]
    pub fn from_arrays(
        lats: &[f64],
        lons: &[f64],
        successes: &[u32],
        trials: &[u32],
        variogram_type: &str,
        nugget: f64,
        sill: f64,
        range: f64,
        shape: Option<f64>,
    ) -> Result<WasmBinomialKriging, JsValue> {
        let (observations, zero_trial_drops) = build_observations(lats, lons, successes, trials)?;
        if observations.len() < 2 {
            return Err(coded_err(
                "need at least two non-zero-trial sites after dropping trials==0 rows",
                "insufficient_data",
            ));
        }
        let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
        let hcfg = HeteroskedasticBinomialConfig::default();
        let fit = BinomialKrigingModel::new_with_config(
            observations,
            model,
            BinomialPrior::default(),
            hcfg,
            &zero_trial_drops,
        )
        .map_err(kriging_err_to_js)?;
        Ok(Self {
            inner: fit.model,
            build_notes: fit.notes,
        })
    }

    /// Factory for binomial kriging when the caller already has finite logit values (for
    /// example from an externally fitted mean-field model). Bypasses the empirical-Bayes
    /// shrinkage step used by [`Self::new`] / [`Self::from_arrays`].
    #[wasm_bindgen(js_name = fromPrecomputedLogits)]
    pub fn from_precomputed_logits(
        lats: &[f64],
        lons: &[f64],
        logits: &[f64],
        variogram_type: &str,
        nugget: f64,
        sill: f64,
        range: f64,
        shape: Option<f64>,
    ) -> Result<WasmBinomialKriging, JsValue> {
        if logits.len() != lats.len() {
            return Err(coded_err(
                "logits must have the same length as lats/lons",
                "mismatched_arrays",
            ));
        }
        let coords = to_coords(lats, lons)?;
        let logits_real: Vec<Real> = logits.iter().map(|v| *v as Real).collect();
        let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
        let fit = BinomialKrigingModel::from_precomputed_logits(coords, logits_real, model)
            .map_err(kriging_err_to_js)?;
        Ok(Self {
            inner: fit.model,
            build_notes: fit.notes,
        })
    }

    #[wasm_bindgen(js_name = newWithPrior)]
    pub fn new_with_prior(options: JsValue) -> Result<WasmBinomialKriging, JsValue> {
        let opts: BinomialKrigingWithPriorOptions =
            serde_wasm_bindgen::from_value(options).map_err(err_to_js)?;
        let (observations, zero_trial_drops) =
            build_observations(&opts.lats, &opts.lons, &opts.successes, &opts.trials)?;
        if observations.len() < 2 {
            return Err(coded_err(
                "need at least two non-zero-trial sites after dropping trials==0 rows",
                "insufficient_data",
            ));
        }
        let model = parse_variogram(
            &opts.variogram.variogram_type,
            opts.variogram.nugget,
            opts.variogram.sill,
            opts.variogram.range,
            opts.variogram.shape,
        )?;
        let prior = BinomialPrior::new(opts.prior.alpha as Real, opts.prior.beta as Real)
            .map_err(kriging_err_to_js)?;
        let hcfg = HeteroskedasticBinomialConfig::default();
        let fit = BinomialKrigingModel::new_with_config(
            observations,
            model,
            prior,
            hcfg,
            &zero_trial_drops,
        )
        .map_err(kriging_err_to_js)?;
        Ok(Self {
            inner: fit.model,
            build_notes: fit.notes,
        })
    }

    /// Build diagnostics: calibration version, prior, logit inflation, and dropped
    /// zero-trial input rows (by original array index). See [`BinomialBuildNotes`].
    #[wasm_bindgen(js_name = getBuildNotes)]
    pub fn get_build_notes(&self) -> Result<JsValue, JsValue> {
        serde_wasm_bindgen::to_value(&self.build_notes).map_err(err_to_js)
    }

    pub fn predict(&self, lat: f64, lon: f64) -> Result<JsValue, JsValue> {
        let coord = GeoCoord::try_new(lat as Real, lon as Real).map_err(kriging_err_to_js)?;
        let pred = self.inner.predict(coord).map_err(kriging_err_to_js)?;
        serde_wasm_bindgen::to_value(&JsBinomialPrediction {
            prevalence: pred.prevalence as f64,
            logit_value: pred.logit_value as f64,
            variance: pred.variance as f64,
            prevalence_variance: pred.prevalence_variance as f64,
        })
        .map_err(err_to_js)
    }

    #[wasm_bindgen(js_name = predictBatch)]
    pub fn predict_batch(&self, lats: &[f64], lons: &[f64]) -> Result<JsValue, JsValue> {
        let coords = to_coords(lats, lons)?;
        let out = self
            .inner
            .predict_batch(&coords)
            .map_err(kriging_err_to_js)?;
        serde_wasm_bindgen::to_value(&map_binomial_predictions(out)).map_err(err_to_js)
    }

    #[wasm_bindgen(js_name = predictBatchArrays)]
    pub fn predict_batch_arrays(&self, lats: &[f64], lons: &[f64]) -> Result<JsValue, JsValue> {
        let coords = to_coords(lats, lons)?;
        let out = self
            .inner
            .predict_batch(&coords)
            .map_err(kriging_err_to_js)?;
        let (prevalences, logit_values, variances, prevalence_variances) =
            split_binomial_predictions(out);
        let prevalences_array = Float64Array::from(prevalences.as_slice());
        let logit_values_array = Float64Array::from(logit_values.as_slice());
        let variances_array = Float64Array::from(variances.as_slice());
        let prevalence_variances_array = Float64Array::from(prevalence_variances.as_slice());
        let result = Object::new();
        set_object_field(&result, "prevalences", &prevalences_array.into())?;
        set_object_field(&result, "logitValues", &logit_values_array.into())?;
        set_object_field(&result, "variances", &variances_array.into())?;
        set_object_field(
            &result,
            "prevalenceVariances",
            &prevalence_variances_array.into(),
        )?;
        Ok(result.into())
    }

    /// Predict a regular lat/lon grid in a single call, returning flat `Float64Array`s in
    /// row-major (y-outer, x-inner) order.
    #[wasm_bindgen(js_name = predictGridArrays)]
    pub fn predict_grid_arrays(
        &self,
        x_min: f64,
        x_max: f64,
        y_min: f64,
        y_max: f64,
        x_cells: usize,
        y_cells: usize,
    ) -> Result<JsValue, JsValue> {
        let coords = build_grid_coords(x_min, x_max, y_min, y_max, x_cells, y_cells)?;
        let out = self
            .inner
            .predict_batch(&coords)
            .map_err(kriging_err_to_js)?;
        let (prevalences, logit_values, variances, prevalence_variances) =
            split_binomial_predictions(out);
        let result = Object::new();
        set_object_field(
            &result,
            "prevalences",
            &Float64Array::from(prevalences.as_slice()).into(),
        )?;
        set_object_field(
            &result,
            "logitValues",
            &Float64Array::from(logit_values.as_slice()).into(),
        )?;
        set_object_field(
            &result,
            "variances",
            &Float64Array::from(variances.as_slice()).into(),
        )?;
        set_object_field(
            &result,
            "prevalenceVariances",
            &Float64Array::from(prevalence_variances.as_slice()).into(),
        )?;
        set_object_field(&result, "nRows", &JsValue::from_f64(y_cells as f64))?;
        set_object_field(&result, "nCols", &JsValue::from_f64(x_cells as f64))?;
        Ok(result.into())
    }

    #[cfg(feature = "gpu")]
    #[wasm_bindgen(js_name = predictBatchGpu)]
    pub async fn predict_batch_gpu(&self, lats: &[f64], lons: &[f64]) -> Result<JsValue, JsValue> {
        let coords = to_coords(lats, lons)?;
        let out = self
            .inner
            .predict_batch_gpu(&coords)
            .await
            .map_err(kriging_err_to_js)?;
        serde_wasm_bindgen::to_value(&map_binomial_predictions(out)).map_err(err_to_js)
    }

    #[cfg(feature = "gpu")]
    #[wasm_bindgen(js_name = predictBatchGpuOrCpu)]
    pub async fn predict_batch_gpu_or_cpu(
        &self,
        lats: &[f64],
        lons: &[f64],
    ) -> Result<JsValue, JsValue> {
        let coords = to_coords(lats, lons)?;
        let out = self
            .inner
            .predict_batch_gpu_or_cpu(&coords)
            .await
            .map_err(kriging_err_to_js)?;
        serde_wasm_bindgen::to_value(&map_binomial_predictions(out)).map_err(err_to_js)
    }
}

fn parse_estimator(s: Option<&str>) -> Result<EmpiricalEstimator, JsValue> {
    match s.unwrap_or("classical") {
        "classical" => Ok(EmpiricalEstimator::Classical),
        "cressie-hawkins" | "cressie_hawkins" | "cressieHawkins" | "robust" => {
            Ok(EmpiricalEstimator::CressieHawkins)
        }
        other => Err(coded_err(
            &format!(
                "unknown empirical estimator '{other}' (expected 'classical' or 'cressie-hawkins')"
            ),
            "invalid_input",
        )),
    }
}

#[wasm_bindgen(js_name = fitVariogram)]
pub fn wasm_fit_ordinary_variogram(
    sample_lats: &[f64],
    sample_lons: &[f64],
    values: &[f64],
    max_distance: Option<f64>,
    n_bins: usize,
    variogram_type: WasmVariogramType,
    estimator: Option<String>,
) -> Result<JsValue, JsValue> {
    let sample_coords = to_coords(sample_lats, sample_lons)?;
    let n_bins = NonZeroUsize::new(n_bins)
        .ok_or_else(|| coded_err("n_bins must be at least 1", "invalid_bins"))?;
    let max_distance = match max_distance {
        Some(v) if v > 0.0 && v.is_finite() => {
            Some(PositiveReal::try_new(v as Real).map_err(kriging_err_to_js)?)
        }
        Some(_) => {
            return Err(coded_err(
                "max_distance must be finite and positive",
                "invalid_input",
            ));
        }
        None => None,
    };
    let estimator = parse_estimator(estimator.as_deref())?;
    let config = VariogramConfig {
        max_distance,
        n_bins,
        estimator,
    };
    let values_real = values.iter().map(|v| *v as Real).collect::<Vec<_>>();
    let dataset = GeoDataset::new(sample_coords, values_real).map_err(kriging_err_to_js)?;
    let empirical = compute_empirical_variogram(&dataset, &config).map_err(kriging_err_to_js)?;
    let crate_type = VariogramType::from(variogram_type);
    let fit = fit_variogram(&empirical, crate_type).map_err(kriging_err_to_js)?;
    let (nugget, sill, range) = fit.model.params();
    serde_wasm_bindgen::to_value(&JsFittedVariogram {
        variogram_type: variogram_type_name(crate_type).to_string(),
        nugget: nugget as f64,
        sill: sill as f64,
        range: range as f64,
        shape: fit.model.shape().map(|s| s as f64),
        residuals: fit.residuals as f64,
    })
    .map_err(err_to_js)
}

#[cfg(feature = "gpu")]
#[wasm_bindgen(js_name = webgpuAvailable)]
pub async fn wasm_webgpu_available() -> Result<JsValue, JsValue> {
    let support = detect_gpu_support().await;
    serde_wasm_bindgen::to_value(&support.available).map_err(err_to_js)
}

// ---------------------------------------------------------------------------
// Empirical variogram (direct, without fitting)
// ---------------------------------------------------------------------------

fn empirical_to_js(
    empirical: &crate::variogram::empirical::EmpiricalVariogram,
) -> Result<JsValue, JsValue> {
    let distances: Vec<f64> = empirical.distances.iter().map(|v| *v as f64).collect();
    let semivariances: Vec<f64> = empirical.semivariances.iter().map(|v| *v as f64).collect();
    let counts: Vec<u32> = empirical.n_pairs.iter().map(|v| *v as u32).collect();
    let result = Object::new();
    set_object_field(
        &result,
        "distances",
        &Float64Array::from(distances.as_slice()).into(),
    )?;
    set_object_field(
        &result,
        "semivariances",
        &Float64Array::from(semivariances.as_slice()).into(),
    )?;
    set_object_field(
        &result,
        "counts",
        &Uint32Array::from(counts.as_slice()).into(),
    )?;
    Ok(result.into())
}

/// Compute the empirical (sample) variogram cloud as `{ distances, semivariances, counts }`.
/// Mirrors [`compute_empirical_variogram`] on the Rust side.
#[wasm_bindgen(js_name = computeEmpiricalVariogram)]
pub fn wasm_compute_empirical_variogram(
    lats: &[f64],
    lons: &[f64],
    values: &[f64],
    max_distance: Option<f64>,
    n_bins: usize,
    estimator: Option<String>,
) -> Result<JsValue, JsValue> {
    let coords = to_coords(lats, lons)?;
    let n_bins = NonZeroUsize::new(n_bins)
        .ok_or_else(|| coded_err("n_bins must be at least 1", "invalid_bins"))?;
    let max_distance = match max_distance {
        Some(v) if v > 0.0 && v.is_finite() => {
            Some(PositiveReal::try_new(v as Real).map_err(kriging_err_to_js)?)
        }
        Some(_) => {
            return Err(coded_err(
                "max_distance must be finite and positive",
                "invalid_input",
            ));
        }
        None => None,
    };
    let estimator = parse_estimator(estimator.as_deref())?;
    let config = VariogramConfig {
        max_distance,
        n_bins,
        estimator,
    };
    let values_real = values.iter().map(|v| *v as Real).collect::<Vec<_>>();
    let dataset = GeoDataset::new(coords, values_real).map_err(kriging_err_to_js)?;
    let empirical = compute_empirical_variogram(&dataset, &config).map_err(kriging_err_to_js)?;
    empirical_to_js(&empirical)
}

// ---------------------------------------------------------------------------
// Directional empirical variogram (projected / planar)
// ---------------------------------------------------------------------------

/// Compute a directional empirical variogram on planar `(x, y)` data. Returns the same
/// `{ distances, semivariances, counts }` shape as [`wasm_compute_empirical_variogram`].
#[wasm_bindgen(js_name = computeDirectionalEmpiricalVariogram)]
pub fn wasm_compute_directional_empirical_variogram(
    xs: &[f64],
    ys: &[f64],
    values: &[f64],
    max_distance: f64,
    n_bins: usize,
    azimuth_deg: f64,
    tolerance_deg: f64,
) -> Result<JsValue, JsValue> {
    if xs.len() != ys.len() || xs.len() != values.len() {
        return Err(coded_err(
            "xs, ys and values must have the same length",
            "mismatched_arrays",
        ));
    }
    let coords: Vec<ProjectedCoord> = xs
        .iter()
        .zip(ys.iter())
        .map(|(&x, &y)| ProjectedCoord::new(x as Real, y as Real))
        .collect();
    let values_real: Vec<Real> = values.iter().map(|v| *v as Real).collect();
    let max_distance = PositiveReal::try_new(max_distance as Real).map_err(kriging_err_to_js)?;
    let n_bins = NonZeroUsize::new(n_bins)
        .ok_or_else(|| coded_err("n_bins must be at least 1", "invalid_bins"))?;
    let direction = DirectionalConfig::new(azimuth_deg as Real, tolerance_deg as Real)
        .map_err(kriging_err_to_js)?;
    let empirical = compute_directional_empirical_variogram(
        &coords,
        &values_real,
        max_distance,
        n_bins,
        direction,
    )
    .map_err(kriging_err_to_js)?;
    empirical_to_js(&empirical)
}

// ---------------------------------------------------------------------------
// Simple kriging (known mean)
// ---------------------------------------------------------------------------

#[wasm_bindgen]
pub struct WasmSimpleKriging {
    inner: SimpleKrigingModel,
}

#[wasm_bindgen]
impl WasmSimpleKriging {
    /// Construct a simple kriging model from typed arrays and a known `mean`.
    #[wasm_bindgen(js_name = fromArrays)]
    pub fn from_arrays(
        lats: &[f64],
        lons: &[f64],
        values: &[f64],
        mean: f64,
        variogram_type: &str,
        nugget: f64,
        sill: f64,
        range: f64,
        shape: Option<f64>,
    ) -> Result<WasmSimpleKriging, JsValue> {
        if values.len() != lats.len() {
            return Err(coded_err(
                "values must have the same length as lats/lons",
                "mismatched_arrays",
            ));
        }
        let coords = to_coords(lats, lons)?;
        let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
        let values_real: Vec<Real> = values.iter().map(|v| *v as Real).collect();
        let dataset = GeoDataset::new(coords, values_real).map_err(kriging_err_to_js)?;
        let inner =
            SimpleKrigingModel::new(dataset, model, mean as Real).map_err(kriging_err_to_js)?;
        Ok(Self { inner })
    }

    /// Returns the known mean used to build the model.
    pub fn mean(&self) -> f64 {
        self.inner.mean() as f64
    }

    pub fn predict(&self, lat: f64, lon: f64) -> Result<JsValue, JsValue> {
        let coord = GeoCoord::try_new(lat as Real, lon as Real).map_err(kriging_err_to_js)?;
        let pred = self.inner.predict(coord).map_err(kriging_err_to_js)?;
        serde_wasm_bindgen::to_value(&JsPrediction {
            value: pred.value as f64,
            variance: pred.variance as f64,
        })
        .map_err(err_to_js)
    }

    #[wasm_bindgen(js_name = predictBatch)]
    pub fn predict_batch(&self, lats: &[f64], lons: &[f64]) -> Result<JsValue, JsValue> {
        let coords = to_coords(lats, lons)?;
        let out = self
            .inner
            .predict_batch(&coords)
            .map_err(kriging_err_to_js)?;
        serde_wasm_bindgen::to_value(&map_predictions(out)).map_err(err_to_js)
    }

    #[wasm_bindgen(js_name = predictBatchArrays)]
    pub fn predict_batch_arrays(&self, lats: &[f64], lons: &[f64]) -> Result<JsValue, JsValue> {
        let coords = to_coords(lats, lons)?;
        let out = self
            .inner
            .predict_batch(&coords)
            .map_err(kriging_err_to_js)?;
        let (values, variances) = split_predictions(out);
        let result = Object::new();
        set_object_field(
            &result,
            "values",
            &Float64Array::from(values.as_slice()).into(),
        )?;
        set_object_field(
            &result,
            "variances",
            &Float64Array::from(variances.as_slice()).into(),
        )?;
        Ok(result.into())
    }
}

// ---------------------------------------------------------------------------
// Universal kriging (trend-based)
// ---------------------------------------------------------------------------

fn parse_trend(s: &str) -> Result<UniversalTrend, JsValue> {
    match s {
        "constant" => Ok(UniversalTrend::Constant),
        "linear" => Ok(UniversalTrend::Linear),
        "quadratic" => Ok(UniversalTrend::Quadratic),
        other => Err(coded_err(
            &format!("unknown trend '{other}' (expected 'constant', 'linear', or 'quadratic')"),
            "invalid_input",
        )),
    }
}

#[wasm_bindgen]
pub struct WasmUniversalKriging {
    inner: UniversalKrigingModel,
}

#[wasm_bindgen]
impl WasmUniversalKriging {
    /// Construct a universal kriging model from typed arrays. `trend` selects the drift
    /// basis: `"constant"`, `"linear"`, or `"quadratic"`.
    #[wasm_bindgen(js_name = fromArrays)]
    pub fn from_arrays(
        lats: &[f64],
        lons: &[f64],
        values: &[f64],
        trend: &str,
        variogram_type: &str,
        nugget: f64,
        sill: f64,
        range: f64,
        shape: Option<f64>,
    ) -> Result<WasmUniversalKriging, JsValue> {
        if values.len() != lats.len() {
            return Err(coded_err(
                "values must have the same length as lats/lons",
                "mismatched_arrays",
            ));
        }
        let trend = parse_trend(trend)?;
        let coords = to_coords(lats, lons)?;
        let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
        let values_real: Vec<Real> = values.iter().map(|v| *v as Real).collect();
        let dataset = GeoDataset::new(coords, values_real).map_err(kriging_err_to_js)?;
        let inner = UniversalKrigingModel::new(dataset, model, trend).map_err(kriging_err_to_js)?;
        Ok(Self { inner })
    }

    pub fn predict(&self, lat: f64, lon: f64) -> Result<JsValue, JsValue> {
        let coord = GeoCoord::try_new(lat as Real, lon as Real).map_err(kriging_err_to_js)?;
        let pred = self.inner.predict(coord).map_err(kriging_err_to_js)?;
        serde_wasm_bindgen::to_value(&JsPrediction {
            value: pred.value as f64,
            variance: pred.variance as f64,
        })
        .map_err(err_to_js)
    }

    #[wasm_bindgen(js_name = predictBatch)]
    pub fn predict_batch(&self, lats: &[f64], lons: &[f64]) -> Result<JsValue, JsValue> {
        let coords = to_coords(lats, lons)?;
        let out = self
            .inner
            .predict_batch(&coords)
            .map_err(kriging_err_to_js)?;
        serde_wasm_bindgen::to_value(&map_predictions(out)).map_err(err_to_js)
    }

    #[wasm_bindgen(js_name = predictBatchArrays)]
    pub fn predict_batch_arrays(&self, lats: &[f64], lons: &[f64]) -> Result<JsValue, JsValue> {
        let coords = to_coords(lats, lons)?;
        let out = self
            .inner
            .predict_batch(&coords)
            .map_err(kriging_err_to_js)?;
        let (values, variances) = split_predictions(out);
        let result = Object::new();
        set_object_field(
            &result,
            "values",
            &Float64Array::from(values.as_slice()).into(),
        )?;
        set_object_field(
            &result,
            "variances",
            &Float64Array::from(variances.as_slice()).into(),
        )?;
        Ok(result.into())
    }
}

// ---------------------------------------------------------------------------
// Projected (planar) kriging with 2D anisotropy
// ---------------------------------------------------------------------------

#[wasm_bindgen]
pub struct WasmProjectedKriging {
    inner: ProjectedKrigingModel,
}

#[wasm_bindgen]
impl WasmProjectedKriging {
    /// Construct a projected (planar) ordinary kriging model on `(x, y)` coordinates with
    /// 2D anisotropy. `majorAngleDeg` is the azimuth of the major correlation axis (degrees
    /// CCW from +x); `rangeRatio` is the minor/major range ratio in `(0, 1]`.
    #[wasm_bindgen(js_name = fromArrays)]
    pub fn from_arrays(
        xs: &[f64],
        ys: &[f64],
        values: &[f64],
        variogram_type: &str,
        nugget: f64,
        sill: f64,
        range: f64,
        shape: Option<f64>,
        major_angle_deg: f64,
        range_ratio: f64,
    ) -> Result<WasmProjectedKriging, JsValue> {
        if xs.len() != ys.len() || xs.len() != values.len() {
            return Err(coded_err(
                "xs, ys and values must have the same length",
                "mismatched_arrays",
            ));
        }
        let coords: Vec<ProjectedCoord> = xs
            .iter()
            .zip(ys.iter())
            .map(|(&x, &y)| ProjectedCoord::new(x as Real, y as Real))
            .collect();
        let values_real: Vec<Real> = values.iter().map(|v| *v as Real).collect();
        let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
        let anisotropy = Anisotropy2D::new(major_angle_deg as Real, range_ratio as Real)
            .map_err(kriging_err_to_js)?;
        let dataset = ProjectedDataset::new(coords, values_real).map_err(kriging_err_to_js)?;
        let inner =
            ProjectedKrigingModel::new(dataset, model, anisotropy).map_err(kriging_err_to_js)?;
        Ok(Self { inner })
    }

    pub fn predict(&self, x: f64, y: f64) -> Result<JsValue, JsValue> {
        let coord = ProjectedCoord::new(x as Real, y as Real);
        let pred = self.inner.predict(coord).map_err(kriging_err_to_js)?;
        serde_wasm_bindgen::to_value(&JsPrediction {
            value: pred.value as f64,
            variance: pred.variance as f64,
        })
        .map_err(err_to_js)
    }

    #[wasm_bindgen(js_name = predictBatch)]
    pub fn predict_batch(&self, xs: &[f64], ys: &[f64]) -> Result<JsValue, JsValue> {
        if xs.len() != ys.len() {
            return Err(coded_err(
                "xs and ys must have the same length",
                "mismatched_arrays",
            ));
        }
        let coords: Vec<ProjectedCoord> = xs
            .iter()
            .zip(ys.iter())
            .map(|(&x, &y)| ProjectedCoord::new(x as Real, y as Real))
            .collect();
        let out = self
            .inner
            .predict_batch(&coords)
            .map_err(kriging_err_to_js)?;
        serde_wasm_bindgen::to_value(&map_predictions(out)).map_err(err_to_js)
    }

    #[wasm_bindgen(js_name = predictBatchArrays)]
    pub fn predict_batch_arrays(&self, xs: &[f64], ys: &[f64]) -> Result<JsValue, JsValue> {
        if xs.len() != ys.len() {
            return Err(coded_err(
                "xs and ys must have the same length",
                "mismatched_arrays",
            ));
        }
        let coords: Vec<ProjectedCoord> = xs
            .iter()
            .zip(ys.iter())
            .map(|(&x, &y)| ProjectedCoord::new(x as Real, y as Real))
            .collect();
        let out = self
            .inner
            .predict_batch(&coords)
            .map_err(kriging_err_to_js)?;
        let (values, variances) = split_predictions(out);
        let result = Object::new();
        set_object_field(
            &result,
            "values",
            &Float64Array::from(values.as_slice()).into(),
        )?;
        set_object_field(
            &result,
            "variances",
            &Float64Array::from(variances.as_slice()).into(),
        )?;
        Ok(result.into())
    }
}

// ---------------------------------------------------------------------------
// Projected binomial kriging
// ---------------------------------------------------------------------------

fn build_projected_binomial_observations(
    xs: &[f64],
    ys: &[f64],
    successes: &[u32],
    trials: &[u32],
) -> Result<(Vec<ProjectedBinomialObservation>, Vec<usize>), JsValue> {
    if xs.len() != ys.len() || xs.len() != successes.len() || xs.len() != trials.len() {
        return Err(coded_err(
            "xs, ys, successes and trials must have the same length",
            "mismatched_arrays",
        ));
    }
    let mut out = Vec::new();
    let mut dropped: Vec<usize> = Vec::new();
    for i in 0..xs.len() {
        if trials[i] == 0 {
            dropped.push(i);
            continue;
        }
        let coord = ProjectedCoord::new(xs[i] as Real, ys[i] as Real);
        out.push(
            ProjectedBinomialObservation::new(coord, successes[i], trials[i])
                .map_err(kriging_err_to_js)?,
        );
    }
    Ok((out, dropped))
}

#[wasm_bindgen]
pub struct WasmBinomialProjectedKriging {
    inner: BinomialProjectedKrigingModel,
    build_notes: BinomialBuildNotes,
}

#[wasm_bindgen]
impl WasmBinomialProjectedKriging {
    /// Construct a binomial projected kriging model on planar `(x, y)`
    /// coordinates. Mirrors [`WasmBinomialKriging::fromArrays`] but with
    /// 2-D anisotropy (`majorAngleDeg`, `rangeRatio`). Uses
    /// `BinomialPrior::default()` (Beta(1, 1)) for empirical-Bayes
    /// smoothing of the per-station logits.
    #[wasm_bindgen(js_name = fromArrays)]
    pub fn from_arrays(
        xs: &[f64],
        ys: &[f64],
        successes: &[u32],
        trials: &[u32],
        variogram_type: &str,
        nugget: f64,
        sill: f64,
        range: f64,
        shape: Option<f64>,
        major_angle_deg: f64,
        range_ratio: f64,
    ) -> Result<WasmBinomialProjectedKriging, JsValue> {
        let (observations, zero_trial_drops) =
            build_projected_binomial_observations(xs, ys, successes, trials)?;
        if observations.len() < 2 {
            return Err(coded_err(
                "need at least two non-zero-trial sites after dropping trials==0 rows",
                "insufficient_data",
            ));
        }
        let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
        let anisotropy = Anisotropy2D::new(major_angle_deg as Real, range_ratio as Real)
            .map_err(kriging_err_to_js)?;
        let fit = BinomialProjectedKrigingModel::new(observations, model, anisotropy)
            .map_err(kriging_err_to_js)?;
        let mut build_notes = fit.notes;
        build_notes.zero_trial_dropped_indices = zero_trial_drops;
        build_notes.zero_trial_dropped_indices.sort_unstable();
        Ok(Self {
            inner: fit.model,
            build_notes,
        })
    }

    /// As [`fromArrays`](Self::from_arrays), with an explicit Beta prior.
    #[wasm_bindgen(js_name = fromArraysWithPrior)]
    pub fn from_arrays_with_prior(
        xs: &[f64],
        ys: &[f64],
        successes: &[u32],
        trials: &[u32],
        variogram_type: &str,
        nugget: f64,
        sill: f64,
        range: f64,
        shape: Option<f64>,
        major_angle_deg: f64,
        range_ratio: f64,
        prior_alpha: f64,
        prior_beta: f64,
    ) -> Result<WasmBinomialProjectedKriging, JsValue> {
        let (observations, zero_trial_drops) =
            build_projected_binomial_observations(xs, ys, successes, trials)?;
        if observations.len() < 2 {
            return Err(coded_err(
                "need at least two non-zero-trial sites after dropping trials==0 rows",
                "insufficient_data",
            ));
        }
        let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
        let anisotropy = Anisotropy2D::new(major_angle_deg as Real, range_ratio as Real)
            .map_err(kriging_err_to_js)?;
        let prior = BinomialPrior::new(prior_alpha as Real, prior_beta as Real)
            .map_err(kriging_err_to_js)?;
        let fit =
            BinomialProjectedKrigingModel::new_with_prior(observations, model, anisotropy, prior)
                .map_err(kriging_err_to_js)?;
        let mut build_notes = fit.notes;
        build_notes.zero_trial_dropped_indices = zero_trial_drops;
        build_notes.zero_trial_dropped_indices.sort_unstable();
        Ok(Self {
            inner: fit.model,
            build_notes,
        })
    }

    /// Build a projected binomial model from caller-supplied logit values,
    /// bypassing the empirical-Bayes shrinkage step.
    #[wasm_bindgen(js_name = fromPrecomputedLogits)]
    pub fn from_precomputed_logits(
        xs: &[f64],
        ys: &[f64],
        logits: &[f64],
        variogram_type: &str,
        nugget: f64,
        sill: f64,
        range: f64,
        shape: Option<f64>,
        major_angle_deg: f64,
        range_ratio: f64,
    ) -> Result<WasmBinomialProjectedKriging, JsValue> {
        if xs.len() != ys.len() || xs.len() != logits.len() {
            return Err(coded_err(
                "xs, ys and logits must have the same length",
                "mismatched_arrays",
            ));
        }
        let coords: Vec<ProjectedCoord> = xs
            .iter()
            .zip(ys.iter())
            .map(|(&x, &y)| ProjectedCoord::new(x as Real, y as Real))
            .collect();
        let logits_real: Vec<Real> = logits.iter().map(|v| *v as Real).collect();
        let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
        let anisotropy = Anisotropy2D::new(major_angle_deg as Real, range_ratio as Real)
            .map_err(kriging_err_to_js)?;
        let fit = BinomialProjectedKrigingModel::from_precomputed_logits(
            coords,
            logits_real,
            model,
            anisotropy,
        )
        .map_err(kriging_err_to_js)?;
        Ok(Self {
            inner: fit.model,
            build_notes: fit.notes,
        })
    }

    /// Build / conditioning diagnostics for the projected binomial model. See
    /// [`BinomialBuildNotes`].
    #[wasm_bindgen(js_name = getBuildNotes)]
    pub fn get_build_notes(&self) -> Result<JsValue, JsValue> {
        serde_wasm_bindgen::to_value(&self.build_notes).map_err(err_to_js)
    }

    pub fn predict(&self, x: f64, y: f64) -> Result<JsValue, JsValue> {
        let coord = ProjectedCoord::new(x as Real, y as Real);
        let pred = self.inner.predict(coord).map_err(kriging_err_to_js)?;
        serde_wasm_bindgen::to_value(&JsBinomialPrediction {
            prevalence: pred.prevalence as f64,
            logit_value: pred.logit_value as f64,
            variance: pred.variance as f64,
            prevalence_variance: pred.prevalence_variance as f64,
        })
        .map_err(err_to_js)
    }

    #[wasm_bindgen(js_name = predictBatch)]
    pub fn predict_batch(&self, xs: &[f64], ys: &[f64]) -> Result<JsValue, JsValue> {
        if xs.len() != ys.len() {
            return Err(coded_err(
                "xs and ys must have the same length",
                "mismatched_arrays",
            ));
        }
        let coords: Vec<ProjectedCoord> = xs
            .iter()
            .zip(ys.iter())
            .map(|(&x, &y)| ProjectedCoord::new(x as Real, y as Real))
            .collect();
        let out = self
            .inner
            .predict_batch(&coords)
            .map_err(kriging_err_to_js)?;
        serde_wasm_bindgen::to_value(&map_binomial_predictions(out)).map_err(err_to_js)
    }

    #[wasm_bindgen(js_name = predictBatchArrays)]
    pub fn predict_batch_arrays(&self, xs: &[f64], ys: &[f64]) -> Result<JsValue, JsValue> {
        if xs.len() != ys.len() {
            return Err(coded_err(
                "xs and ys must have the same length",
                "mismatched_arrays",
            ));
        }
        let coords: Vec<ProjectedCoord> = xs
            .iter()
            .zip(ys.iter())
            .map(|(&x, &y)| ProjectedCoord::new(x as Real, y as Real))
            .collect();
        let out = self
            .inner
            .predict_batch(&coords)
            .map_err(kriging_err_to_js)?;
        let (prevalences, logit_values, variances, prevalence_variances) =
            split_binomial_predictions(out);
        let result = Object::new();
        set_object_field(
            &result,
            "prevalences",
            &Float64Array::from(prevalences.as_slice()).into(),
        )?;
        set_object_field(
            &result,
            "logitValues",
            &Float64Array::from(logit_values.as_slice()).into(),
        )?;
        set_object_field(
            &result,
            "variances",
            &Float64Array::from(variances.as_slice()).into(),
        )?;
        set_object_field(
            &result,
            "prevalenceVariances",
            &Float64Array::from(prevalence_variances.as_slice()).into(),
        )?;
        Ok(result.into())
    }
}

// ---------------------------------------------------------------------------
// Cross-validation
// ---------------------------------------------------------------------------

#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
struct JsCvSummary {
    n: usize,
    mean_error: f64,
    rmse: f64,
    msdr: f64,
}

pub(super) fn cv_result_to_js(residuals: Vec<crate::cv::CvResidual>) -> Result<JsValue, JsValue> {
    let n = residuals.len();
    let summary = crate::cv::CvSummary::from_residuals(&residuals);
    let mut indices: Vec<u32> = Vec::with_capacity(n);
    let mut observed: Vec<f64> = Vec::with_capacity(n);
    let mut predicted: Vec<f64> = Vec::with_capacity(n);
    let mut variances: Vec<f64> = Vec::with_capacity(n);
    for r in &residuals {
        indices.push(r.index as u32);
        observed.push(r.observed as f64);
        predicted.push(r.predicted as f64);
        variances.push(r.variance as f64);
    }
    let result = Object::new();
    set_object_field(
        &result,
        "indices",
        &Uint32Array::from(indices.as_slice()).into(),
    )?;
    set_object_field(
        &result,
        "observed",
        &Float64Array::from(observed.as_slice()).into(),
    )?;
    set_object_field(
        &result,
        "predicted",
        &Float64Array::from(predicted.as_slice()).into(),
    )?;
    set_object_field(
        &result,
        "variances",
        &Float64Array::from(variances.as_slice()).into(),
    )?;
    let summary_js = serde_wasm_bindgen::to_value(&JsCvSummary {
        n: summary.n,
        mean_error: summary.mean_error as f64,
        rmse: summary.rmse as f64,
        msdr: summary.msdr as f64,
    })
    .map_err(err_to_js)?;
    set_object_field(&result, "summary", &summary_js)?;
    Ok(result.into())
}

/// Leave-one-out cross-validation over ordinary kriging with the given variogram.
/// Returns `{ indices, observed, predicted, variances, summary }` where `summary` holds
/// `n`, `meanError`, `rmse`, and `msdr`.
#[wasm_bindgen(js_name = leaveOneOut)]
pub fn wasm_leave_one_out(
    lats: &[f64],
    lons: &[f64],
    values: &[f64],
    variogram_type: &str,
    nugget: f64,
    sill: f64,
    range: f64,
    shape: Option<f64>,
) -> Result<JsValue, JsValue> {
    if values.len() != lats.len() {
        return Err(coded_err(
            "values must have the same length as lats/lons",
            "mismatched_arrays",
        ));
    }
    let coords = to_coords(lats, lons)?;
    let values_real: Vec<Real> = values.iter().map(|v| *v as Real).collect();
    let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
    let residuals = leave_one_out(&coords, &values_real, model).map_err(kriging_err_to_js)?;
    cv_result_to_js(residuals)
}

/// K-fold cross-validation over ordinary kriging with the given variogram. `k` must be
/// `2 <= k <= n`. Folds are deterministic (round-robin).
#[wasm_bindgen(js_name = kFold)]
pub fn wasm_k_fold(
    lats: &[f64],
    lons: &[f64],
    values: &[f64],
    k: usize,
    variogram_type: &str,
    nugget: f64,
    sill: f64,
    range: f64,
    shape: Option<f64>,
) -> Result<JsValue, JsValue> {
    if values.len() != lats.len() {
        return Err(coded_err(
            "values must have the same length as lats/lons",
            "mismatched_arrays",
        ));
    }
    let coords = to_coords(lats, lons)?;
    let values_real: Vec<Real> = values.iter().map(|v| *v as Real).collect();
    let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
    let residuals = k_fold(&coords, &values_real, model, k).map_err(kriging_err_to_js)?;
    cv_result_to_js(residuals)
}

// --- Simple kriging CV ---

/// Leave-one-out CV over simple kriging with the given known `mean` and variogram. See
/// [`leaveOneOut`] for the output shape.
#[wasm_bindgen(js_name = leaveOneOutSimple)]
pub fn wasm_leave_one_out_simple(
    lats: &[f64],
    lons: &[f64],
    values: &[f64],
    mean: f64,
    variogram_type: &str,
    nugget: f64,
    sill: f64,
    range: f64,
    shape: Option<f64>,
) -> Result<JsValue, JsValue> {
    let coords = to_coords(lats, lons)?;
    if values.len() != lats.len() {
        return Err(coded_err(
            "values must have the same length as lats/lons",
            "mismatched_arrays",
        ));
    }
    let values_real: Vec<Real> = values.iter().map(|v| *v as Real).collect();
    let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
    let residuals = leave_one_out_simple(&coords, &values_real, model, mean as Real)
        .map_err(kriging_err_to_js)?;
    cv_result_to_js(residuals)
}

/// K-fold CV over simple kriging with the given known `mean` and variogram.
#[wasm_bindgen(js_name = kFoldSimple)]
pub fn wasm_k_fold_simple(
    lats: &[f64],
    lons: &[f64],
    values: &[f64],
    mean: f64,
    k: usize,
    variogram_type: &str,
    nugget: f64,
    sill: f64,
    range: f64,
    shape: Option<f64>,
) -> Result<JsValue, JsValue> {
    let coords = to_coords(lats, lons)?;
    if values.len() != lats.len() {
        return Err(coded_err(
            "values must have the same length as lats/lons",
            "mismatched_arrays",
        ));
    }
    let values_real: Vec<Real> = values.iter().map(|v| *v as Real).collect();
    let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
    let residuals =
        k_fold_simple(&coords, &values_real, model, mean as Real, k).map_err(kriging_err_to_js)?;
    cv_result_to_js(residuals)
}

// --- Universal kriging CV ---

/// Leave-one-out CV over universal kriging with the given `trend` (`"constant"`,
/// `"linear"`, or `"quadratic"`) and variogram.
#[wasm_bindgen(js_name = leaveOneOutUniversal)]
pub fn wasm_leave_one_out_universal(
    lats: &[f64],
    lons: &[f64],
    values: &[f64],
    trend: &str,
    variogram_type: &str,
    nugget: f64,
    sill: f64,
    range: f64,
    shape: Option<f64>,
) -> Result<JsValue, JsValue> {
    let coords = to_coords(lats, lons)?;
    if values.len() != lats.len() {
        return Err(coded_err(
            "values must have the same length as lats/lons",
            "mismatched_arrays",
        ));
    }
    let values_real: Vec<Real> = values.iter().map(|v| *v as Real).collect();
    let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
    let trend_enum = parse_trend(trend)?;
    let residuals = leave_one_out_universal(&coords, &values_real, model, trend_enum)
        .map_err(kriging_err_to_js)?;
    cv_result_to_js(residuals)
}

/// K-fold CV over universal kriging with the given `trend` and variogram.
#[wasm_bindgen(js_name = kFoldUniversal)]
pub fn wasm_k_fold_universal(
    lats: &[f64],
    lons: &[f64],
    values: &[f64],
    trend: &str,
    k: usize,
    variogram_type: &str,
    nugget: f64,
    sill: f64,
    range: f64,
    shape: Option<f64>,
) -> Result<JsValue, JsValue> {
    let coords = to_coords(lats, lons)?;
    if values.len() != lats.len() {
        return Err(coded_err(
            "values must have the same length as lats/lons",
            "mismatched_arrays",
        ));
    }
    let values_real: Vec<Real> = values.iter().map(|v| *v as Real).collect();
    let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
    let trend_enum = parse_trend(trend)?;
    let residuals =
        k_fold_universal(&coords, &values_real, model, trend_enum, k).map_err(kriging_err_to_js)?;
    cv_result_to_js(residuals)
}

// --- Projected (planar, optional 2-D anisotropy) kriging CV ---

/// Leave-one-out CV over projected kriging on planar `(x, y)` coordinates with optional
/// 2-D geometric anisotropy (`majorAngleDeg`, `rangeRatio`). Pass `rangeRatio = 1.0` for
/// isotropic; the angle is then ignored.
#[wasm_bindgen(js_name = leaveOneOutProjected)]
pub fn wasm_leave_one_out_projected(
    xs: &[f64],
    ys: &[f64],
    values: &[f64],
    major_angle_deg: f64,
    range_ratio: f64,
    variogram_type: &str,
    nugget: f64,
    sill: f64,
    range: f64,
    shape: Option<f64>,
) -> Result<JsValue, JsValue> {
    if xs.len() != ys.len() || xs.len() != values.len() {
        return Err(coded_err(
            "xs, ys and values must have the same length",
            "mismatched_arrays",
        ));
    }
    let coords: Vec<ProjectedCoord> = xs
        .iter()
        .zip(ys.iter())
        .map(|(&x, &y)| ProjectedCoord::new(x as Real, y as Real))
        .collect();
    let values_real: Vec<Real> = values.iter().map(|v| *v as Real).collect();
    let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
    let anisotropy = Anisotropy2D::new(major_angle_deg as Real, range_ratio as Real)
        .map_err(kriging_err_to_js)?;
    let residuals = leave_one_out_projected(&coords, &values_real, model, anisotropy)
        .map_err(kriging_err_to_js)?;
    cv_result_to_js(residuals)
}

/// K-fold CV over projected kriging. See [`leaveOneOutProjected`] for coord semantics.
#[wasm_bindgen(js_name = kFoldProjected)]
pub fn wasm_k_fold_projected(
    xs: &[f64],
    ys: &[f64],
    values: &[f64],
    major_angle_deg: f64,
    range_ratio: f64,
    k: usize,
    variogram_type: &str,
    nugget: f64,
    sill: f64,
    range: f64,
    shape: Option<f64>,
) -> Result<JsValue, JsValue> {
    if xs.len() != ys.len() || xs.len() != values.len() {
        return Err(coded_err(
            "xs, ys and values must have the same length",
            "mismatched_arrays",
        ));
    }
    let coords: Vec<ProjectedCoord> = xs
        .iter()
        .zip(ys.iter())
        .map(|(&x, &y)| ProjectedCoord::new(x as Real, y as Real))
        .collect();
    let values_real: Vec<Real> = values.iter().map(|v| *v as Real).collect();
    let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
    let anisotropy = Anisotropy2D::new(major_angle_deg as Real, range_ratio as Real)
        .map_err(kriging_err_to_js)?;
    let residuals =
        k_fold_projected(&coords, &values_real, model, anisotropy, k).map_err(kriging_err_to_js)?;
    cv_result_to_js(residuals)
}

// --- Binomial kriging CV (reports both logit and prevalence scales) ---

pub(super) fn binomial_cv_result_to_js(
    residuals: Vec<BinomialCvResidual>,
) -> Result<JsValue, JsValue> {
    let n = residuals.len();
    let summary = BinomialCvSummary::from_residuals(&residuals);

    let mut indices: Vec<u32> = Vec::with_capacity(n);
    let mut successes: Vec<u32> = Vec::with_capacity(n);
    let mut trials: Vec<u32> = Vec::with_capacity(n);
    let mut observed_logit: Vec<f64> = Vec::with_capacity(n);
    let mut predicted_logit: Vec<f64> = Vec::with_capacity(n);
    let mut logit_variance: Vec<f64> = Vec::with_capacity(n);
    let mut observed_prevalence: Vec<f64> = Vec::with_capacity(n);
    let mut predicted_prevalence: Vec<f64> = Vec::with_capacity(n);
    let mut prevalence_variance: Vec<f64> = Vec::with_capacity(n);

    for r in &residuals {
        indices.push(r.index as u32);
        successes.push(r.successes);
        trials.push(r.trials);
        observed_logit.push(r.observed_logit as f64);
        predicted_logit.push(r.predicted_logit as f64);
        logit_variance.push(r.logit_variance as f64);
        observed_prevalence.push(r.observed_prevalence as f64);
        predicted_prevalence.push(r.predicted_prevalence as f64);
        prevalence_variance.push(r.prevalence_variance as f64);
    }

    let result = Object::new();
    set_object_field(
        &result,
        "indices",
        &Uint32Array::from(indices.as_slice()).into(),
    )?;
    set_object_field(
        &result,
        "successes",
        &Uint32Array::from(successes.as_slice()).into(),
    )?;
    set_object_field(
        &result,
        "trials",
        &Uint32Array::from(trials.as_slice()).into(),
    )?;
    set_object_field(
        &result,
        "observedLogit",
        &Float64Array::from(observed_logit.as_slice()).into(),
    )?;
    set_object_field(
        &result,
        "predictedLogit",
        &Float64Array::from(predicted_logit.as_slice()).into(),
    )?;
    set_object_field(
        &result,
        "logitVariance",
        &Float64Array::from(logit_variance.as_slice()).into(),
    )?;
    set_object_field(
        &result,
        "observedPrevalence",
        &Float64Array::from(observed_prevalence.as_slice()).into(),
    )?;
    set_object_field(
        &result,
        "predictedPrevalence",
        &Float64Array::from(predicted_prevalence.as_slice()).into(),
    )?;
    set_object_field(
        &result,
        "prevalenceVariance",
        &Float64Array::from(prevalence_variance.as_slice()).into(),
    )?;

    let summary_js = serde_wasm_bindgen::to_value(&JsBinomialCvSummary {
        n: summary.n,
        n_evaluated: summary.n_evaluated,
        logit: JsCvSummary {
            n: summary.logit.n,
            mean_error: summary.logit.mean_error as f64,
            rmse: summary.logit.rmse as f64,
            msdr: summary.logit.msdr as f64,
        },
        prevalence: JsCvSummary {
            n: summary.prevalence.n,
            mean_error: summary.prevalence.mean_error as f64,
            rmse: summary.prevalence.rmse as f64,
            msdr: summary.prevalence.msdr as f64,
        },
    })
    .map_err(err_to_js)?;
    set_object_field(&result, "summary", &summary_js)?;
    Ok(result.into())
}

pub(super) fn parse_binomial_prior(
    prior_alpha: Option<f64>,
    prior_beta: Option<f64>,
) -> Result<BinomialPrior, JsValue> {
    match (prior_alpha, prior_beta) {
        (None, None) => Ok(BinomialPrior::default()),
        (Some(a), Some(b)) => BinomialPrior::new(a as Real, b as Real).map_err(kriging_err_to_js),
        _ => Err(coded_err(
            "priorAlpha and priorBeta must be provided together",
            "invalid_input",
        )),
    }
}

/// Leave-one-out CV over binomial kriging. Returns both logit- and prevalence-scale
/// residuals. Stations with `trials == 0` contribute a residual whose observed fields are
/// `NaN` (predictions still populated); the `summary.logit` / `summary.prevalence`
/// aggregates skip them automatically.
#[wasm_bindgen(js_name = leaveOneOutBinomial)]
pub fn wasm_leave_one_out_binomial(
    lats: &[f64],
    lons: &[f64],
    successes: &[u32],
    trials: &[u32],
    variogram_type: &str,
    nugget: f64,
    sill: f64,
    range: f64,
    shape: Option<f64>,
    prior_alpha: Option<f64>,
    prior_beta: Option<f64>,
) -> Result<JsValue, JsValue> {
    if lats.len() != lons.len() || lats.len() != successes.len() || lats.len() != trials.len() {
        return Err(coded_err(
            "lats, lons, successes, and trials must have the same length",
            "mismatched_arrays",
        ));
    }
    let coords = to_coords(lats, lons)?;
    let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
    let prior = parse_binomial_prior(prior_alpha, prior_beta)?;
    let residuals = leave_one_out_binomial(&coords, successes, trials, model, prior)
        .map_err(kriging_err_to_js)?;
    binomial_cv_result_to_js(residuals)
}

/// K-fold CV over binomial kriging. See [`leaveOneOutBinomial`] for result shape.
#[wasm_bindgen(js_name = kFoldBinomial)]
pub fn wasm_k_fold_binomial(
    lats: &[f64],
    lons: &[f64],
    successes: &[u32],
    trials: &[u32],
    k: usize,
    variogram_type: &str,
    nugget: f64,
    sill: f64,
    range: f64,
    shape: Option<f64>,
    prior_alpha: Option<f64>,
    prior_beta: Option<f64>,
) -> Result<JsValue, JsValue> {
    if lats.len() != lons.len() || lats.len() != successes.len() || lats.len() != trials.len() {
        return Err(coded_err(
            "lats, lons, successes, and trials must have the same length",
            "mismatched_arrays",
        ));
    }
    let coords = to_coords(lats, lons)?;
    let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
    let prior = parse_binomial_prior(prior_alpha, prior_beta)?;
    let residuals =
        k_fold_binomial(&coords, successes, trials, model, prior, k).map_err(kriging_err_to_js)?;
    binomial_cv_result_to_js(residuals)
}

/// Leave-one-out CV over projected binomial kriging on planar `(x, y)` coordinates with
/// optional 2-D geometric anisotropy. Pass `rangeRatio = 1.0` for isotropic. Returns the
/// same dual-scale (logit + prevalence) residual buffers as
/// [`leaveOneOutBinomial`](wasm_leave_one_out_binomial).
#[wasm_bindgen(js_name = leaveOneOutBinomialProjected)]
pub fn wasm_leave_one_out_binomial_projected(
    xs: &[f64],
    ys: &[f64],
    successes: &[u32],
    trials: &[u32],
    major_angle_deg: f64,
    range_ratio: f64,
    variogram_type: &str,
    nugget: f64,
    sill: f64,
    range: f64,
    shape: Option<f64>,
    prior_alpha: Option<f64>,
    prior_beta: Option<f64>,
) -> Result<JsValue, JsValue> {
    if xs.len() != ys.len() || xs.len() != successes.len() || xs.len() != trials.len() {
        return Err(coded_err(
            "xs, ys, successes and trials must have the same length",
            "mismatched_arrays",
        ));
    }
    let coords: Vec<ProjectedCoord> = xs
        .iter()
        .zip(ys.iter())
        .map(|(&x, &y)| ProjectedCoord::new(x as Real, y as Real))
        .collect();
    let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
    let anisotropy = Anisotropy2D::new(major_angle_deg as Real, range_ratio as Real)
        .map_err(kriging_err_to_js)?;
    let prior = parse_binomial_prior(prior_alpha, prior_beta)?;
    let residuals =
        leave_one_out_binomial_projected(&coords, successes, trials, model, anisotropy, prior)
            .map_err(kriging_err_to_js)?;
    binomial_cv_result_to_js(residuals)
}

/// K-fold CV over projected binomial kriging.
#[wasm_bindgen(js_name = kFoldBinomialProjected)]
pub fn wasm_k_fold_binomial_projected(
    xs: &[f64],
    ys: &[f64],
    successes: &[u32],
    trials: &[u32],
    major_angle_deg: f64,
    range_ratio: f64,
    k: usize,
    variogram_type: &str,
    nugget: f64,
    sill: f64,
    range: f64,
    shape: Option<f64>,
    prior_alpha: Option<f64>,
    prior_beta: Option<f64>,
) -> Result<JsValue, JsValue> {
    if xs.len() != ys.len() || xs.len() != successes.len() || xs.len() != trials.len() {
        return Err(coded_err(
            "xs, ys, successes and trials must have the same length",
            "mismatched_arrays",
        ));
    }
    let coords: Vec<ProjectedCoord> = xs
        .iter()
        .zip(ys.iter())
        .map(|(&x, &y)| ProjectedCoord::new(x as Real, y as Real))
        .collect();
    let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
    let anisotropy = Anisotropy2D::new(major_angle_deg as Real, range_ratio as Real)
        .map_err(kriging_err_to_js)?;
    let prior = parse_binomial_prior(prior_alpha, prior_beta)?;
    let residuals =
        k_fold_binomial_projected(&coords, successes, trials, model, anisotropy, prior, k)
            .map_err(kriging_err_to_js)?;
    binomial_cv_result_to_js(residuals)
}

#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
struct JsBinomialCvSummary {
    n: usize,
    n_evaluated: usize,
    logit: JsCvSummary,
    prevalence: JsCvSummary,
}

// ---------------------------------------------------------------------------
// Conditional simulation (sequential Gaussian)
// ---------------------------------------------------------------------------

/// Sequential Gaussian simulation conditioned on observed stations. Returns a
/// `Float64Array` of length `targetLats.len()` with one sampled value per target, in the
/// original target order.
///
/// - `seed`: RNG seed (for reproducibility).
/// - `targetOrder`: optional permutation of `0..targetLats.len()` giving the visit order.
///   When omitted, targets are visited in input order.
#[wasm_bindgen(js_name = conditionalSimulate)]
pub fn wasm_conditional_simulate(
    conditioning_lats: &[f64],
    conditioning_lons: &[f64],
    conditioning_values: &[f64],
    target_lats: &[f64],
    target_lons: &[f64],
    variogram_type: &str,
    nugget: f64,
    sill: f64,
    range: f64,
    shape: Option<f64>,
    seed: u64,
    target_order: Option<Vec<u32>>,
) -> Result<JsValue, JsValue> {
    if conditioning_values.len() != conditioning_lats.len() {
        return Err(coded_err(
            "conditioningValues must match conditioningLats/Lons length",
            "mismatched_arrays",
        ));
    }
    let cond_coords = to_coords(conditioning_lats, conditioning_lons)?;
    let cond_values: Vec<Real> = conditioning_values
        .iter()
        .map(|v| *v as Real)
        .collect::<Vec<_>>();
    let targets = to_coords(target_lats, target_lons)?;
    let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
    let options = SimulationOptions {
        seed,
        target_order: target_order.map(|v| v.into_iter().map(|x| x as usize).collect()),
    };
    let samples = conditional_simulate(&cond_coords, &cond_values, &targets, model, options)
        .map_err(kriging_err_to_js)?;
    let samples_f64: Vec<f64> = samples.into_iter().map(|v| v as f64).collect();
    Ok(Float64Array::from(samples_f64.as_slice()).into())
}

pub(super) fn parse_simulation_options(
    seed: u64,
    target_order: Option<Vec<u32>>,
) -> SimulationOptions {
    SimulationOptions {
        seed,
        target_order: target_order.map(|v| v.into_iter().map(|x| x as usize).collect()),
    }
}

/// Sequential Gaussian simulation using simple kriging with a known `mean`. Returns a
/// `Float64Array` of sampled values in input target order.
#[wasm_bindgen(js_name = conditionalSimulateSimple)]
pub fn wasm_conditional_simulate_simple(
    conditioning_lats: &[f64],
    conditioning_lons: &[f64],
    conditioning_values: &[f64],
    target_lats: &[f64],
    target_lons: &[f64],
    mean: f64,
    variogram_type: &str,
    nugget: f64,
    sill: f64,
    range: f64,
    shape: Option<f64>,
    seed: u64,
    target_order: Option<Vec<u32>>,
) -> Result<JsValue, JsValue> {
    if conditioning_values.len() != conditioning_lats.len() {
        return Err(coded_err(
            "conditioningValues must match conditioningLats/Lons length",
            "mismatched_arrays",
        ));
    }
    let cond_coords = to_coords(conditioning_lats, conditioning_lons)?;
    let cond_values: Vec<Real> = conditioning_values.iter().map(|v| *v as Real).collect();
    let targets = to_coords(target_lats, target_lons)?;
    let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
    let options = parse_simulation_options(seed, target_order);
    let samples = conditional_simulate_simple(
        &cond_coords,
        &cond_values,
        &targets,
        model,
        mean as Real,
        options,
    )
    .map_err(kriging_err_to_js)?;
    let samples_f64: Vec<f64> = samples.into_iter().map(|v| v as f64).collect();
    Ok(Float64Array::from(samples_f64.as_slice()).into())
}

/// Sequential Gaussian simulation using universal kriging with polynomial `trend`
/// (`"constant"`, `"linear"`, or `"quadratic"`). Returns a `Float64Array` of sampled values
/// in input target order.
#[wasm_bindgen(js_name = conditionalSimulateUniversal)]
pub fn wasm_conditional_simulate_universal(
    conditioning_lats: &[f64],
    conditioning_lons: &[f64],
    conditioning_values: &[f64],
    target_lats: &[f64],
    target_lons: &[f64],
    trend: &str,
    variogram_type: &str,
    nugget: f64,
    sill: f64,
    range: f64,
    shape: Option<f64>,
    seed: u64,
    target_order: Option<Vec<u32>>,
) -> Result<JsValue, JsValue> {
    if conditioning_values.len() != conditioning_lats.len() {
        return Err(coded_err(
            "conditioningValues must match conditioningLats/Lons length",
            "mismatched_arrays",
        ));
    }
    let cond_coords = to_coords(conditioning_lats, conditioning_lons)?;
    let cond_values: Vec<Real> = conditioning_values.iter().map(|v| *v as Real).collect();
    let targets = to_coords(target_lats, target_lons)?;
    let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
    let trend_enum = parse_trend(trend)?;
    let options = parse_simulation_options(seed, target_order);
    let samples = conditional_simulate_universal(
        &cond_coords,
        &cond_values,
        &targets,
        model,
        trend_enum,
        options,
    )
    .map_err(kriging_err_to_js)?;
    let samples_f64: Vec<f64> = samples.into_iter().map(|v| v as f64).collect();
    Ok(Float64Array::from(samples_f64.as_slice()).into())
}

/// Sequential Gaussian simulation on projected (planar) coordinates with optional 2-D
/// geometric anisotropy. Pass `rangeRatio = 1.0` for isotropic (angle is ignored). Returns
/// a `Float64Array` of sampled values in input target order.
#[wasm_bindgen(js_name = conditionalSimulateProjected)]
pub fn wasm_conditional_simulate_projected(
    conditioning_xs: &[f64],
    conditioning_ys: &[f64],
    conditioning_values: &[f64],
    target_xs: &[f64],
    target_ys: &[f64],
    major_angle_deg: f64,
    range_ratio: f64,
    variogram_type: &str,
    nugget: f64,
    sill: f64,
    range: f64,
    shape: Option<f64>,
    seed: u64,
    target_order: Option<Vec<u32>>,
) -> Result<JsValue, JsValue> {
    if conditioning_xs.len() != conditioning_ys.len()
        || conditioning_xs.len() != conditioning_values.len()
    {
        return Err(coded_err(
            "conditioningXs, conditioningYs and conditioningValues must have the same length",
            "mismatched_arrays",
        ));
    }
    if target_xs.len() != target_ys.len() {
        return Err(coded_err(
            "targetXs and targetYs must have the same length",
            "mismatched_arrays",
        ));
    }
    let cond_coords: Vec<ProjectedCoord> = conditioning_xs
        .iter()
        .zip(conditioning_ys.iter())
        .map(|(&x, &y)| ProjectedCoord::new(x as Real, y as Real))
        .collect();
    let cond_values: Vec<Real> = conditioning_values.iter().map(|v| *v as Real).collect();
    let targets: Vec<ProjectedCoord> = target_xs
        .iter()
        .zip(target_ys.iter())
        .map(|(&x, &y)| ProjectedCoord::new(x as Real, y as Real))
        .collect();
    let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
    let anisotropy = Anisotropy2D::new(major_angle_deg as Real, range_ratio as Real)
        .map_err(kriging_err_to_js)?;
    let options = parse_simulation_options(seed, target_order);
    let samples = conditional_simulate_projected(
        &cond_coords,
        &cond_values,
        &targets,
        model,
        anisotropy,
        options,
    )
    .map_err(kriging_err_to_js)?;
    let samples_f64: Vec<f64> = samples.into_iter().map(|v| v as f64).collect();
    Ok(Float64Array::from(samples_f64.as_slice()).into())
}

pub(super) fn binomial_simulation_to_js(
    result: BinomialSimulationResult,
) -> Result<JsValue, JsValue> {
    let logit: Vec<f64> = result.logit_samples.into_iter().map(|v| v as f64).collect();
    let prev: Vec<f64> = result
        .prevalence_samples
        .into_iter()
        .map(|v| v as f64)
        .collect();
    let out = Object::new();
    set_object_field(
        &out,
        "logitSamples",
        &Float64Array::from(logit.as_slice()).into(),
    )?;
    set_object_field(
        &out,
        "prevalenceSamples",
        &Float64Array::from(prev.as_slice()).into(),
    )?;
    Ok(out.into())
}

/// Sequential Gaussian simulation for binomial (count) data. Simulation happens on the logit
/// scale; the result is an object with `logitSamples` and `prevalenceSamples` typed arrays,
/// both in input target order. Stations with `trials == 0` are dropped from conditioning.
#[wasm_bindgen(js_name = conditionalSimulateBinomial)]
pub fn wasm_conditional_simulate_binomial(
    conditioning_lats: &[f64],
    conditioning_lons: &[f64],
    successes: &[u32],
    trials: &[u32],
    target_lats: &[f64],
    target_lons: &[f64],
    variogram_type: &str,
    nugget: f64,
    sill: f64,
    range: f64,
    shape: Option<f64>,
    prior_alpha: Option<f64>,
    prior_beta: Option<f64>,
    seed: u64,
    target_order: Option<Vec<u32>>,
) -> Result<JsValue, JsValue> {
    if conditioning_lats.len() != conditioning_lons.len()
        || conditioning_lats.len() != successes.len()
        || conditioning_lats.len() != trials.len()
    {
        return Err(coded_err(
            "conditioning arrays (lats, lons, successes, trials) must have the same length",
            "mismatched_arrays",
        ));
    }
    let cond_coords = to_coords(conditioning_lats, conditioning_lons)?;
    let targets = to_coords(target_lats, target_lons)?;
    let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
    let prior = parse_binomial_prior(prior_alpha, prior_beta)?;
    let options = parse_simulation_options(seed, target_order);
    let result = conditional_simulate_binomial(
        &cond_coords,
        successes,
        trials,
        &targets,
        model,
        prior,
        options,
    )
    .map_err(kriging_err_to_js)?;
    binomial_simulation_to_js(result)
}

pub(super) fn binomial_many_simulation_to_js(
    result: BinomialSimulationManyResult,
) -> Result<JsValue, JsValue> {
    let logit: Vec<f64> = result.logit_samples.into_iter().map(|v| v as f64).collect();
    let prev: Vec<f64> = result
        .prevalence_samples
        .into_iter()
        .map(|v| v as f64)
        .collect();
    let out = Object::new();
    set_object_field(
        &out,
        "nRealizations",
        &JsValue::from_f64(result.n_realizations as f64),
    )?;
    set_object_field(
        &out,
        "nTargets",
        &JsValue::from_f64(result.n_targets as f64),
    )?;
    set_object_field(
        &out,
        "logitSamples",
        &Float64Array::from(logit.as_slice()).into(),
    )?;
    set_object_field(
        &out,
        "prevalenceSamples",
        &Float64Array::from(prev.as_slice()).into(),
    )?;
    Ok(out.into())
}

/// Multi-realization SGS using ordinary kriging. Returns a flat row-major `Float64Array` of
/// length `nRealizations * targetLats.len()` where row `k` is identical to a single-call
/// `conditionalSimulate(seed = baseSeed + k, …)`.
#[wasm_bindgen(js_name = conditionalSimulateMany)]
#[allow(clippy::too_many_arguments)]
pub fn wasm_conditional_simulate_many(
    conditioning_lats: &[f64],
    conditioning_lons: &[f64],
    conditioning_values: &[f64],
    target_lats: &[f64],
    target_lons: &[f64],
    variogram_type: &str,
    nugget: f64,
    sill: f64,
    range: f64,
    shape: Option<f64>,
    n_realizations: u32,
    base_seed: u64,
    target_order: Option<Vec<u32>>,
) -> Result<JsValue, JsValue> {
    if conditioning_values.len() != conditioning_lats.len() {
        return Err(coded_err(
            "conditioningValues must match conditioningLats/Lons length",
            "mismatched_arrays",
        ));
    }
    let cond_coords = to_coords(conditioning_lats, conditioning_lons)?;
    let cond_values: Vec<Real> = conditioning_values.iter().map(|v| *v as Real).collect();
    let targets = to_coords(target_lats, target_lons)?;
    let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
    let order = target_order.map(|v| v.into_iter().map(|x| x as usize).collect());
    let samples = conditional_simulate_many(
        &cond_coords,
        &cond_values,
        &targets,
        model,
        n_realizations as usize,
        base_seed,
        order,
    )
    .map_err(kriging_err_to_js)?;
    let samples_f64: Vec<f64> = samples.into_iter().map(|v| v as f64).collect();
    Ok(Float64Array::from(samples_f64.as_slice()).into())
}

/// Multi-realization SGS for binomial (count) data. Returns an object with
/// `nRealizations`, `nTargets`, and flat row-major `logitSamples` / `prevalenceSamples`
/// `Float64Array`s of length `nRealizations * nTargets`. Row `k` is identical to a
/// single-call `conditionalSimulateBinomial(seed = baseSeed + k, …)`.
#[wasm_bindgen(js_name = conditionalSimulateManyBinomial)]
#[allow(clippy::too_many_arguments)]
pub fn wasm_conditional_simulate_many_binomial(
    conditioning_lats: &[f64],
    conditioning_lons: &[f64],
    successes: &[u32],
    trials: &[u32],
    target_lats: &[f64],
    target_lons: &[f64],
    variogram_type: &str,
    nugget: f64,
    sill: f64,
    range: f64,
    shape: Option<f64>,
    prior_alpha: Option<f64>,
    prior_beta: Option<f64>,
    n_realizations: u32,
    base_seed: u64,
    target_order: Option<Vec<u32>>,
) -> Result<JsValue, JsValue> {
    if conditioning_lats.len() != conditioning_lons.len()
        || conditioning_lats.len() != successes.len()
        || conditioning_lats.len() != trials.len()
    {
        return Err(coded_err(
            "conditioning arrays (lats, lons, successes, trials) must have the same length",
            "mismatched_arrays",
        ));
    }
    let cond_coords = to_coords(conditioning_lats, conditioning_lons)?;
    let targets = to_coords(target_lats, target_lons)?;
    let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
    let prior = parse_binomial_prior(prior_alpha, prior_beta)?;
    let order = target_order.map(|v| v.into_iter().map(|x| x as usize).collect());
    let result = conditional_simulate_many_binomial(
        &cond_coords,
        successes,
        trials,
        &targets,
        model,
        prior,
        n_realizations as usize,
        base_seed,
        order,
    )
    .map_err(kriging_err_to_js)?;
    binomial_many_simulation_to_js(result)
}

/// Sequential Gaussian simulation for binomial (count) data on projected (planar)
/// coordinates with optional 2-D geometric anisotropy. Same shape as
/// [`conditionalSimulateBinomial`](wasm_conditional_simulate_binomial), but operating
/// on `(x, y)` rather than `(lat, lon)`.
#[wasm_bindgen(js_name = conditionalSimulateBinomialProjected)]
#[allow(clippy::too_many_arguments)]
pub fn wasm_conditional_simulate_binomial_projected(
    conditioning_xs: &[f64],
    conditioning_ys: &[f64],
    successes: &[u32],
    trials: &[u32],
    target_xs: &[f64],
    target_ys: &[f64],
    major_angle_deg: f64,
    range_ratio: f64,
    variogram_type: &str,
    nugget: f64,
    sill: f64,
    range: f64,
    shape: Option<f64>,
    prior_alpha: Option<f64>,
    prior_beta: Option<f64>,
    seed: u64,
    target_order: Option<Vec<u32>>,
) -> Result<JsValue, JsValue> {
    if conditioning_xs.len() != conditioning_ys.len()
        || conditioning_xs.len() != successes.len()
        || conditioning_xs.len() != trials.len()
    {
        return Err(coded_err(
            "conditioning arrays (xs, ys, successes, trials) must have the same length",
            "mismatched_arrays",
        ));
    }
    if target_xs.len() != target_ys.len() {
        return Err(coded_err(
            "targetXs and targetYs must have the same length",
            "mismatched_arrays",
        ));
    }
    let cond_coords: Vec<ProjectedCoord> = conditioning_xs
        .iter()
        .zip(conditioning_ys.iter())
        .map(|(&x, &y)| ProjectedCoord::new(x as Real, y as Real))
        .collect();
    let targets: Vec<ProjectedCoord> = target_xs
        .iter()
        .zip(target_ys.iter())
        .map(|(&x, &y)| ProjectedCoord::new(x as Real, y as Real))
        .collect();
    let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
    let anisotropy = Anisotropy2D::new(major_angle_deg as Real, range_ratio as Real)
        .map_err(kriging_err_to_js)?;
    let prior = parse_binomial_prior(prior_alpha, prior_beta)?;
    let options = parse_simulation_options(seed, target_order);
    let result = conditional_simulate_binomial_projected(
        &cond_coords,
        successes,
        trials,
        &targets,
        model,
        anisotropy,
        prior,
        options,
    )
    .map_err(kriging_err_to_js)?;
    binomial_simulation_to_js(result)
}

/// Multi-realization SGS for projected binomial (count) data. See
/// [`conditionalSimulateManyBinomial`](wasm_conditional_simulate_many_binomial) for
/// the result shape; differs only in using `(x, y)` coordinates with 2-D anisotropy.
#[wasm_bindgen(js_name = conditionalSimulateManyBinomialProjected)]
#[allow(clippy::too_many_arguments)]
pub fn wasm_conditional_simulate_many_binomial_projected(
    conditioning_xs: &[f64],
    conditioning_ys: &[f64],
    successes: &[u32],
    trials: &[u32],
    target_xs: &[f64],
    target_ys: &[f64],
    major_angle_deg: f64,
    range_ratio: f64,
    variogram_type: &str,
    nugget: f64,
    sill: f64,
    range: f64,
    shape: Option<f64>,
    prior_alpha: Option<f64>,
    prior_beta: Option<f64>,
    n_realizations: u32,
    base_seed: u64,
    target_order: Option<Vec<u32>>,
) -> Result<JsValue, JsValue> {
    if conditioning_xs.len() != conditioning_ys.len()
        || conditioning_xs.len() != successes.len()
        || conditioning_xs.len() != trials.len()
    {
        return Err(coded_err(
            "conditioning arrays (xs, ys, successes, trials) must have the same length",
            "mismatched_arrays",
        ));
    }
    if target_xs.len() != target_ys.len() {
        return Err(coded_err(
            "targetXs and targetYs must have the same length",
            "mismatched_arrays",
        ));
    }
    let cond_coords: Vec<ProjectedCoord> = conditioning_xs
        .iter()
        .zip(conditioning_ys.iter())
        .map(|(&x, &y)| ProjectedCoord::new(x as Real, y as Real))
        .collect();
    let targets: Vec<ProjectedCoord> = target_xs
        .iter()
        .zip(target_ys.iter())
        .map(|(&x, &y)| ProjectedCoord::new(x as Real, y as Real))
        .collect();
    let model = parse_variogram(variogram_type, nugget, sill, range, shape)?;
    let anisotropy = Anisotropy2D::new(major_angle_deg as Real, range_ratio as Real)
        .map_err(kriging_err_to_js)?;
    let prior = parse_binomial_prior(prior_alpha, prior_beta)?;
    let order = target_order.map(|v| v.into_iter().map(|x| x as usize).collect());
    let result = conditional_simulate_many_binomial_projected(
        &cond_coords,
        successes,
        trials,
        &targets,
        model,
        anisotropy,
        prior,
        n_realizations as usize,
        base_seed,
        order,
    )
    .map_err(kriging_err_to_js)?;
    binomial_many_simulation_to_js(result)
}

// ---------------------------------------------------------------------------
// Nested variograms
// ---------------------------------------------------------------------------

/// Parameters for a single variogram component, used when building nested variograms.
#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
struct NestedComponent {
    variogram_type: String,
    nugget: f64,
    sill: f64,
    range: f64,
    #[serde(default)]
    shape: Option<f64>,
}

/// Evaluate a nested (additive) variogram at a list of distances. Returns
/// `{ distances, semivariances, covariances }` — semivariance and covariance per lag.
///
/// The `components` argument is an array of `{ variogramType, nugget, sill, range, shape? }`
/// objects. This is a convenience surface for building & validating nested models from JS;
/// composite kriging models will accept nested variograms in a future iteration.
#[wasm_bindgen(js_name = evaluateNestedVariogram)]
pub fn wasm_evaluate_nested_variogram(
    components: JsValue,
    distances: &[f64],
) -> Result<JsValue, JsValue> {
    let comps: Vec<NestedComponent> =
        serde_wasm_bindgen::from_value(components).map_err(err_to_js)?;
    if comps.is_empty() {
        return Err(coded_err(
            "nested variogram requires at least one component",
            "invalid_input",
        ));
    }
    let mut models = Vec::with_capacity(comps.len());
    for c in &comps {
        let m = parse_variogram(&c.variogram_type, c.nugget, c.sill, c.range, c.shape)?;
        models.push(m);
    }
    let nested = NestedVariogram::new(models).map_err(kriging_err_to_js)?;
    let semivariances: Vec<f64> = distances
        .iter()
        .map(|d| nested.semivariance(*d as Real) as f64)
        .collect();
    let covariances: Vec<f64> = distances
        .iter()
        .map(|d| nested.covariance(*d as Real) as f64)
        .collect();
    let result = Object::new();
    set_object_field(&result, "distances", &Float64Array::from(distances).into())?;
    set_object_field(
        &result,
        "semivariances",
        &Float64Array::from(semivariances.as_slice()).into(),
    )?;
    set_object_field(
        &result,
        "covariances",
        &Float64Array::from(covariances.as_slice()).into(),
    )?;
    Ok(result.into())
}

// ---------------------------------------------------------------------------
// Polygon aggregation over ensembles
// ---------------------------------------------------------------------------

fn summary_to_js(summary: &PolygonAggregationSummary) -> Result<JsValue, JsValue> {
    let obj = Object::new();
    set_object_field(
        &obj,
        "nRealizations",
        &JsValue::from_f64(summary.n_realizations as f64),
    )?;
    set_object_field(
        &obj,
        "totalWeight",
        &JsValue::from_f64(summary.total_weight as f64),
    )?;
    set_object_field(&obj, "mean", &JsValue::from_f64(summary.mean as f64))?;
    match summary.variance {
        Some(v) => set_object_field(&obj, "variance", &JsValue::from_f64(v as f64))?,
        None => set_object_field(&obj, "variance", &JsValue::NULL)?,
    }
    let probs: Vec<f64> = summary.quantiles.iter().map(|(p, _)| *p as f64).collect();
    let vals: Vec<f64> = summary.quantiles.iter().map(|(_, v)| *v as f64).collect();
    set_object_field(
        &obj,
        "quantileProbabilities",
        &Float64Array::from(probs.as_slice()).into(),
    )?;
    set_object_field(
        &obj,
        "quantileValues",
        &Float64Array::from(vals.as_slice()).into(),
    )?;
    Ok(obj.into())
}

/// Aggregate one or more polygons over a flat row-major ensemble buffer of
/// shape `nRealizations × nTargets`.
///
/// Polygons are passed in CSR-style: `polygonIndices` and `polygonWeights` are
/// the concatenated cell lists, and `polygonOffsets` (length
/// `nPolygons + 1`) marks the start of each polygon's slice. Each polygon must
/// be non-empty, indices must lie in `[0, nTargets)`, weights must be finite
/// and non-negative, and at least one weight per polygon must be positive.
///
/// Returns a JS array of summary objects (one per polygon) with fields:
/// `{ nRealizations, totalWeight, mean, variance | null,
///    quantileProbabilities, quantileValues }`. Quantiles are reported in the
/// order supplied via `quantiles`.
#[wasm_bindgen(js_name = aggregatePolygonsOverEnsemble)]
#[allow(clippy::too_many_arguments)]
pub fn wasm_aggregate_polygons_over_ensemble(
    samples: &[f64],
    n_realizations: u32,
    n_targets: u32,
    polygon_indices: &[u32],
    polygon_weights: &[f64],
    polygon_offsets: &[u32],
    quantiles: &[f64],
) -> Result<JsValue, JsValue> {
    if polygon_offsets.is_empty() {
        return Err(coded_err(
            "polygonOffsets must contain at least [0]",
            "invalid_input",
        ));
    }
    if polygon_offsets[0] != 0 {
        return Err(coded_err("polygonOffsets[0] must be 0", "invalid_input"));
    }
    let total = polygon_offsets[polygon_offsets.len() - 1] as usize;
    if total != polygon_indices.len() || total != polygon_weights.len() {
        return Err(coded_err(
            "polygonIndices and polygonWeights must have length polygonOffsets[last]",
            "mismatched_arrays",
        ));
    }
    for w in polygon_offsets.windows(2) {
        if w[1] < w[0] {
            return Err(coded_err(
                "polygonOffsets must be non-decreasing",
                "invalid_input",
            ));
        }
    }

    // Materialize Real-typed buffers once, then build slice tuples per polygon.
    let samples_real: Vec<Real> = samples.iter().map(|v| *v as Real).collect();
    let weights_real: Vec<Real> = polygon_weights.iter().map(|v| *v as Real).collect();
    let indices_usize: Vec<usize> = polygon_indices.iter().map(|i| *i as usize).collect();
    let probs_real: Vec<Real> = quantiles.iter().map(|v| *v as Real).collect();

    let n_polys = polygon_offsets.len() - 1;
    let polys: Vec<(&[usize], &[Real])> = (0..n_polys)
        .map(|p| {
            let lo = polygon_offsets[p] as usize;
            let hi = polygon_offsets[p + 1] as usize;
            (&indices_usize[lo..hi], &weights_real[lo..hi])
        })
        .collect();

    let summaries = polygon_weighted_summaries_batch(
        &samples_real,
        n_realizations as usize,
        n_targets as usize,
        &polys,
        &probs_real,
    )
    .map_err(kriging_err_to_js)?;

    let arr = js_sys::Array::new_with_length(summaries.len() as u32);
    for (i, s) in summaries.iter().enumerate() {
        let val = summary_to_js(s)?;
        arr.set(i as u32, val);
    }
    Ok(arr.into())
}