File: saga_algorithm_tests.yaml

package info (click to toggle)
qgis 3.10.14%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 889,896 kB
  • sloc: cpp: 986,392; python: 156,157; xml: 12,700; perl: 3,286; sh: 2,637; ansic: 2,085; sql: 1,514; javascript: 1,363; yacc: 1,000; lex: 562; lisp: 411; makefile: 234
file content (801 lines) | stat: -rw-r--r-- 18,907 bytes parent folder | download
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
# See ../README.md for a description of the file format

tests:

  - algorithm: saga:invertgrid
    name: Raster tools - Invert grid
    params:
      GRID:
        name: dem.tif
        type: raster
    results:
      INVERSE:
        hash: 8e3947b878a00f70ce837fba962f6be6d3f0c8eae2d614099b015f1e
        type: rasterhash

  - algorithm: saga:fixeddistancebuffer
    name: Vector general - Fixed distance buffer (polygon)
    params:
      DARC: 5.0
      DISSOLVE: false
      DIST_FIELD_DEFAULT: 0.5
      NZONES: 1
      POLY_INNER: false
      SHAPES:
        name: polys.gml
        type: vector
    results:
      BUFFER:
        name: expected/saga/buffer_polys.shp
        type: vector

  - algorithm: saga:addrastervaluestopoints
    name: Simple add raster values to points
    params:
      GRIDS:
        params:
        - name: dem.tif
          type: raster
        type: multi
      RESAMPLING: 0
      SHAPES:
        name: custom/points_over.shp
        type: vector
    results:
      RESULT:
        name: expected/saga/add_grid_to_points.shp
        type: vector

  - algorithm: saga:addrastervaluestofeatures
    name: Add raster values to shapes
    params:
      GRIDS:
        params:
        - name: dem.tif
          type: raster
        type: multi
      RESAMPLING: 0
      SHAPES:
        name: custom/lines_over.shp
        type: vector
    results:
      RESULT:
        name: expected/saga/add_grid_to_shapes.shp
        type: vector

  - algorithm: saga:mergevectorlayers
    name: Merge vector layers
    params:
      INPUT:
        params:
        - name: points.gml
          type: vector
        - name: points_in_polys.gml
          type: vector
        type: multi
      MATCH: true
      SRCINFO: true
    results:
      MERGED:
        name: expected/saga/merge_vector_layers.shp
        type: vector

  - algorithm: saga:reclassifyvaluessimple
    name: Reclassify values (simple)
    params:
      GRID_IN:
        name: raster.tif
        type: raster
      LOOKUP:
      - 800
      - 840
      - 1
      - 840
      - 870
      - 2
      - 870
      - 1000
      - 3
      METHOD: 2
    results:
      GRID_OUT:
        hash: 57437ebf7eb3667c5aa390598120967b0a2cd5d85751185bb445d1f8
        type: rasterhash

  - algorithm: saga:rastercalculator
    name: Raster calculator, 1 input
    params:
      FORMULA: a*10
      GRIDS:
        name: raster.tif
        type: raster
      RESAMPLING: 3
      TYPE: 7
      USE_NODATA: false
      XGRIDS:
        params: []
        type: multi
    results:
      RESULT:
        hash: 68d805a45416467e0f1be3066dd642772cf8ffdff9535f3254cd5ffb
        type: rasterhash

  - algorithm: saga:rastercalculator
    name: Raster calculator, 2 inputs
    params:
      FORMULA: a*10+b
      GRIDS:
        name: raster.tif
        type: raster
      RESAMPLING: 3
      TYPE: 7
      USE_NODATA: false
      XGRIDS:
        params:
        - name: raster.tif
          type: raster
        type: multi
    results:
      RESULT:
        hash: c8c2c7c32ad3eaa1ebb491aed7af7d16f1c7f574a3de1f7622894092
        type: rasterhash

  - algorithm: saga:rastercalculator
    name: Raster calculator, 3 inputs
    params:
      FORMULA: a*10+b-c
      GRIDS:
        name: raster.tif
        type: raster
      RESAMPLING: 3
      TYPE: 7
      USE_NODATA: false
      XGRIDS:
        params:
        - name: dem.tif
          type: raster
        - name: raster.tif
          type: raster
        type: multi
    results:
      RESULT:
        hash: a11f159696f5726eedaa16e872fd2582cf8a88c8c1d84d72560e4647
        type: rasterhash

  - algorithm: saga:simplekriging
    name: Simple kriging
    params:
      BLOCK: true
      DBLOCK: 1.0
      FIELD: elev
      LOG: false
      POINTS:
        name: pointsz.gml
        type: vector
      SEARCH_DIRECTION: 0
      SEARCH_POINTS_ALL: 0
      SEARCH_POINTS_MAX: 10
      SEARCH_POINTS_MIN: 3
      SEARCH_RADIUS: 5.0
      SEARCH_RANGE: 0
      TARGET_USER_FITS: 0
      TARGET_USER_SIZE: 1.0
      TQUALITY: 0
      VAR_MAXDIST: -1.0
      VAR_MODEL: a + b * x
      VAR_NCLASSES: 100
      VAR_NSKIP: 1
    results:
      PREDICTION:
        hash: a1f5a1d369cef86332a914442c444d1c0753e471523cb838d0b2bc09
        type: rasterhash
      VARIANCE:
        hash: 4f0378da7f0ff16326b6c404a202b004b66dbffcda38f42544a11490
        type: rasterhash

  - algorithm: saga:ordinarykriging
    name: Ordinary Kriging
    params:
      BLOCK: true
      DBLOCK: 1.0
      FIELD: elev
      LOG: true
      POINTS:
        name: pointsz.gml
        type: vector
      SEARCH_DIRECTION: 0
      SEARCH_POINTS_ALL: 0
      SEARCH_POINTS_MAX: 10
      SEARCH_POINTS_MIN: 3
      SEARCH_RADIUS: 5.0
      SEARCH_RANGE: 0
      TARGET_USER_FITS: 0
      TARGET_USER_SIZE: 1.0
      TQUALITY: 0
      VAR_MAXDIST: -1.0
      VAR_MODEL: a + b * x
      VAR_NCLASSES: 100
      VAR_NSKIP: 1
    results:
      PREDICTION:
        hash: 0fff15c98a1c5af9eab6c242559a5f4484a7a40f5be399899b24fd39
        type: rasterhash
      VARIANCE:
        hash: ec7b708609178533ac2b89cd575140415ef93c70396fa630d1c15b67
        type: rasterhash

  - algorithm: saga:universalkriging
    name: Universal Kriging
    params:
      BLOCK: true
      DBLOCK: 1.0
      FIELD: elev
      LOG: true
      POINTS:
        name: pointsz.gml
        type: vector
      SEARCH_DIRECTION: 0
      SEARCH_POINTS_ALL: 0
      SEARCH_POINTS_MAX: 10
      SEARCH_POINTS_MIN: 3
      SEARCH_RADIUS: 5.0
      SEARCH_RANGE: 0
      TARGET_USER_FITS: 0
      TARGET_USER_SIZE: 1.0
      TQUALITY: 0
      VAR_MAXDIST: -1.0
      VAR_MODEL: a + b * x
      VAR_NCLASSES: 100
      VAR_NSKIP: 1
    results:
      PREDICTION:
        hash: 0fff15c98a1c5af9eab6c242559a5f4484a7a40f5be399899b24fd39
        type: rasterhash
      VARIANCE:
        hash: ec7b708609178533ac2b89cd575140415ef93c70396fa630d1c15b67
        type: rasterhash

  - algorithm: saga:polygonupdate
    name: Polygon update
    params:
      A:
        name: custom/overlay1_a.geojson
        type: vector
      B:
        name: custom/overlay1_b.geojson
        type: vector
      SPLIT: true
    results:
      RESULT:
        name: expected/saga/polygon_update.shp
        type: vector

  - algorithm: saga:polygonunion
    name: Polygon union
    params:
      A:
        name: custom/overlay1_a.geojson
        type: vector
      B:
        name: custom/overlay1_b.geojson
        type: vector
      SPLIT: true
    results:
      RESULT:
        name: expected/saga/polygon_union.shp
        type: vector

  - algorithm: saga:polygonidentity
    name: Polygon identity
    params:
      A:
        name: custom/overlay1_a.geojson
        type: vector
      B:
        name: custom/overlay1_b.geojson
        type: vector
      SPLIT: true
    results:
      RESULT:
        name: expected/saga/polygon_identity.shp
        type: vector

  - algorithm: saga:difference
    name: Polygon difference
    params:
      A:
        name: custom/overlay1_a.geojson
        type: vector
      B:
        name: custom/overlay1_b.geojson
        type: vector
      SPLIT: true
    results:
      RESULT:
        name: expected/saga/polygon_difference.shp
        type: vector

  # Note - SAGA results are wrong here, so really we are just testing that the algorithm runs. Use the native one instead!
  - algorithm: saga:symmetricaldifference
    name: Polygon symmetrical difference
    params:
      A:
        name: custom/overlay1_a.geojson
        type: vector
      B:
        name: custom/overlay1_b.geojson
        type: vector
      SPLIT: true
    results:
      RESULT:
        name: expected/saga/polygon_symmetrical_difference.shp
        type: vector

  - algorithm: saga:intersect
    name: Polygon intersect
    params:
      A:
        name: custom/overlay1_a.geojson
        type: vector
      B:
        name: custom/overlay1_b.geojson
        type: vector
      SPLIT: true
    results:
      RESULT:
        name: expected/saga/polygon_intersect.shp
        type: vector


  - algorithm: saga:polygonselfintersection  #spellok
    name: Polygon self intersection
    params:
      POLYGONS:
        name: custom/overlay2_b.geojson
        type: vector
    results:
      INTERSECT:
        name: expected/saga/polygon_self_intersection.shp
        type: vector

  - algorithm: saga:crossprofiles
    name: Cross profiles
    params:
      DEM:
        name: dem.tif
        type: raster
      DIST_LINE: 0.001
      DIST_PROFILE: 0.002
      LINES:
        name: custom/lines_over.shp
        type: vector
      NUM_PROFILE: 10
    results:
      PROFILES:
        name: expected/saga/cross_profiles.shp
        type: vector

  - algorithm: saga:snappointstolines
    name: Snap points to lines
    params:
      DISTANCE: 0.9
      INPUT:
        name: snap_points.gml
        type: vector
      SNAP:
        name: snap_lines.gml
        type: vector
    results:
      MOVES:
        name: expected/saga/snap_points_to_lines_moves.shp
        type: vector
      OUTPUT:
        name: expected/saga/snap_points_to_lines_result.shp
        type: vector

  - algorithm: saga:snappointstopoints
    name: Snap points to points
    params:
      DISTANCE: 0.5
      INPUT:
        name: snap_points.gml
        type: vector
      SNAP:
        name: points.gml
        type: vector
    results:
      MOVES:
        name: expected/saga/snap_points_to_points_moves.shp
        type: vector
      OUTPUT:
        name: expected/saga/snap_points_to_points_result.shp
        type: vector

  - algorithm: saga:interpolatecubicspline
    name: Cubic spline
    params:
      FIELD: fid
      K: 140
      NPMAX: 20
      NPMIN: 3
      NPPC: 2.0
      SHAPES:
        name: pointsz.gml
        type: vector
      TARGET_USER_FITS: 0
      TARGET_USER_SIZE: 0.5
    results:
      TARGET_OUT_GRID:
        hash: f4ac677152697773262aa1e5f69146a475139014ace77149966ec045
        type: rasterhash

  - algorithm: saga:watershedsegmentation
    name: Test (saga:watershedsegmentation)
    params:
      'BBORDERS': true
      DOWN: 0
      'EDGE': true
      GRID:
        name: dem.tif
        type: raster
      JOIN: 0
      OUTPUT: 0
      THRESHOLD: 0.5
    results:
      BORDERS:
        hash: d0cd8bdc7c8400bedb2b5c1edc4a64b4c9b7c14692a4f30fbf3c5f2d
        type: rasterhash
      SEEDS:
        name: expected/saga/watershed_segmentation_seeds.shp
        type: vector
      SEGMENTS:
        hash: f2e71e3374eb229d387db8f87bc24d09b86ffc23d9fca85f324b566b
        type: rasterhash

  - algorithm: saga:multilevelbsplineinterpolation
    name: Multilevel B Spline Interpolation
    params:
      EPSILON: 0.0001
      FIELD: EC
      METHOD: 0
      SHAPES:
        name: custom/points_values.gml
        type: vector
      TARGET_USER_FITS: 0
      TARGET_USER_SIZE: 0.001
    results:
      TARGET_OUT_GRID:
        hash: 793c02e1f71091d5dcc7523bc7a872a80d20bcb29a70797479dd7740
        type: rasterhash

  - algorithm: saga:multilevelbsplineinterpolationfromraster
    name: Multilevel B Spline Interpolation from Raster
    params:
      DATATYPE: 0
      EPSILON: 0.0001
      GRID:
        name: dem.tif
        type: raster
      LEVEL_MAX: 11
      METHOD: 0
      TARGET_USER_FITS: 0
      TARGET_USER_SIZE: 0.01
      UPDATE: false
    results:
      TARGET_OUT_GRID:
        hash: 6f81c858fc7575eaff6258b6e75bf4427d0568d5134837523b730929
        type: rasterhash

  - algorithm: saga:pointdistances
    name: Point distances
    params:
      FORMAT: 1
      ID_POINTS: fid
      MAX_DIST: 0.0
      POINTS:
        name: custom/points.shp
        type: vector
    results:
      DISTANCES:
        name: expected/saga/point_distances.dbf
        type: vector

  - algorithm: saga:patching
    name: Patching
    params:
      ADDITIONAL:
        name: dem.tif
        type: raster
      ORIGINAL:
        name: custom/dem_gaps.tif
        type: raster
      RESAMPLING: 0
    results:
      COMPLETED:
        hash: e016ba480e7c9a7cfe7bbbec50f4f3df0e796be7641fe68744f541b5
        type: rasterhash


  - algorithm: saga:rgbcomposite
    name: RGB Composite
    params:
      B_GRID:
        name: custom/grass7/raster_6class.tif
        type: raster
      B_METHOD: 1
      B_PERCTL_MAX: 6
      B_PERCTL_MIN: 1
      B_RANGE_MAX: 255
      B_RANGE_MIN: 0
      B_STDDEV: 2.0
      G_GRID:
        name: custom/grass7/raster_4class.tif
        type: raster
      G_METHOD: 1
      G_PERCTL_MAX: 99
      G_PERCTL_MIN: 1
      G_RANGE_MAX: 4
      G_RANGE_MIN: 0
      G_STDDEV: 2.0
      R_GRID:
        name: custom/grass7/raster_1class.tif
        type: raster
      R_METHOD: 1
      R_PERCTL_MAX: 99
      R_PERCTL_MIN: 1
      R_RANGE_MAX: 1
      R_RANGE_MIN: 0
      R_STDDEV: 2.0
    results:
      RGB:
        hash:
        - db2c282835706e4320e7c59d86c28d930b35433ec57af70e35a325d5
        - 9caba3703fd59f99466c0bf37054826d328d1349cfe03f171655adf6
        type: rasterhash

  - algorithm: saga:zonalrasterstatistics
    name: Zonal grid statistics
    params:
      ZONES:
        name: custom/dem_boolean.tif
        type: raster
    results:
      OUTTAB:
        name: expected/saga/zonal_grid_stats.dbf
        type: vector

  - algorithm: saga:resampling
    name: Resample down
    params:
      INPUT:
        name: dem.tif
        type: raster
      KEEP_TYPE: true
      SCALE_DOWN: 3
      SCALE_UP: 5
      TARGET_USER_FITS: 0
      TARGET_USER_SIZE: 0.0005
    results:
      OUTPUT:
        hash: 1b3a17a724c489ea2eea60b39bc1b9c79778832bd41e982a4e9fb09f
        type: rasterhash

  - algorithm: saga:resampling
    name: Resample up
    params:
      INPUT:
        name: dem.tif
        type: raster
      KEEP_TYPE: true
      SCALE_DOWN: 3
      SCALE_UP: 5
      TARGET_USER_FITS: 0
      TARGET_USER_SIZE: 5.0e-05
    results:
      OUTPUT:
        hash: 32008adf7520fee2848d689fcb53d0f8ac862bcd162575b03fefc7f1
        type: rasterhash

  - algorithm: saga:resamplingfilter
    name: Resampling filter
    params:
      GRID:
        name: dem.tif
        type: raster
      SCALE: 10.0
    results:
      HIPASS:
        hash: cf992e69d506924bb59a5fbabd86617e263cb951a61c1b3c0b10012b
        type: rasterhash
      LOPASS:
        hash: f36069a8ceb7ffe839a34f66b82eebacb80143e9df4ed54485bf8293
        type: rasterhash

  - algorithm: saga:fillsinks
    name: Fill sinks (Planchon/Darboux)
    params:
      DEM:
        name: dem.tif
        type: raster
      MINSLOPE: 0.01
    results:
      RESULT:
        hash: aa197cdf1b0bac1595bd337bab08ae3cddb82ddb4d06c17b528a1d43
        type: rasterhash

  - algorithm: saga:fillsinksqmofesp
    name: Fill sinks (QM of ESP)
    params:
      DEM:
        name: dem.tif
        type: raster
      DZFILL: 0.01
    results:
      FILLED:
        hash: ebd24bb7d011f0c4d87d1e4748e89d90d5a78cfa820070ece87df4d0
        type: rasterhash
      SINKS:
        hash: 83d1936c0421783372573c9dcd04e6415e9db911c5fa254e74c929b0
        type: rasterhash

  - algorithm: saga:fillsinkswangliu
    name: Fill sinks Wang & Liu
    params:
      ELEV:
        name: dem.tif
        type: raster
      MINSLOPE: 0.01
    results:
      FDIR:
        hash: 24367e9ca83c757628f329029d82341fe9111138e019138c949c34c0
        type: rasterhash
      FILLED:
        hash: aa197cdf1b0bac1595bd337bab08ae3cddb82ddb4d06c17b528a1d43
        type: rasterhash
      WSHED:
        hash: d891f15de1c742986647d619788c7b16a21909bf9c06c70579a4797c
        type: rasterhash

  - algorithm: saga:fillsinksxxlwangliu
    name: Fill Sinks Wang & Lui XXL
    params:
      ELEV:
        name: dem.tif
        type: raster
      MINSLOPE: 0.1
    results:
      FILLED:
        hash: aa197cdf1b0bac1595bd337bab08ae3cddb82ddb4d06c17b528a1d43
        type: rasterhash

  - algorithm: saga:svmclassification
    name: SVM Classification
    params:
      CACHE_SIZE: 100.0
      COEF0: 0.0
      COST: 1.0
      CROSSVAL: 1
      DEGREE: 3
      EPS: 0.001
      EPS_SVR: 0.1
      GAMMA: 0.0
      GRIDS:
        params:
        - name: dem.tif
          type: raster
        type: multi
      KERNEL_TYPE: 2
      MESSAGE: false
      MODEL_LOAD:
        name: ''
        type: file
      MODEL_SAVE:
        name: ''
        type: file
      MODEL_SRC: 0
      NU: 0.5
      PROBABILITY: false
      ROI:
        name: custom/saga/training_areas.shp
        type: vector
      ROI_ID: class
      SCALING: 2
      SHRINKING: false
      SVM_TYPE: 0
    results:
      CLASSES:
        hash: deeb8769979916ab544a824cd5400d4a4207e7df37fbeaaa6e4830af
        type: rasterhash

  - algorithm: saga:multipleregressionanalysispointsandpredictorgrids
    name: Multi regression points predictor grids
    params:
      ATTRIBUTE: rvalue_1
      COORD_X: false
      COORD_Y: false
      CROSSVAL: 0
      CROSSVAL_K: 10
      INTERCEPT: true
      METHOD: 3
      POINTS:
        name: custom/saga/points_regression.shp
        type: vector
      PREDICTORS:
        params:
        - name: dem.tif
          type: raster
        type: multi
      P_VALUE: 5.0
      RESAMPLING: 3
      RESIDUAL_COR: 0
    results:
      INFO_COEFF:
        name: expected/saga/multiple_regression_points_grids_coef.dbf
        type: vector
        compare:
          fields:
            R:
              precision: 2
            R2:
              precision: 2
            R2_ADJ:
              precision: 2
            STD_ERROR:
              precision: 2
            T:
              precision: 2
            SIG:
              precision: 6
            P:
              precision: 6
      INFO_MODEL:
        name: expected/saga/multiple_regression_points_grids_model.dbf
        type: vector
        compare:
          fields:
            VALUE:
              precision: 2
      INFO_STEPS:
        name: expected/saga/multiple_regression_points_grids_steps.dbf
        type: vector
        compare:
          fields:
            R:
              precision: 2
            R2:
              precision: 2
            R2_ADJ:
              precision: 2
            STD_ERROR:
              precision: 2
            SSR:
              precision: 2
            SSE:
              precision: 2
            MSR:
              precision: 2
            MSE:
              precision: 2
            F:
              precision: 2
            SIG:
              precision: 6
            VAR_F:
              precision: 2
            VAR_SIG:
              precision: 6
      REGRESCORR:
        hash: d70078f0151919949c1e55c1a677f1a7cda6f7514667270af6745c0d
        type: rasterhash
      REGRESSION:
        hash: b3a725ae64eec2aab8de1197f2306a0905c7c38de0dc89d58aadb3cc
        type: rasterhash
      RESIDUALS:
        name: expected/saga/multiple_regression_points_grids_res.shp
        type: vector
        compare:
          fields:
            TREND:
              precision: 2
            RESIDUAL:
              precision: 2