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
|
# See ../README.md for a description of the file format
tests:
# r.* modules
- algorithm: grass7:r.plane
name: GRASS7 r.plane
params:
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
azimuth: 125
dip: 45
easting: 351610
elevation: 50
northing: 6688312
type: 1
results:
output:
hash: a9326678c39b6f925e7f22f6e79a48217100071cc8af85d675f28462
type: rasterhash
- algorithm: grass7:r.buffer
name: GRASS7 r.buffer
params:
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
distances: 500,1500
input:
name: custom/grass7/raster_1class.tif
type: raster
units: 0
results:
output:
hash: 288fa95adddf1f1d139db7a56678e1bf3726610cfacde4c95d9d0ed5
type: rasterhash
- algorithm: grass7:r.buffer.lowmem
name: GRASS7 r.buffer.lowmem
params:
-z: False
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
distances: 500,1500
input:
name: custom/grass7/raster_1class.tif
type: raster
units: 0
results:
output:
hash: 288fa95adddf1f1d139db7a56678e1bf3726610cfacde4c95d9d0ed5
type: rasterhash
- algorithm: grass7:r.blend.combine
name: GRASS7 r.blend.combine
params:
GRASS_REGION_CELLSIZE_PARAMETER: 0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
first:
name: custom/grass7/float_raster.tif
type: raster
percent: 50
second:
name: custom/grass7/raster_6class.tif
type: raster
results:
output:
hash:
- a32af325d511525f74df50a3ffcf0f448e28fe9018a3e3116e34947e
- 167f9f2292a9e1e6766d8b07cae640aa41eb8d132b92fcc53383daa6
type: rasterhash
- algorithm: grass7:r.blend.rgb
name: GRASS7 r.blend.rgb
params:
GRASS_REGION_CELLSIZE_PARAMETER: 0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
first:
name: custom/grass7/float_raster.tif
type: raster
percent: 50
second:
name: custom/grass7/raster_6class.tif
type: raster
results:
output_blue:
hash:
- f8ab20fdd7aead09f6d42d7eee668168dec102df85bac3d5632ea30b
- 586cb45590f59f40c097094c8bdf832e763554344d78749ec60f23c8
type: rasterhash
output_green:
hash:
- 7b7f26391fdb60f6cfff3b976720ee7464a80da62e2d4e7c0a1f639a
- bf2fba56e65fbadbc05c26c8ab3b74872d26ae6faf32d2f1c4a93d19
type: rasterhash
output_red:
hash:
- a1cedc7dd0b5ba977aff5e0908fb8b0f40edae82daef54295d98e6df
- 30c1bc64d47e0b6f8be2e5c99cea323e88bd7e376bf0f9ed7949ee80
type: rasterhash
- algorithm: grass7:r.circle
name: GRASS7 r.circle
params:
-b: false
GRASS_REGION_CELLSIZE_PARAMETER: 0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
coordinates: 351610,6688312
max: 2000
min: 500
multiplier: '1'
results:
output:
hash: e4eab441b88a873df44afe26c7c96d40d0944a5743953ffc18696c73
type: rasterhash
- algorithm: grass7:r.clump
name: GRASS7 r.clump
params:
GRASS_REGION_CELLSIZE_PARAMETER: 0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
input:
name: custom/grass7/raster_6class.tif
type: raster
title: TESTS
results:
output:
hash: 93df1dbc135f28781730d7b20a6ee52f0505320e355132a454abb4b9
type: rasterhash
- algorithm: grass7:r.what.points
name: GRASS7 r.what.points
params:
-c: false
-f: false
-i: false
-n: false
-r: false
GRASS_MIN_AREA_PARAMETER: 0.0001
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
GRASS_SNAP_TOLERANCE_PARAMETER: -1
cache: 500
map:
name: custom/grass7/raster_4class.tif
type: raster
null_value: '*'
points:
name: custom/grass7/points.shp
type: vector
separator: pipe
results:
output:
type: file
name: expected/grass7/r.what.points.txt
- algorithm: grass7:r.what.color
name: GRASS 7 r.what.color
params:
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
format: '%d:%d:%d'
input:
name: custom/grass7/float_raster.tif
type: raster
value: '100'
results:
html:
name: expected/grass7/r_what_color.html
type: regex
rules:
- '100: 70:10:93'
- algorithm: grass7:r.what.coords
name: GRASS7 r.what.coords
params:
-c: false
-f: false
-i: false
-n: false
-r: false
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
cache: 500
coordinates: 348371,6688828
map:
name: custom/grass7/raster_4class.tif
type: raster
null_value: '*'
separator: pipe
results:
output:
type: file
name: expected/grass7/r.what.coords.txt
- algorithm: grass7:r.water.outlet
name: GRASS7 r.water.outlet
params:
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
coordinates: 351610,6688312
input:
name: custom/grass7/raster_6class.tif
type: raster
results:
output:
hash: 74f818490bca6fcde2d4c628e2643566ff630ef563591973ce8520d3
type: rasterhash
- algorithm: grass7:r.walk.rast
name: GRASS7 r.walk.rast
params:
-k: false
-n: false
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
elevation:
name: custom/grass7/float_raster.tif
type: raster
friction:
name: custom/grass7/raster_6class.tif
type: raster
lambda: 1.0
max_cost: 0.0
memory: 300
null_cost: 0.0
slope_factor: -0.2125
start_raster:
name: custom/grass7/raster_1class.tif
type: raster
walk_coeff: 0.72,6.0,1.9998,-1.9998
results:
outdir:
hash: 34e6ef655b1ae4f50887bb65131c9001dde36ba9fc2ed3ff50208336
type: rasterhash
output:
hash: faef007aba35c7dc4e8b7438f29a9ad9387c72b96d17d5d1c6ec8188
type: rasterhash
- algorithm: grass7:r.walk.points
name: GRASS7 r.walk.points
params:
-k: false
-n: false
GRASS_MIN_AREA_PARAMETER: 0.0001
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
GRASS_SNAP_TOLERANCE_PARAMETER: -1.0
elevation:
name: custom/grass7/float_raster.tif
type: raster
friction:
name: custom/grass7/raster_6class.tif
type: raster
lambda: 1.0
max_cost: 0.0
memory: 300
null_cost: 0.0
slope_factor: -0.2125
start_points:
name: custom/grass7/points.shp
type: vector
walk_coeff: 0.72,6.0,1.9998,-1.9998
results:
outdir:
hash: c93e715db431ab2ad46e57b3915d22a6dc256c195eeb70e8e6e2946e
type: rasterhash
output:
hash: 30c77235f565bd95fe62b17de4869c3811de7bd3de85024bcd943ff6
type: rasterhash
- algorithm: grass7:r.walk.coords
name: GRASS7 r.walk.coords
params:
-k: false
-n: false
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
elevation:
name: custom/grass7/float_raster.tif
type: raster
friction:
name: custom/grass7/raster_6class.tif
type: raster
lambda: 1.0
max_cost: 0.0
memory: 300
null_cost: 0.0
slope_factor: -0.2125
start_coordinates: 351610,6688312
stop_coordinates: 351710,6688812
walk_coeff: 0.72,6.0,1.9998,-1.9998
results:
outdir:
hash: 2422acf9b01caade6a39c111a039b5f14e881de972b514e5b1889ba7
type: rasterhash
output:
hash: 7cea72cb9c5cef75849ac59ccf8396be4abcc72f51408ab108426a88
type: rasterhash
- algorithm: grass7:r.usler
name: GRASS7 r.usler
params:
GRASS_REGION_CELLSIZE_PARAMETER: 0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
input:
name: custom/grass7/float_raster.tif
type: raster
method: 0
results:
output:
hash: 8b7bf2df641d34135106a6451770a87aa5f14a37d4b61468ebfaa5c1
type: rasterhash
- algorithm: grass7:r.univar
name: GRASS7 r.univar
params:
-e: false
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
map:
params:
- name: custom/grass7/raster_6class.tif
type: raster
- name: custom/grass7/raster_5class.tif
type: raster
type: multi
percentile: ''
separator: pipe
results:
output:
name: expected/grass7/r.univar.txt
type: file
- algorithm: grass7:r.topmodel.topidxstats
name: GRASS7 r.topmodel.topidxstats
params:
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
ntopidxclasses: 30
topidx:
name: custom/grass7/float_raster.tif
type: raster
results:
outtopidxstats:
name: expected/grass7/r.topomodel.topidxstats.txt
type: file
- algorithm: grass7:r.topidx
name: GRASS7 r.topidx
params:
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
input:
name: custom/grass7/float_raster.tif
type: raster
results:
output:
hash: 6b4dcffae16a630e655a57e346a1a8a58d2f22760dcf2deb28ede7b5
type: rasterhash
- algorithm: grass7:r.thin
name: Test GRASS7 r.thin
params:
GRASS_RASTER_FORMAT_META: ''
GRASS_RASTER_FORMAT_OPT: ''
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
input:
name: custom/grass7/raster_6class.tif
type: raster
iterations: 200
results:
output:
hash: 0012dbb0f83db91896ce36c6d4ad080ac5a3d60418ccd654521eca98
type: rasterhash
- algorithm: grass7:r.surf.idw
name: GRASS7 r.surf.idw
params:
-e: false
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
input:
name: custom/grass7/raster_6class.tif
type: raster
npoints: 12
results:
output:
hash: f207480b8e1eef990f483d156732aa53ace3d524dc1470f749f638bc
type: rasterhash
- algorithm: grass7:r.surf.contour
name: GRASS7 r.surf.contour
params:
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
input:
name: custom/grass7/raster_6class.tif
type: raster
results:
output:
hash: b147ed0a7ac16afa33bed88c0bd94042f01b529225371fa9ce4a1d8b
type: rasterhash
- algorithm: grass7:r.surf.area
name: GRASS7 r.surf.area
params:
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
map:
name: custom/grass7/raster_6class.tif
type: raster
units: 2
vscale: 1.0
results:
html:
name: expected/grass7/r_surf_area.html
type: regex
rules:
- 'Null value area ignored in calculation: 1510000.000000'
- '143171894.810657 143200607.945173 143186251.377915'
- 'Estimated region Surface Area: 145559238.769913'
- algorithm: grass7:r.sunmask.position
name: GRASS7 r.sunmask.position
params:
-s: false
-z: false
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
altitude: 80.0
azimuth: 100.0
east: '351610'
elevation:
name: custom/grass7/raster_6class.tif
type: raster
north: '6685312'
results:
output:
hash: 74bb329868969f3eff013800aae29cd1ab8cbc3983051fdf5d18b756
type: rasterhash
- algorithm: grass7:r.sunmask.datetime
name: GRASS7 r.sunmask.datetime
params:
-s: false
-z: true
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
day: 1
east: '351610'
elevation:
name: custom/grass7/raster_6class.tif
type: raster
hour: 12
minute: 0
month: 1
north: '6685312'
second: 0
timezone: 0.0
year: 2010
results:
output:
hash: 95e064f05759606bc60f1dfa88931f545c066629c1f07919156ac03b
type: rasterhash
- algorithm: grass7:r.sun.insoltime
name: GRASS7 r.sun (insoltime)
params:
-m: false
-p: false
GRASS_RASTER_FORMAT_META: ''
GRASS_RASTER_FORMAT_OPT: ''
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
albedo_value: 0.2
aspect:
name: custom/grass7/raster_6class.tif
type: raster
aspect_value: 270.0
day: 1
distance_step: 1.0
elevation:
name: custom/grass7/float_raster.tif
type: raster
npartitions: 1
slope:
name: custom/grass7/float_raster.tif
type: raster
slope_value: 0.0
step: 0.5
results:
beam_rad:
hash: 4428e6601576375c17cb0d37f74e3317db218b9660d3e9483f444279
type: rasterhash
diff_rad:
hash: a05bb9e71f3a539b74a07235b5873738d3049960c8b2b5fd37cc7826
type: rasterhash
glob_rad:
hash: 511d713ab666e171167a9a137ea246eefc90042e149ded73281362fa
type: rasterhash
insol_time:
hash: 45954c661088e55d7740f7b9b89e21217a34d25868f751e8d0a67d31
type: rasterhash
refl_rad:
hash: 278011afa98bcdfd87a2c476bc4abac96266a2a13ac9d20696733941
type: rasterhash
- algorithm: grass7:r.sun.incidout
name: GRASS7 r.sun (incidout)
params:
-m: false
-p: false
GRASS_RASTER_FORMAT_META: ''
GRASS_RASTER_FORMAT_OPT: ''
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
albedo_value: 0.2
aspect:
name: custom/grass7/raster_6class.tif
type: raster
aspect_value: 270.0
day: 1
distance_step: 1.0
elevation:
name: custom/grass7/float_raster.tif
type: raster
npartitions: 1
slope:
name: custom/grass7/float_raster.tif
type: raster
slope_value: 0.0
step: 0.5
time: 8.0
results:
beam_rad:
hash: b2459789ef2f04adc13a02d016f314594eaaf6f89e42fdf35d06e46b
type: rasterhash
diff_rad:
hash: 7dbe38013812f372389f1ce1b60eae6755e005326e2373472ec65443
type: rasterhash
glob_rad:
hash: 41e68104b039b794efb580a52c79e61af84261f9fad8b2aaedce0316
type: rasterhash
incidout:
hash: 5cd5e5a410da7593d2e0d3ad3cb01818cebddfb73d0439fcf8b30d05
type: rasterhash
refl_rad:
hash: 5ac2d870ae11d726a16809cda2915b248f0180f3eedc0c7a4c8d8de5
type: rasterhash
- algorithm: grass7:r.stats
name: GRASS7 r.stats
params:
'-1': true
-A: false
-C: false
-N: false
-a: false
-c: false
-g: false
-i: false
-l: false
-n: false
-p: false
-r: false
-x: false
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
input:
params:
- name: custom/grass7/raster_6class.tif
type: raster
- name: custom/grass7/raster_5class.tif
type: raster
- name: custom/grass7/raster_4class.tif
type: raster
type: multi
nsteps: 255
null_value: '0'
separator: space
sort: 0
results:
html:
name: expected/grass7/r_stats.html
type: regex
rules:
- '6 2 1'
- '4 3 4'
- '0 1 2'
- '1 1 3'
- algorithm: grass7:r.statistics
name: GRASS7 r.statistics
params:
-c: false
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
base:
name: custom/grass7/raster_4class.tif
type: raster
cover:
name: custom/grass7/raster_6class.tif
type: raster
method: '0'
results:
routput:
hash: 57def04673343492d83c9572979d752fd7f2d996a2b4bb4cd0a01982
type: rasterhash
- algorithm: grass7:r.spread
name: GRASS7 r.spread
params:
-i: false
-s: false
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
base_ros:
name: custom/grass7/float_raster.tif
type: raster
comp_dens: 0.5
direction_ros:
name: custom/grass7/raster_6class.tif
type: raster
init_time: 0
lag: 0
least_size: '0'
max_ros:
name: custom/grass7/raster_5class.tif
type: raster
start:
name: custom/grass7/raster_1class.tif
type: raster
results:
output:
hash: 0c3e696ea76577c5fa909ebe31b67bef56794ebd33c376c1d836d58e
type: rasterhash
x_output:
hash: cb43ff482d2254e7ff24e8c829d2f58fcae90e567aa4129444934a3a
type: rasterhash
y_output:
hash: 26e69127c3670fecd7cac6c96660e9e041315c0f5225c4367c49b6a5
type: rasterhash
- algorithm: grass7:r.slope.aspect
name: GRASS7 r.slope.aspect
params:
-a: true
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
elevation:
name: custom/grass7/float_raster.tif
type: raster
format: '0'
min_slope: 0.0
precision: '0'
zscale: 1.0
results:
aspect:
hash: 7b18170d277ae3254b8e354ae5a1dc09473405e9068b5ea96d41869d
type: rasterhash
dx:
hash: 5fb06253296ab57448b5d50765d662979ef350b2150ea41d1acfb67a
type: rasterhash
dxx:
hash: d8a554dfb3f3b5ec5470aed10f189074723b55a99893dcab8ef025b0
type: rasterhash
dxy:
hash: 7ff41f0cb413603ac6f2b4b97c8cd5cdc0ee98c1e61aac6c7f4bb392
type: rasterhash
dy:
hash: 9f85859b62e62b99ec10be64fffb0eee2105b4f29dce80c0ece4294d
type: rasterhash
dyy:
hash: 4a5a9acfab2016a11cb491a34aa8c3bddd8bf3a3092535989e5a2fe8
type: rasterhash
pcurvature:
hash: 7cd1b6880fc12872cf9aa6c0991fe3d7f331f806a0420786fd5fdadd
type: rasterhash
slope:
hash: 873b900f4ae7548b678cc09268f5b430507637f030d30594e72c07ad
type: rasterhash
tcurvature:
hash: db3fd612f5e138df9b0aaf741602d87fc5ab15d14e5bd6c7b197dc57
type: rasterhash
- algorithm: grass7:r.slope.aspect
name: GRASS7 r.slope
params:
-a: false
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
elevation:
name: custom/grass7/float_raster.tif
type: raster
min_slope: 0.0
precision: '0'
zscale: 1.0
results:
slope:
hash: 873b900f4ae7548b678cc09268f5b430507637f030d30594e72c07ad
type: rasterhash
- algorithm: grass7:r.slope.aspect
name: GRASS7 r.aspect
params:
-a: false
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
elevation:
name: custom/grass7/float_raster.tif
type: raster
min_slope: 0.0
precision: '0'
zscale: 1.0
results:
aspect:
hash: 7b18170d277ae3254b8e354ae5a1dc09473405e9068b5ea96d41869d
type: rasterhash
- algorithm: grass7:r.series
name: GRASS7 r.series
params:
-n: false
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
input:
params:
- name: custom/grass7/raster_6class.tif
type: raster
- name: custom/grass7/float_raster.tif
type: raster
type: multi
method: 0
range: -10000000000,10000000000
results:
output:
hash: 19ca3124af3dc68294f73327a0c80596eaed5fcbf46cfb7e784d17f5
type: rasterhash
- algorithm: grass7:r.series
name: GRASS7 r.series (without range)
params:
-n: false
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
input:
params:
- name: custom/grass7/raster_6class.tif
type: raster
- name: custom/grass7/float_raster.tif
type: raster
type: multi
method: 0
range: None
results:
output:
hash: 19ca3124af3dc68294f73327a0c80596eaed5fcbf46cfb7e784d17f5
type: rasterhash
- algorithm: grass7:r.category
name: GRASS7 r.category
params:
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
map:
name: custom/grass7/raster_4class.tif
type: raster
txtrules: '1: First\n2: Second\n3: Nothing\n4: What you want'
results:
output:
hash: 59b41078ca329fc59eab84097ba8601cf9a1ad823867bf16d1bac044
type: rasterhash
- algorithm: grass7:r.coin
name: GRASS7 r.coin
params:
-w: false
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
first:
name: custom/grass7/raster_4class.tif
type: raster
second:
name: custom/grass7/raster_6class.tif
type: raster
units: 1
results:
html:
name: expected/grass7/r_coin.html
type: regex
rules:
- '|r 1 | 0.29 | 1.55 | 5.10 | 6.94 | 6.94 |'
- '|a 2 | 0.12 | 0.69 | 2.36 | 3.17 | 3.17 |'
- '|5 6 | 0.61 | 3.89 | 12.91 | 17.42 | 17.42 |'
- algorithm: grass7:r.colors.out
name: GRASS7 r.colors.out)
params:
-p: false
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
map:
name: custom/grass7/float_raster.tif
type: raster
results:
rules:
name: expected/grass7/r.colors.out.txt
type: file
- algorithm: grass7:r.composite
name: GRASS7 r.composite
params:
-c: true
-d: false
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
blue:
name: custom/grass7/raster_6class.tif
type: raster
green:
name: custom/grass7/raster_5class.tif
type: raster
level_blue: 32
level_green: 32
level_red: 32
red:
name: custom/grass7/raster_4class.tif
type: raster
results:
output:
hash: 48aa021881c74821c3ad6a5d2205ef74421814b5b2ac7bb8918d44d2
type: rasterhash
- algorithm: grass7:r.cost
name: GRASS7 r.cost.coordinates
params:
-k: false
-n: true
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
input:
name: custom/grass7/raster_6class.tif
type: raster
max_cost: 0
memory: 300
null_cost: 0
start_coordinates: 346371,6690604
stop_coordinates: 356300,6688453
results:
output:
hash: ed392f88d156af060917cec8e3fd69cd5b962cd82a67274861682ea1
type: rasterhash
- algorithm: grass7:r.cost
name: GRASS7 r.cost.raster
params:
-k: false
-n: true
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
input:
name: custom/grass7/raster_6class.tif
type: raster
max_cost: 0
memory: 300
null_cost: 0
start_raster:
name: custom/grass7/raster_1class.tif
type: raster
results:
output:
hash: ae9b2f9ddc60b57e1dbb7a0f989cbcf732fd339e80b450bbdfe48f20
type: rasterhash
- algorithm: grass7:r.cost
name: GRASS7 r.cost.points
params:
-k: false
-n: true
GRASS_MIN_AREA_PARAMETER: 0.0001
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
GRASS_SNAP_TOLERANCE_PARAMETER: -1.0
input:
name: custom/grass7/raster_6class.tif
type: raster
start_points:
name: custom/grass7/points.shp
type: vector
stop_points:
name: custom/grass7/points2.shp
type: vector
results:
output:
hash: d08b86dbf86d283f642381dd38ef62e0d6ec2ec905fcbee66fe631cd
type: rasterhash
- algorithm: grass7:r.covar
name: GRASS7 r.covar
params:
-r: true
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
map:
params:
- name: custom/grass7/raster_6class.tif
type: raster
- name: custom/grass7/raster_5class.tif
type: raster
- name: custom/grass7/raster_4class.tif
type: raster
type: multi
results:
html:
name: expected/grass7/r_covar.html
type: regex
rules:
- '1.000000 0.018635 -0.000101'
- '0.018635 1.000000 -0.012230'
- '-0.000101 -0.012230 1.000000'
- algorithm: grass7:r.cross
name: GRASS7 r.cross
params:
-z: true
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
input:
params:
- name: custom/grass7/raster_6class.tif
type: raster
- name: custom/grass7/raster_5class.tif
type: raster
- name: custom/grass7/raster_4class.tif
type: raster
type: multi
results:
output:
hash: 1eccafaa5b459c8a57e72d449f1586a4088bda82fe891f8687dbd94b
type: rasterhash
- algorithm: grass7:r.describe
name: GRASS7 r.describe
params:
-d: false
-i: false
-n: false
-r: false
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
map:
name: custom/grass7/raster_6class.tif
type: raster
nsteps: 255
null_value: '0'
results:
html:
name: expected/grass7/r_describe.html
type: regex
rules:
- '0 1-6'
- algorithm: grass7:r.fill.dir
name: GRASS7 r.fill.dir
params:
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
format: '0'
input:
name: custom/grass7/float_raster.tif
type: raster
results:
areas:
hash: 5edf01dbbe2d08fd89a52f662373bbe6acfa4bbc86f002697ecd9dcc
type: rasterhash
direction:
hash: 093995e21463d59ccd17b9e432a3a10cd2c1c25e8e415d3770578384
type: rasterhash
output:
hash: c9b138bce89dbb17dfc3995c8338380e480ac5a1736981c73f146160
type: rasterhash
- algorithm: grass7:r.fillnulls
name: GRASS7 r.fillnulls
params:
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
edge: 4
input:
name: custom/grass7/raster_6class.tif
type: raster
method: '0'
npmin: 20
segmax: 10
smooth: 1.1
tension: 20.0
results:
output:
hash: 04e780c464528fc411f1531175a6ba78a44ce5f429e7b5f67f935b9f
type: rasterhash
- algorithm: grass7:r.flow
name: GRASS7 r.flow
params:
'-3': false
-m: false
-u: false
GRASS_OUTPUT_TYPE_PARAMETER: '0'
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
bound: 1609
elevation:
name: custom/grass7/float_raster.tif
type: raster
skip: 7
results:
flowaccumulation:
hash: f9ac137eba82ffb462f2ee92ef6f51a27138d3aa3e2b59ad318884b7
type: rasterhash
flowlength:
hash: 1396f17f7a5afbffdc3c31704029a0f826f56bc39a2c2a4a5a7d6efd
type: rasterhash
- algorithm: grass7:r.flow
name: GRASS7 r.flow.aspect
params:
'-3': false
-m: false
-u: false
GRASS_OUTPUT_TYPE_PARAMETER: '0'
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
aspect:
name: custom/grass7/raster_6class.tif
type: raster
bound: 1609
elevation:
name: custom/grass7/float_raster.tif
type: raster
skip: 7
results:
flowaccumulation:
hash: cea321bb920029ebac058ac56b0052c1e7745d1e0ecc89fb00dc76d1
type: rasterhash
flowlength:
hash: a9bd95b064f0ad585a2e71bee3c36cc32c4bf8010e35401074b9cdd0
type: rasterhash
- algorithm: grass7:r.his
name: GRASS7 r.his
params:
-c: true
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
hue:
name: custom/grass7/float_raster.tif
type: raster
intensity:
name: custom/grass7/raster_4class.tif
type: raster
saturation:
name: custom/grass7/raster_5class.tif
type: raster
results:
blue:
hash: 7fab6db4c0517dbd4a3d61181874ad0544383896ba5f4292c9418be2
type: rasterhash
green:
hash: 7fab6db4c0517dbd4a3d61181874ad0544383896ba5f4292c9418be2
type: rasterhash
red:
hash: 7fab6db4c0517dbd4a3d61181874ad0544383896ba5f4292c9418be2
type: rasterhash
- algorithm: grass7:r.kappa
name: GRASS7 r.kappa
params:
-h: false
-w: false
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
classification:
name: custom/grass7/raster_1class.tif
type: raster
reference:
name: custom/grass7/raster_6class.tif
type: raster
title: ACCURACY ASSESSMENT
results:
output:
name: expected/grass7/r.kappa.txt
type: regex
rules:
- '44 297 14.814815'
- algorithm: grass7:r.lake
name: GRASS7 r.lake.coords
params:
-n: false
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
coordinates: 350854,6688401
elevation:
name: custom/grass7/raster_6class.tif
type: raster
water_level: 30.0
results:
lake:
hash: 32056cee99277fa769e1e135f76c82bb122b30060485890112819126
type: rasterhash
- algorithm: grass7:r.lake
name: GRASS7 r.lake.layer
params:
-n: false
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
elevation:
name: custom/grass7/float_raster.tif
type: raster
seed:
name: custom/grass7/raster_1class.tif
type: raster
water_level: 10000.0
results:
lake:
hash: 539f4ac0347ad6b688f9a1af14d78ab26bbccac3f9916cc6f5204bc6
type: rasterhash
- algorithm: grass7:r.latlong
name: GRASS7 r.latlong
params:
-l: false
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
input:
name: custom/grass7/float_raster.tif
type: raster
results:
output:
hash:
- 418f93ebf06c0b5ae3c7a126513fe4384a3aaa6f8fb570f3d39e2877
- d447a4dfb85ed7f4d819e68b32eb1303bd2040ca72077892d3e3cec7
type: rasterhash
- algorithm: grass7:r.info
name: GRASS7 r.info
params:
-e: false
-g: false
-h: false
-r: false
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
map:
name: custom/grass7/float_raster.tif
type: raster
results:
html:
name: expected/grass7/r_info.html
type: regex
rules:
- '| N: 6693700 S: 6682800 Res: 100 |'
- '| E: 358400 W: 344500 Res: 100 |'
- algorithm: grass7:r.li.cwed.ascii
name: GRASS7 r.li.cwed.ascii
params:
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
config:
name: custom/grass7/rliconfig
type: file
input:
name: custom/grass7/raster_6class.tif
type: raster
path:
name: custom/grass7/weighted.csv
type: file
results:
output_txt:
name: expected/grass7/r.li.cwed.ascii.txt
type: file
- algorithm: grass7:r.li.dominance.ascii
name: GRASS7 r.li.dominance.ascii
params:
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
config:
name: custom/grass7/rliconfig
type: file
config_txt: ''
input:
name: custom/grass7/raster_6class.tif
type: raster
results:
output_txt:
name: expected/grass7/r.li.dominance.ascii.txt
type: file
- algorithm: grass7:r.li.edgedensity.ascii
name: GRASS7 r.li.edgedensity.ascii
params:
-b: false
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
config:
name: custom/grass7/rliconfig
type: file
config_txt: ''
input:
name: custom/grass7/raster_6class.tif
type: raster
patch_type: '3'
results:
output_txt:
name: expected/grass7/r.li.edgedensity.ascii.txt
type: file
- algorithm: grass7:r.li.mpa.ascii
name: GRASS7 r.li.mpa.ascii
params:
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
config:
name: custom/grass7/rliconfig
type: file
config_txt: ''
input:
name: custom/grass7/raster_6class.tif
type: raster
results:
output_txt:
name: expected/grass7/r.li.mpa.ascii.txt
type: file
- algorithm: grass7:r.li.mps.ascii
name: GRASS7 r.li.mps.ascii
params:
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
config:
name: custom/grass7/rliconfig
type: file
config_txt: ''
input:
name: custom/grass7/raster_6class.tif
type: raster
results:
output_txt:
name: expected/grass7/r.li.mps.ascii.txt
type: file
- algorithm: grass7:r.li.padcv.ascii
name: GRASS7 r.li.padcv.ascii
params:
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
config:
name: custom/grass7/rliconfig
type: file
config_txt: ''
input:
name: custom/grass7/raster_6class.tif
type: raster
results:
output_txt:
name: expected/grass7/r.li.padcv.ascii.txt
type: file
- algorithm: grass7:r.li.padrange.ascii
name: GRASS7 r.li.padrange.ascii
params:
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
config:
name: custom/grass7/rliconfig
type: file
config_txt: ''
input:
name: custom/grass7/raster_6class.tif
type: raster
results:
output_txt:
name: expected/grass7/r.li.padrange.ascii.txt
type: file
- algorithm: grass7:r.li.padsd.ascii
name: GRASS7 r.li.padsd.ascii
params:
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
config:
name: custom/grass7/rliconfig
type: file
config_txt: ''
input:
name: custom/grass7/raster_6class.tif
type: raster
results:
output_txt:
name: expected/grass7/r.li.padsd.ascii.txt
type: file
- algorithm: grass7:r.li.patchdensity.ascii
name: GRASS7 r.li.patchdensity.ascii
params:
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
config:
name: custom/grass7/rliconfig
type: file
config_txt: ''
input:
name: custom/grass7/raster_6class.tif
type: raster
results:
output_txt:
name: expected/grass7/r.li.patchdensity.ascii.txt
type: file
- algorithm: grass7:r.li.patchnum.ascii
name: GRASS7 r.li.patchnum.ascii
params:
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
config:
name: custom/grass7/rliconfig
type: file
config_txt: ''
input:
name: custom/grass7/raster_6class.tif
type: raster
results:
output_txt:
name: expected/grass7/r.li.patchnum.ascii.txt
type: file
- algorithm: grass7:r.li.pielou.ascii
name: GRASS7 r.li.pielou.ascii
params:
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
config:
name: custom/grass7/rliconfig
type: file
config_txt: ''
input:
name: custom/grass7/raster_6class.tif
type: raster
results:
output_txt:
name: expected/grass7/r.li.pielou.ascii.txt
type: file
- algorithm: grass7:r.li.renyi.ascii
name: GRASS7 r.li.renyi.ascii
params:
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
alpha: '3'
config:
name: custom/grass7/rliconfig
type: file
config_txt: ''
input:
name: custom/grass7/raster_6class.tif
type: raster
results:
output_txt:
name: expected/grass7/r.li.renyi.ascii.txt
type: file
- algorithm: grass7:r.li.richness.ascii
name: GRASS7 r.li.richness.ascii
params:
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
config:
name: custom/grass7/rliconfig
type: file
config_txt: ''
input:
name: custom/grass7/raster_6class.tif
type: raster
results:
output_txt:
name: expected/grass7/r.li.richness.ascii.txt
type: file
- algorithm: grass7:r.li.shannon.ascii
name: GRASS7 r.li.shannon.ascii
params:
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
config:
name: custom/grass7/rliconfig
type: file
config_txt: ''
input:
name: custom/grass7/raster_6class.tif
type: raster
results:
output_txt:
name: expected/grass7/r.li.shannon.ascii.txt
type: file
- algorithm: grass7:r.li.shape.ascii
name: GRASS7 r.li.shape.ascii
params:
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
config:
name: custom/grass7/rliconfig
type: file
config_txt: ''
input:
name: custom/grass7/raster_6class.tif
type: raster
results:
output_txt:
name: expected/grass7/r.li.shape.ascii.txt
type: file
- algorithm: grass7:r.li.simpson.ascii
name: GRASS7 r.li.simpson.ascii
params:
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
config:
name: custom/grass7/rliconfig
type: file
config_txt: ''
input:
name: custom/grass7/raster_6class.tif
type: raster
results:
output_txt:
name: expected/grass7/r.li.simpson.ascii.txt
type: file
- algorithm: grass7:r.watershed
name: GRASS7 r.watershed
params:
'-4': false
-a: false
-b: false
-m: false
-s: false
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
convergence: 5
elevation:
name: custom/grass7/float_raster.tif
type: raster
max_slope_length: 50
memory: 300
threshold: 1
results:
accumulation:
hash: 1ecbadff7aee4101be1c3626a7c77ebca3ae598d33672807f4a6fc34
type: rasterhash
basin:
hash: d4691e1bff8bf352508ecbdf7c694208d07ef83bb13b0768418f322c
type: rasterhash
drainage:
hash: 3e97f781cbca662823a53e7a6cb10e1edde2f8d0e4d64c28a62db2c0
type: rasterhash
half_basin:
hash: 431a0c8359b7662169ef8a9adf469da47a282a70981de5bee24e3528
type: rasterhash
length_slope:
hash: 69b5b31ac93a25f01b85e4f7867e5b8720183732d29d50c24204a7b9
type: rasterhash
slope_steepness:
hash: cafb759a5701e78928a43d87e58e552f9186358b1de40c375047f81e
type: rasterhash
stream:
hash: c6e7b081057d120e47e6d10f5abd05e47b42284c7d7974e64c71e053
type: rasterhash
tci:
hash:
- 6b213bddf1223f392c01ab26e84485c01d652dfcae40aecd186f3295
- e58737ab4169e79243dd7e50dc87555a2180a7e5f6ba00fe18b10fff
type: rasterhash
- algorithm: grass7:r.stream.extract
name: GRASS7 r.stream.extract
params:
GRASS_OUTPUT_TYPE_PARAMETER: '0'
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
GRASS_REGION_PARAMETER: 344500.0,358400.0,6682800.0,6693700.0
d8cut: 0
elevation:
name: custom/grass7/float_raster.tif
type: raster
mexp: 0
stream_length: 0
threshold: 1
results:
direction:
hash: 8499f6e5f81d0b79a0483481b467263246e2c97f1ef652df90e773e2
type: rasterhash
stream_raster:
hash: 916672ce0c35295100bcdc56bc60e26841b9cbb384924ae4f54648a8
type: rasterhash
- algorithm: grass7:r.geomorphon
name: Test (grass7:r.geomorphon)
params:
-e: false
-m: false
GRASS_RASTER_FORMAT_META: ''
GRASS_RASTER_FORMAT_OPT: ''
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
dist: 0.0
elevation:
name: custom/grass7/float_raster.tif
type: raster
flat: 1.0
search: 3
skip: 0
results:
forms:
hash: e1a1fc36d53e2ac801632f9e2271922d2b1340869f2db82d5edaeb0e
type: rasterhash
- algorithm: grass7:r.rescale
name: Test (grass7:r.rescale)
params:
GRASS_RASTER_FORMAT_META: ''
GRASS_RASTER_FORMAT_OPT: ''
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
from: '1,6'
input:
name: custom/grass7/raster_6class.tif
type: raster
to: '1,2'
results:
output:
hash: b07a8fd2a3ff63851d0eb123cafd8024986d22ea453f89c808765c83
type: rasterhash
- algorithm: grass7:r.rescale
name: Test (grass7:r.rescale)
params:
GRASS_RASTER_FORMAT_META: ''
GRASS_RASTER_FORMAT_OPT: ''
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
from: None
input:
name: custom/grass7/raster_6class.tif
type: raster
to: '1,2'
results:
output:
hash: b07a8fd2a3ff63851d0eb123cafd8024986d22ea453f89c808765c83
type: rasterhash
- algorithm: grass7:r.transect
name: GRASS 7 r.transect
params:
-g: false
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
line: 2077686.512558,5744286.456837,45,1500
map:
name: custom/dem_crs.tif
type: raster
null_value: '*'
results:
html:
name: expected/grass7/r_transect.html
type: regex
rules:
- '556.586901 205.821854'
- '1191.095967 206.328064'
- '1435.994204 212.717163'
- algorithm: grass7:r.category.out
name: GRASS 7 r.category.out
params:
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
cats: 1,3
map:
name: custom/grass7/raster_6class.tif
type: raster
separator: pipe
values: ''
results:
html:
name: expected/grass7/r_category_out.html
type: regex
rules:
- '1|'
- '3|'
- algorithm: grass7:r.distance
name: GRASS 7 r.distance
params:
-l: false
-n: false
-o: false
GRASS_REGION_CELLSIZE_PARAMETER: 0.0
map:
params:
- name: custom/grass7/raster_1class.tif
type: raster
- name: custom/grass7/raster_4class.tif
type: raster
type: multi
separator: pipe
sort: 0
results:
html:
name: expected/grass7/r_distance.html
type: regex
rules:
- '1|1|0|344550|6693650|344550|6693650'
- '1|3|100|352650|6693650|352750|6693650'
|