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
|
C****************************************************************************
C* NCSA HDF *
C* Software Development Group *
C* National Center for Supercomputing Applications *
C* University of Illinois at Urbana-Champaign *
C* 605 E. Springfield, Champaign IL 61820 *
C* *
C* For conditions of distribution and use, see the accompanying *
C* hdf/COPYING file. *
C* *
C****************************************************************************
C
C $Id: mfsdpff.f,v 1.5 1999/04/02 18:38:06 ptlu Exp $
C
C mfsdpff.f, based on mfsdff.f,v 1.7
C
C----------------------------------------------------------------------
C Name: sfstart
C Purpose: call scstart, open file
C Inputs: path: Name of file to be opened
C access: DFACC_READ, DFACC_WRITE, DFACC_CREATE,
C or any bitwise-or of the above.
C Returns: 0 on success, FAIL on failure with error set
C Users: Fortran stub routine
C----------------------------------------------------------------------
integer function sfstart(filename, access)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfstart
!MS$endif
character*(*) filename
integer access
C integer scstart
INTERFACE
INTEGER FUNCTION scstart(filename,access, nmlen)
!MS$ATTRIBUTES C, reference, alias: '_SCSTART' :: scstart
!DEC$ ATTRIBUTES reference :: filename
integer access, nmlen
character*(*) filename
END FUNCTION scstart
END INTERFACE
sfstart = scstart(filename, access, len(filename))
return
end
C----------------------------------------------------------------------
C Name: sfend
C Purpose: call scend, close file
C Inputs: file_id: handle to HDF file to close
C Returns: 0 on success, FAIL on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfend(file_id)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfend
!MS$endif
integer file_id
C integer scend
INTERFACE
INTEGER FUNCTION scend(file_id)
!MS$ATTRIBUTES C, reference, alias: '_SCEND' :: scend
integer file_id
END FUNCTION scend
END INTERFACE
sfend = scend(file_id)
return
end
C----------------------------------------------------------------------
C Name: sfendacc
C Purpose: call scendacc, to end access to an sds
C Inputs: id: id of the data set
C Returns: 0 on success, FAIL on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfendacc(id)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfendacc
!MS$endif
integer id
C integer scendacc
INTERFACE
INTEGER FUNCTION scendacc(id)
!MS$ATTRIBUTES C, reference, alias: '_SCENDACC' :: scendacc
integer id
END FUNCTION scendacc
END INTERFACE
sfendacc = scendacc(id)
return
end
C----------------------------------------------------------------------
C Name: sffinfo
C Purpose: call scfinfo, get number datasets and attrs in the file
C Inputs: file_id: handle to HDF file to close
C Outputs: datasets: number of datasets
C gattr: number of global attrs
C Returns: 0 on success, FAIL on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sffinfo(file_id, datasets, gattr)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sffinfo
!MS$endif
integer file_id, datasets, gattr
C integer scfinfo
INTERFACE
INTEGER FUNCTION scfinfo(file_id,datasets,gattr)
!MS$ATTRIBUTES C, reference, alias: '_SCFINFO' :: scfinfo
integer file_id,datasets, gattr
END FUNCTION scfinfo
END INTERFACE
sffinfo = scfinfo(file_id, datasets,gattr)
return
end
C----------------------------------------------------------------------
C Name: sfselect
C Purpose: call scselct, to return a handle to a data set.
C Inputs: file_id: handle to HDF file
C index: number of dataset to choose
C Returns: sdsid on success, FAIL on failure with error set
C Users: Fortran stub routine
C----------------------------------------------------------------------
integer function sfselect(file_id, index)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfselect
!MS$endif
integer file_id, index
C integer scselct
INTERFACE
INTEGER FUNCTION scselct(file_id,index)
!MS$ATTRIBUTES C, reference, alias: '_SCSELCT' :: scselct
integer file_id, index
END FUNCTION scselct
END INTERFACE
sfselect = scselct(file_id, index)
return
end
C----------------------------------------------------------------------
C Name: sfdimid
C Purpose: call scdimid, get an id for a dim of a dataset
C Inputs: id: handle to a dataset
C index: number of dimension to choose
C Returns: 0 on success, FAIL on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfdimid(id, index)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfdimid
!MS$endif
integer id, index
C integer scdimid
INTERFACE
INTEGER FUNCTION scdimid(id, index)
!MS$ATTRIBUTES C, reference, alias: '_SCDIMID' :: scdimid
integer id, index
END FUNCTION scdimid
END INTERFACE
sfdimid = scdimid(id, index)
return
end
C----------------------------------------------------------------------
C Name: sfgcal
C Purpose: call scgcal, get calibration info
C Inputs: id: handle to a dataset
C Outputs: cal, cale, ioff, ioffe: calibration factors and errors
C nt: number type of data
C Returns: 0 on success, FAIL on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfgcal(id,cal,cale,ioff,ioffe,nt)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfgcal
!MS$endif
integer id, nt
real*8 cal, cale, ioff, ioffe
C integer scgcal
INTERFACE
INTEGER FUNCTION scgcal(id,cal,cale,ioff,ioffe,nt)
!MS$ATTRIBUTES C, reference, alias: '_SCGCAL' :: scgcal
integer id, nt
real*8 cal, cale, ioff, ioffe
END FUNCTION scgcal
END INTERFACE
sfgcal = scgcal(id, cal,cale,ioff,ioffe,nt)
return
end
C----------------------------------------------------------------------
C Name: sfscal
C Purpose: call scscal, set calibration info
C Inputs: id: handle to a dataset
C Outputs: cal, cale, ioff, ioffe: calibration factors and errors
C nt: number type of data
C Returns: 0 on success, FAIL on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfscal(id,cal,cale,ioff,ioffe,nt)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfscal
!MS$endif
integer id, nt
real*8 cal, cale, ioff, ioffe
C integer scscal
INTERFACE
INTEGER FUNCTION scscal(id,cal,cale,ioff,ioffe,nt)
!MS$ATTRIBUTES C, reference, alias: '_SCSCAL' :: scscal
integer id, nt
real*8 cal, cale, ioff, ioffe
END FUNCTION scscal
END INTERFACE
sfscal = scscal(id, cal,cale,ioff,ioffe,nt)
return
end
C----------------------------------------------------------------------
C Name: sfsdscale
C Purpose: call scsdscale, set dimension scale
C Inputs: id: handle to a dimension
C count: size of the dimension
C nt: number type of data
C values: data
C Returns: 0 on success, FAIL on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfsdscale(id,count, nt, values)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfsdscale
!MS$endif
integer id, count, nt, values
C integer scsdscale
INTERFACE
INTEGER FUNCTION scsdscale(id, count, nt , values)
!MS$ATTRIBUTES C, reference, alias: '_SCSDSCALE' :: scsdscale
integer id, count, nt, values
END FUNCTION scsdscale
END INTERFACE
sfsdscale = scsdscale(id, count, nt, values)
return
end
C----------------------------------------------------------------------
C Name: sfgdscale
C Purpose: call scgdscale, get dimension scale
C Inputs: id: handle to a dimension
C values: data
C Returns: 0 on success, FAIL on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfgdscale(id, values)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfgdscale
!MS$endif
integer id, values
C integer scgdscale
INTERFACE
INTEGER FUNCTION scgdscale(id, values)
!MS$ATTRIBUTES C, reference, alias: '_SCGDSCALE' :: scgdscale
integer id, values
END FUNCTION scgdscale
END INTERFACE
sfgdscale = scgdscale(id, values)
return
end
C----------------------------------------------------------------------
C Name: sfscfill
C Purpose: call scscfill, set char fill value
C Inputs: id: handle to a dataset
C val: the fill value
C Returns: 0 on success, FAIL on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfscfill(id, val)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfscfill
!MS$endif
integer id
character*1 val
C integer scscfill
INTERFACE
INTEGER FUNCTION scscfill(id, val)
!MS$ATTRIBUTES C, reference, alias: '_SCSCFILL' :: scscfill
!DEC$ ATTRIBUTES reference :: val
integer id
character*1 val
END FUNCTION scscfill
END INTERFACE
sfscfill = scscfill(id, val)
return
end
C----------------------------------------------------------------------
C Name: sfgcfill
C Purpose: call scgcfill, get char fill value
C Inputs: id: handle to a dataset
C val: the fill value
C Returns: 0 on success, FAIL on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfgcfill(id, val)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfgcfill
!MS$endif
integer id
character*1 val
C integer scgcfill
INTERFACE
INTEGER FUNCTION scgcfill(id, val)
!MS$ATTRIBUTES C, reference, alias: '_SCGCFILL' :: scgcfill
!DEC$ ATTRIBUTES reference :: val
integer id
character*1 val
END FUNCTION scgcfill
END INTERFACE
sfgcfill = scgcfill(id, val)
return
end
C----------------------------------------------------------------
C Name: sfsfill
C Purpose: call scsfill, set numeric fill value
C Inputs: id: handle to a dataset
C val: the fill value
C Returns: 0 on success, FAIL on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------
integer function sfsfill(id, val)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfsfill
!MS$endif
integer id, val
C integer scsfill
INTERFACE
INTEGER FUNCTION scsfill(id, val)
!MS$ATTRIBUTES C, reference, alias: '_SCSFILL' :: scsfill
integer id, val
END FUNCTION scsfill
END INTERFACE
sfsfill = scsfill(id, val)
return
end
C----------------------------------------------------------------------
C Name: sfgfill
C Purpose: call scgfill, get numeric fill value
C Inputs: id: handle to a dataset
C val: the fill value
C Returns: 0 on success, FAIL on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfgfill(id, val)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfgfill
!MS$endif
integer id, val
C integer scgfill
INTERFACE
INTEGER FUNCTION scgfill(id, val)
!MS$ATTRIBUTES C, reference, alias: '_SCGFILL' :: scgfill
integer id, val
END FUNCTION scgfill
END INTERFACE
sfgfill = scgfill(id, val)
return
end
C----------------------------------------------------------------
C Name: sfsrange
C Purpose: call scsrange, set the valid range info
C Inputs: id: handle to a dataset
C max, min: the maximum and minimum values
C Returns: 0 on success, FAIL on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------
integer function sfsrange(id, max, min)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfsrange
!MS$endif
integer id, max, min
C integer scsrange
INTERFACE
INTEGER FUNCTION scsrange(id, max, min)
!MS$ATTRIBUTES C, reference, alias: '_SCSRANGE' :: scsrange
integer id, max, min
END FUNCTION scsrange
END INTERFACE
sfsrange = scsrange(id, max, min)
return
end
C----------------------------------------------------------------------
C Name: sfgrange
C Purpose: call scgrange, get the valid range info
C Inputs: id: handle to a dataset
C max, min: the maximum and minimum values
C Returns: 0 on success, FAIL on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfgrange(id, max, min)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfgrange
!MS$endif
integer id, max, min
C integer scgrange
INTERFACE
INTEGER FUNCTION scgrange(id, max, min)
!MS$ATTRIBUTES C, reference, alias: '_SCGRANGE' :: scgrange
integer id, max, min
END FUNCTION scgrange
END INTERFACE
sfgrange = scgrange(id, max, min)
return
end
C----------------------------------------------------------------------
C Name: sdfn2index
C Purpose: call scn2index to return an index
C Inputs: id: file
C name: name of data set
C Returns: 0 on success, FAIL on failure with error set
C Users: Fortran stub routine
C----------------------------------------------------------------------
integer function sfn2index(id, name)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfn2index
!MS$endif
character*(*) name
integer id
c integer scn2index
INTERFACE
INTEGER FUNCTION scn2index(id, name, nmlen)
!MS$ATTRIBUTES C, reference, alias: '_SCN2INDEX' :: scn2index
!DEC$ ATTRIBUTES reference :: name
integer id, nmlen
character*(*) name
END FUNCTION scn2index
END INTERFACE
sfn2index = scn2index(id, name, len(name))
return
end
C----------------------------------------------------------------------
C Name: sfcreate
C Purpose: call sccreate to create a new dataset
C Inputs: id: file
C name: name of data set
C nt: number type
C rank: rank
C dims: sizes of dimensions
C Returns: 0 on success, FAIL on failure with error set
C Users: Fortran stub routine
C----------------------------------------------------------------------
integer function sfcreate(id, name, nt, rank, dims)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfcreate
!MS$endif
character*(*) name
integer id, nt, rank
integer dims(*)
C integer sccreate
INTERFACE
INTEGER FUNCTION sccreate(id,name,nt,rank,dims,nmlen)
!MS$ATTRIBUTES C, reference, alias: '_SCCREATE' :: sccreate
!DEC$ ATTRIBUTES reference :: name
integer id, nt, rank, dims(*), nmlen
character*(*) name
END FUNCTION sccreate
END INTERFACE
sfcreate = sccreate(id, name, nt, rank, dims, len(name))
return
end
C----------------------------------------------------------------------
C Name: sfsdmstr
C Purpose: set strings for this dimension
C Inputs: id: dimension id
C label,unit,format: strings to be set
C Returns: 0 on success, -1 on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfsdmstr(id, label, unit, format)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfsdmstr
!MS$endif
character*(*) label, unit, format
integer len, id
C integer scsdimstr
INTERFACE
INTEGER FUNCTION scsdimstr(id, label, unit, format,
+ llen,ulen, flen)
!MS$ATTRIBUTES C, reference, alias: '_SCSDIMSTR' :: scsdimstr
!DEC$ ATTRIBUTES reference :: label, unit, format
integer id, llen, ulen, flen
character*(*) label, unit, format
END FUNCTION scsdimstr
END INTERFACE
sfsdmstr = scsdimstr(id, label, unit, format,
+ len(label), len(unit), len(format))
return
end
C----------------------------------------------------------------------
C Name: sfsdmname
C Purpose: set name of this dimension
C Inputs: id: dimension id
C name: the name
C Returns: 0 on success, -1 on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfsdmname(id, name)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfsdmname
!MS$endif
character*(*) name
integer len, id
C integer scsdimname
INTERFACE
INTEGER FUNCTION scsdimname(id, name, nmlen)
!MS$ATTRIBUTES C,reference,alias:'_SCSDIMNAME' :: scsdimname
!DEC$ ATTRIBUTES reference :: name
integer id, nmlen
character*(*) name
END FUNCTION scsdimname
END INTERFACE
sfsdmname = scsdimname(id, name, len(name))
return
end
C----------------------------------------------------------------------
C Name: sfsdtstr
C Purpose: set strings for this data set
C Inputs: id: dimension id
C label,unit,format,coordsys: strings to be set
C Returns: 0 on success, -1 on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfsdtstr(id, l, u, f, c)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfsdtstr
!MS$endif
character*(*) l, u, f, c
integer len, id
C integer scsdatstr
INTERFACE
INTEGER FUNCTION scsdatstr(id, l, u, f, c, llen,
+ ulen, flen, clen)
!MS$ATTRIBUTES C,reference,alias:'_SCSDATSTR' :: scsdatstr
!DEC$ ATTRIBUTES reference :: l,u,f,c
integer id, llen, ulen, flen, clen
character*(*) l,u,f,c
END FUNCTION scsdatstr
END INTERFACE
sfsdtstr = scsdatstr(id, l, u, f, c,
+ len(l), len(u), len(f), len(c))
return
end
C----------------------------------------------------------------------
C Name: sfgdtstr
C Purpose: get strings for this data set
C Inputs: id: dimension id
C Outputs: label,unit,format,coordsys: strings to be gotten
C Returns: 0 on success, -1 on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfgdtstr(id, label, unit, format, coord, mlen)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfgdtstr
!MS$endif
character*(*) label, unit, format, coord
integer len, id, mlen
C integer scgdatstrs
INTERFACE
INTEGER FUNCTION scgdatstrs(id,label,unit,format,coord,
+ llen,ulen,flen, clen,mlen)
!MS$ATTRIBUTES C,reference,alias:'_SCGDATSTRS' :: scgdatstrs
!DEC$ ATTRIBUTES reference :: label, unit, format, coord
integer id, llen, ulen, flen, clen, mlen
character*(*) label, unit, format, coord
END FUNCTION scgdatstrs
END INTERFACE
sfgdtstr = scgdatstrs(id, label, unit, format, coord,
+ len(label), len(unit), len(format), len(coord), mlen)
return
end
C----------------------------------------------------------------------
C Name: sfgdmstr
C Purpose: get strings for this dimension
C Inputs: id: dimension id
C Outputs: label,unit,format: strings to be gotten
C Returns: 0 on success, -1 on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfgdmstr(id, label, unit, format, mlen)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfgdmstr
!MS$endif
character*(*) label, unit, format
integer len, id
C integer scgdimstrs
INTERFACE
INTEGER FUNCTION scgdimstrs(id,label,unit,format,
+ llen,ulen,flen,mlen)
!MS$ATTRIBUTES C,reference,alias:'_SCGDIMSTRS' :: scgdimstrs
!DEC$ ATTRIBUTES reference :: label, unit, format
integer id, llen, ulen, flen, mlen
character*(*) label, unit, format
END FUNCTION scgdimstrs
END INTERFACE
sfgdmstr = scgdimstrs(id, label, unit, format,
+ len(label), len(unit), len(format), mlen)
return
end
C----------------------------------------------------------------------
C Name: sfginfo
C Purpose: get basic info about this data set
C Inputs: id: dataset id
C Outputs: name, rank, nt, dims, nattrs
C Returns: 0 on success, -1 on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfginfo(id, name, rank, dims, nt, nattr)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfginfo
!MS$endif
character*(*) name
integer rank, nt, nattr
integer dims(*)
integer len
c integer scginfo
INTERFACE
INTEGER FUNCTION scginfo(id,name,rank,dims,nt,nattr,nmlen)
!MS$ATTRIBUTES C, reference, alias: '_SCGINFO' :: scginfo
!DEC$ ATTRIBUTES reference :: name
integer id,rank,dims(*),nt,nattr,nmlen
character*(*) name
END FUNCTION scginfo
END INTERFACE
sfginfo = scginfo(id, name, rank, dims, nt, nattr, len(name))
return
end
C----------------------------------------------------------------------
C Name: sfrcatt
C Purpose: call scrcatt to get the contents of a char attribute
C Inputs: id: dataset id
C index: index of the attribute to read
C buf: space to hold attribute values
C Returns: 0 on success, -1 on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfrcatt(id, index, buf)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfrcatt
!MS$endif
character buf(*)
integer id, index
c integer scrcatt
INTERFACE
INTEGER FUNCTION scrcatt(id, index, buf)
!MS$ATTRIBUTES C, reference, alias: '_SCRCATT' :: scrcatt
!DEC$ ATTRIBUTES reference :: buf
integer id, index
character buf(*)
END FUNCTION scrcatt
END INTERFACE
sfrcatt = scrcatt(id, index, buf)
return
end
C----------------------------------------------------------------------
C Name: sfrnatt
C Purpose: call scrnatt to get the contents of a numeric attribute
C Inputs: id: dataset id
C index: index of the attribute to read
C buf: space to hold attribute values
C Returns: 0 on success, -1 on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfrnatt(id, index, buf)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfrnatt
!MS$endif
integer id, index, buf
c integer scrnatt
INTERFACE
INTEGER FUNCTION scrnatt(id, index, buf)
!MS$ATTRIBUTES C, reference, alias: '_SCRNATT' :: scrnatt
integer id, index, buf
END FUNCTION scrnatt
END INTERFACE
sfrnatt = scrnatt(id, index, buf)
return
end
C----------------------------------------------------------------------
C Name: sfrattr
C Purpose: call scrattr to get the contents of an attribute
C Inputs: id: dataset id
C index: index of the attribute to read
C buf: space to hold attribute values
C Returns: 0 on success, -1 on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfrattr(id, index, buf)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfrattr
!MS$endif
character*(*) buf
integer id, index
c integer scrattr
INTERFACE
INTEGER FUNCTION scrattr(id, index, buf)
!MS$ATTRIBUTES C, reference, alias: '_SCRATTR' :: scrattr
!DEC$ ATTRIBUTES reference :: buf
integer id, index
character*(*) buf
END FUNCTION scrattr
END INTERFACE
sfrattr = scrattr(id, index, buf)
return
end
C----------------------------------------------------------------------
C Name: sfrdata
C Purpose: call scrdata to read a section of numeric data
C Inputs: id: dataset id
C start: start location
C stride: stride along each dimension
C end: number of values along each dim to read
C values: data
C Returns: 0 on success, -1 on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfrdata(id, start,stride, end,values)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfrdata
!MS$endif
integer id, start(*), stride(*), end(*), values(*)
c integer scrdata
INTERFACE
INTEGER FUNCTION scrdata(id,start, stride, end, values)
!MS$ATTRIBUTES C, reference, alias: '_SCRDATA' :: scrdata
integer id, start(*), stride(*), end(*), values(*)
END FUNCTION scrdata
END INTERFACE
sfrdata = scrdata(id,start, stride, end, values)
return
end
C----------------------------------------------------------------------
C Name: sfwdata
C Purpose: call scwdata to write a section of numeric data
C Inputs: id: dataset id
C start: start location
C stride: stride along each dimension
C end: number of values along each dim to write
C values: data
C Returns: 0 on success, -1 on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfwdata(id, start,stride, end,values)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfwdata
!MS$endif
integer id, start(*), stride(*), end(*), values(*)
c integer scwdata
INTERFACE
INTEGER FUNCTION scwdata(id,start, stride, end, values)
!MS$ATTRIBUTES C, reference, alias: '_SCWDATA' :: scwdata
integer id, start(*), stride(*), end(*), values(*)
END FUNCTION scwdata
END INTERFACE
sfwdata = scwdata(id,start, stride, end, values)
return
end
C----------------------------------------------------------------------
C Name: sfrcdata
C Purpose: call scrcdata to read a section of char data
C Inputs: id: dataset id
C start: start location
C stride: stride along each dimension
C end: number of values along each dim to read
C values: data
C Returns: 0 on success, -1 on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfrcdata(id, start,stride, end,values)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfrcdata
!MS$endif
integer id, start(*), stride(*), end(*)
character*(*) values
c integer scrcdata
INTERFACE
INTEGER FUNCTION scrcdata(id,start, stride, end, values)
!MS$ATTRIBUTES C, reference, alias: '_SCRCDATA' :: scrcdata
!DEC$ ATTRIBUTES reference :: values
integer id, start(*), stride(*), end(*)
character *(*) values
END FUNCTION scrcdata
END INTERFACE
sfrcdata = scrcdata(id,start, stride, end, values)
return
end
C----------------------------------------------------------------------
C Name: sfwcdata
C Purpose: call scwcdata to write a section of numeric data
C Inputs: id: dataset id
C start: start location
C stride: stride along each dimension
C end: number of values along each dim to write
C values: data
C Returns: 0 on success, -1 on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfwcdata(id, start,stride, end,values)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfwcdata
!MS$endif
integer id, start(*), stride(*), end(*)
character*(*) values
c integer scwcdata
INTERFACE
INTEGER FUNCTION scwcdata(id,start, stride, end, values)
!MS$ATTRIBUTES C, reference, alias: '_SCWCDATA' :: scwcdata
!DEC$ ATTRIBUTES reference :: values
integer id, start(*), stride(*), end(*)
character*(*) values
END FUNCTION scwcdata
END INTERFACE
sfwcdata = scwcdata(id,start, stride, end, values)
return
end
C----------------------------------------------------------------------
C Name: sfgainfo
C Purpose: get basic info about an attribute
C Inputs: id: dataset id
C number: attribute number
C Outputs: name, nt, count
C Returns: 0 on success, -1 on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfgainfo(id, number, name, nt, count)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfgainfo
!MS$endif
character*(*) name
integer nt, number, len, count
C integer scgainfo
INTERFACE
INTEGER FUNCTION scgainfo(id, number, name,nt, count,nmlen)
!MS$ATTRIBUTES C, reference, alias: '_SCGAINFO' :: scgainfo
!DEC$ ATTRIBUTES reference :: name
integer id, number, nt, count, nmlen
character*(*) name
END FUNCTION scgainfo
END INTERFACE
sfgainfo = scgainfo(id, number, name, nt, count, len(name))
return
end
C----------------------------------------------------------------------
C Name: sfgdinfo
C Purpose: get basic info about a dimension
C Inputs: id: dim id
C Outputs: name, nt, sz, nattr
C Returns: 0 on success, -1 on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfgdinfo(id, name, sz, nt, nattr)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfgdinfo
!MS$endif
character*(*) name
integer sz, nt, nattr, len
C integer scgdinfo
INTERFACE
INTEGER FUNCTION scgdinfo(id,name, sz, nt, nattr,nmlen)
!MS$ATTRIBUTES C, reference, alias: '_SCGDINFO' :: scgdinfo
!DEC$ ATTRIBUTES reference :: name
integer id, sz, nt, nattr, nmlen
character*(*) name
END FUNCTION scgdinfo
END INTERFACE
sfgdinfo = scgdinfo(id, name, sz, nt, nattr, len(name))
return
end
C----------------------------------------------------------------------
C Name: sfscatt
C Purpose: create (or modify an existing) char attribute
C Inputs: id: id of object to attribute-ize
C Outputs: name, nt, count, data
C Returns: 0 on success, -1 on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfscatt(id,name,nt,count,data)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfscatt
!MS$endif
character*(*) name
character data(*)
integer nt, count, len
C integer scscatt
INTERFACE
INTEGER FUNCTION scscatt(id,name, nt, count,data, nmlen)
!MS$ATTRIBUTES C, reference, alias: '_SCSCATT' :: scscatt
!DEC$ ATTRIBUTES reference :: name,data
integer id, nt, count, nmlen
character*(*) name
character data(*)
END FUNCTION scscatt
END INTERFACE
sfscatt = scscatt(id,name,nt,count,data,len(name))
return
end
C----------------------------------------------------------------------
C Name: sfsnatt
C Purpose: create (or modify an existing) numeric attribute
C Inputs: id: id of object to attribute-ize
C Outputs: name, nt, count, data
C Returns: 0 on success, -1 on failure with error set
C Users: HDF Fortran programmers
C----------------------------------------------------------------------
integer function sfsnatt(id, name, nt, count, data)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfsnatt
!MS$endif
character*(*) name
integer nt, data, count, len
C integer scsnatt
INTERFACE
INTEGER FUNCTION scsnatt(id,name, nt, count,data, nmlen)
!MS$ATTRIBUTES C, reference, alias: '_SCSNATT' :: scsnatt
!DEC$ ATTRIBUTES reference :: name
integer id, nt, count, data, nmlen
character*(*) name
END FUNCTION scsnatt
END INTERFACE
sfsnatt = scsnatt(id, name, nt, count, data, len(name))
return
end
C----------------------------------------------------------------------
C Name: sfsattr
C Purpose: for backward compatability. Calls scsattr to
C create (or modify an existing) attribute
C Inputs: id: id of object to attribute-ize
C Outputs: name, nt, count, data
C Returns: 0 on success, -1 on failure with error set
C Users: HDF Fortran programmers
C Remarks: This function should be phased out in the future.
C----------------------------------------------------------------------
integer function sfsattr(id, name, nt, count, data)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfsattr
!MS$endif
character*(*) name, data
integer nt, len, count
C integer scsattr
INTERFACE
INTEGER FUNCTION scsattr(id,name, nt, count,data, nmlen)
!MS$ATTRIBUTES C, reference, alias: '_SCSATTR' :: scsattr
!DEC$ ATTRIBUTES reference :: name,data
integer id, nt, count, nmlen
character*(*) name, data
END FUNCTION scsattr
END INTERFACE
sfsattr = scsattr(id, name, nt, count, data, len(name))
return
end
C----------------------------------------------------------------------
C Name: sffattr
C Purpose: call scfattr, find an attribute
C Inputs: id: Object to look at
C name: name of attribute
C Returns: attribute number on success, FAIL on failure with error set
C Users: Fortran stub routine
C----------------------------------------------------------------------
integer function sffattr(id, name)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sffattr
!MS$endif
character*(*) name
integer id, len
C integer scfattr
INTERFACE
INTEGER FUNCTION scfattr(id,name, nmlen)
!MS$ATTRIBUTES C, reference, alias: '_SCFATTR' :: scfattr
!DEC$ ATTRIBUTES reference :: name
integer id, nmlen
character*(*) name
END FUNCTION scfattr
END INTERFACE
sffattr = scfattr(id, name, len(name))
return
end
C----------------------------------------------------------------------
C Name: sfid2ref
C Purpose: call scid2ref, map an id to ref
C Inputs: id: variable id
C Returns: refernce number on success, FAIL on failure with error set
C Users: Fortran stub routine
C----------------------------------------------------------------------
integer function sfid2ref(id)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfid2ref
!MS$endif
integer id
C integer scid2ref
INTERFACE
INTEGER FUNCTION scid2ref(id)
!MS$ATTRIBUTES C, reference, alias: '_SCID2REF' :: scid2ref
integer id
END FUNCTION scid2ref
END INTERFACE
sfid2ref = scid2ref(id)
return
end
C----------------------------------------------------------------------
C Name: sfref2index
C Purpose: call scr2idx, map an ref to index
C Inputs: id: variable id
C ref: reference number
C Returns: index on success, FAIL on failure with error set
C Users: Fortran stub routine
C----------------------------------------------------------------------
integer function sfref2index(id, ref)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfref2index
!MS$endif
integer id, ref
C integer scr2idx
INTERFACE
INTEGER FUNCTION scr2idx(id, ref)
!MS$ATTRIBUTES C, reference, alias: '_SCR2IDX' :: scr2idx
integer id, ref
END FUNCTION scr2idx
END INTERFACE
sfref2index = scr2idx(id, ref)
return
end
C----------------------------------------------------------------------
C Name: sfiscvar
C Purpose: call sciscvar to see if a dataset is a coordinate var
C Inputs: id: variable id
C Returns: TRUE/FALSE
C Users: Fortran stub routine
C----------------------------------------------------------------------
integer function sfiscvar(id)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfiscvar
!MS$endif
integer id
C integer sciscvar
INTERFACE
INTEGER FUNCTION sciscvar(id)
!MS$ATTRIBUTES C, reference, alias: '_SCISCVAR' :: sciscvar
integer id
END FUNCTION sciscvar
END INTERFACE
sfiscvar = sciscvar(id)
return
end
C----------------------------------------------------------------------
C Name: sfsextf
C Purpose: call scsextf to store data in an external file
C Inputs: id: sds id
C fname: name of external file
C offset: Number of bytes from the beginning of the
C external file to where the data starts
C Returns: 0 on success, FAIL on failure with error set
C Users: Fortran stub routine
C----------------------------------------------------------------------
integer function sfsextf(id, fname, offset)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfsextf
!MS$endif
character*(*) fname
integer id, offset, len
C integer scsextf
INTERFACE
INTEGER FUNCTION scsextf(id, fname, offset, nmlen)
!MS$ATTRIBUTES C, reference, alias: '_SCSEXTF' :: scsextf
!DEC$ ATTRIBUTES reference :: fname
integer id, offset, nmlen
character*(*) fname
END FUNCTION scsextf
END INTERFACE
sfsextf = scsextf(id, fname, offset, len(fname))
return
end
C----------------------------------------------------------------------
C Name: sfsnbit
C Purpose: call scsnbit, store data in n-bit data element
C Inputs: id: variable id
C start_bit: starting bit offset
C bit_len: # 0f bits to write
C sign_ext: whether to use the top bit as a sign extender
C fill_one: whether to fill the "background bits" with ones
C Returns: SUCCEED on success, FAIL on failure with error set
C Users: Fortran stub routine
C----------------------------------------------------------------------
integer function sfsnbit(id,start_bit,bit_len,sign_ext,fill_one)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfsnbit
!MS$endif
integer id,start_bit,bit_len,sign_ext,fill_one
C integer scsnbit
INTERFACE
INTEGER FUNCTION scsnbit(id,start_bit,bit_len,sign_ext,fill_one)
!MS$ATTRIBUTES C, reference, alias: '_SCSNBIT' :: scsnbit
integer id,start_bit,bit_len,sign_ext,fill_one
END FUNCTION scsnbit
END INTERFACE
sfsnbit = scsnbit(id,start_bit,bit_len,sign_ext,fill_one)
return
end
C----------------------------------------------------------------------
C Name: sfsacct
C Purpose: call scsacct, set tje access type
C Inputs: id: variable id
C type: the access type
C Returns: SUCCEED on success, FAIL on failure with error set
C Users: Fortran stub routine
C----------------------------------------------------------------------
integer function sfsacct(id, acctype)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfsacct
!MS$endif
integer id, acctype
C integer scsacct
INTERFACE
INTEGER FUNCTION scsacct(id, acctype)
!MS$ATTRIBUTES C, reference, alias: '_SCSACCT' :: scsacct
integer id, acctype
END FUNCTION scsacct
END INTERFACE
sfsacct = scsacct(id, acctype)
return
end
C----------------------------------------------------------------------
C Name: sfsdmvc
C Purpose: call scsdmvc, set dim value backward compatible type
C Inputs: id: dim id
C compmode: (defined in mfhdf.h)
C SD_DIMVAL_BW_COMP -- backward compatible
C SD_DIMVAL_BW_INCOMP -- incompatible
C Returns: SUCCEED on success, FAIL on failure with error set
C Users: Fortran stub routine
C----------------------------------------------------------------------
integer function sfsdmvc(id, comptype)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfsdmvc
!MS$endif
integer id, comptype
C integer scsdmvc
INTERFACE
INTEGER FUNCTION scsdmvc(id, comptype)
!MS$ATTRIBUTES C, reference, alias: '_SCSDMVC' :: scsdmvc
integer id, comptype
END FUNCTION scsdmvc
END INTERFACE
sfsdmvc = scsdmvc(id, comptype)
return
end
C----------------------------------------------------------------------
C Name: sfisdmvc
C Purpose: call scisdmvc, get dim value backward compatibility
C Inputs: id: dim id
C Returns: SD_DIMVAL_BW_COMP(1) -- backward compatible
C SD_DIMVAL_BW_INCOMP(0) -- incompatible
C FAIL(-1) on failure with error set
C Users: Fortran stub routine
C----------------------------------------------------------------------
integer function sfisdmvc(id)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfisdmvc
!MS$endif
integer id
C integer scisdmvc
INTERFACE
INTEGER FUNCTION scisdmvc(id)
!MS$ATTRIBUTES C, reference, alias: '_SCISDMVC' :: scisdmvc
integer id
END FUNCTION scisdmvc
END INTERFACE
sfisdmvc = scisdmvc(id)
return
end
C----------------------------------------------------------------------
C Name: sfsflmd
C Purpose: call scsflmd, set file fill mode
C Inputs: id: file id
C fillmode: desired fill mode;
C SD_FILL(default) or SD_NOFILL.
C Returns: the current( before the new mode is set) fill mode;
C FAIL on failure with error set
C Users: Fortran stub routine
C----------------------------------------------------------------------
integer function sfsflmd(file_id, fillmode)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfsflmd
!MS$endif
integer file_id, fillmode
C integer scsflmd
INTERFACE
INTEGER FUNCTION scsflmd(file_id, fillmode)
!MS$ATTRIBUTES C, reference, alias: '_SCSFLMD' :: scsflmd
integer file_id, fillmode
END FUNCTION scsflmd
END INTERFACE
sfsflmd = scsflmd(file_id, fillmode)
return
end
C-------------------------------------------------------------------------
C Name: sfgichnk
C Purpose: get Info on SDS
C Inputs: id - data set ID
C Outputs: dim_length - chunk dimensions (if any)
C comp_flag:
C -1 - SDS is non-chunked
C 0 - SDS is chunked without compression
C 1 - SDS is chunked and compressed with
C RLE, GZIP or SKPHUFF
C 2 - SDS is chunked and compressed with
C NBIT
C Returns: 0 on success, -1 on failure
C Calls: scgichnk (C stub for SD setchunk function)
C-------------------------------------------------------------------------
INTEGER function sfgichnk(id, dim_length, comp_flag)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfgichnk
!MS$endif
INTEGER id, dim_length(*), comp_flag
C INTEGER scgichnk
INTERFACE
INTEGER FUNCTION scgichnk(id, dim_length, comp_flag)
!MS$ATTRIBUTES C, reference, alias: '_SCGICHNK' :: scgichnk
integer id, dim_length(*), comp_flag
END FUNCTION scgichnk
END INTERFACE
sfgichnk = scgichnk(id, dim_length, comp_flag)
return
end
C-------------------------------------------------------------------------
C Name: sfrcchnk
C Purpose: read the specified chunk of CHARACTER data to the SDS
C Inputs: id - data set ID
C start - chunk coordinates
C char_data - buffer the data will be read into
C Returns: 0 on success, -1 on failure
C Calls: scrcchnk (C stub for SDwriteChunk function)
C Users: HDF Fortran programmers
C-------------------------------------------------------------------------
INTEGER function sfrcchnk(id, start, char_data)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfrcchnk
!MS$endif
C
INTEGER id, start(*)
CHARACTER*(*) char_data(*)
C INTEGER scrcchnk
INTERFACE
INTEGER FUNCTION scrcchnk(id, start, char_data)
!MS$ATTRIBUTES C, reference, alias: '_SCRCCHNK' :: scrcchnk
!DEC$ ATTRIBUTES reference :: char_data
integer id, start(*)
character*(*) char_data(*)
END FUNCTION scrcchnk
END INTERFACE
C
sfrcchnk = scrcchnk(id, start, char_data)
C
return
end
C-------------------------------------------------------------------------
C Name: sfrchnk
C Purpose: read the specified chunk of NUMERIC data to the SDS
C Inputs: id - data set ID
C start - chunk coordinates
C num_data - buffer the numeric data will be read into
C Returns: 0 on success, -1 on failure
C Calls: scrchnk (C stub for SDwriteChunk function)
C Users: HDF Fortran programmers
C-------------------------------------------------------------------------
INTEGER function sfrchnk(id, start, num_data)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfrchnk
!MS$endif
C
INTEGER id, start(*), num_data(*)
C INTEGER scrchnk
INTERFACE
INTEGER FUNCTION scrchnk(id, start, num_data)
!MS$ATTRIBUTES C, reference, alias: '_SCRCHNK' :: scrchnk
integer id, start(*), num_data(*)
END FUNCTION scrchnk
END INTERFACE
C
sfrchnk = scrchnk(id, start, num_data)
C
return
end
C-------------------------------------------------------------------------
C Name: sfscchnk
C Purpose: set the maximum number of chunks to cache
C Inputs: id - data set ID
C maxcache - max number of chunks to cache
C flags - flags =0, HDF_CACHEALL
C Currently only 0 can be passed.
C Returns: 0 on success, -1 on failure
C Calls: scscchnk (C stub for SDsetchunkcache function)
C Users: HDF Fortran programmers
C-------------------------------------------------------------------------
INTEGER function sfscchnk(id, maxcache, flags)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfscchnk
!MS$endif
C
INTEGER id, maxcache, flags
C INTEGER scscchnk
INTERFACE
INTEGER FUNCTION scscchnk(id, maxcache, flags)
!MS$ATTRIBUTES C, reference, alias: '_SCSCCHNK' :: scscchnk
integer id, maxcache, flags
END FUNCTION scscchnk
END INTERFACE
C
sfscchnk = scscchnk(id, maxcache, flags)
C
return
end
C-------------------------------------------------------------------------
C Name: sfschnk
C Purpose: make the SDS a chunked SDS
C Inputs: id - data set ID
C dim_length - chunk dimensions
C comp_type - type of compression
C supports the following compression types:
C ( see hcomp.h file)
C COMP_CODE_NONE = 0
C COMP_CODE_RLE = 1
C COMP_CODE_NBIT = 2
C COMP_CODE_SKPHUFF = 3
C COMP_CODE_DEFLATE = 4
C comp_prm - compression parameters array
C For
C Adaptive Huffman
C comp_prm(1) = skphuff_skp_size
C GZIP
C comp_prm(1) = deflate_level
C NBIT
C comp_prm(1) = nbit_sign_ext
C comp_prm(2) = nbit_fill_one
C comp_prm(3) = nbit_start_bit
C comp_prm(4) = nbit_bit_len
C
C NOTE: IT IS USER's responsibility to pass correct compression
C parameters for each type of compression
C
C
C Returns: 0 on success, -1 on failure
C Calls: scschnk (C stub for SD setchunk function)
C-------------------------------------------------------------------------
INTEGER function sfschnk(id, dim_length, comp_type,comp_prm)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfschnk
!MS$endif
INTEGER id, dim_length(*), comp_type, comp_prm(*)
C INTEGER scschnk
INTERFACE
INTEGER FUNCTION scschnk(id, dim_length, comp_type, comp_prm)
!MS$ATTRIBUTES C, reference, alias: '_SCSCHNK' :: scschnk
integer id, dim_length(*), comp_type, comp_prm(*)
END FUNCTION scschnk
END INTERFACE
sfschnk = scschnk(id, dim_length, comp_type, comp_prm)
return
end
C-------------------------------------------------------------------------
C Name: sfwcchnk
C Purpose: write the specified chunk of CHARACTER data to the SDS
C Inputs: id - data set ID
C start - chunk coordinates
C char_data - buffer containing data to be written
C Returns: 0 on success, -1 on failure
C Calls: scwcchnk (C stub for SDwriteChunk function)
C Users: HDF Fortran programmers
C-------------------------------------------------------------------------
INTEGER function sfwcchnk(id, start, char_data)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfwcchnk
!MS$endif
C
INTEGER id, start(*)
CHARACTER*(*) char_data(*)
C INTEGER scwcchnk
INTERFACE
INTEGER FUNCTION scwcchnk(id, start, char_data)
!MS$ATTRIBUTES C, reference, alias: '_SCWCCHNK' :: scWcchnk
!DEC$ ATTRIBUTES reference :: char_data
integer id, start(*)
character*(*) char_data(*)
END FUNCTION scwcchnk
END INTERFACE
C
sfwcchnk = scwcchnk(id, start, char_data)
C
return
end
C-------------------------------------------------------------------------
C Name: sfwchnk
C Purpose: write the specified chunk of NUMERIC data to the SDS
C Inputs: id - data set ID
C start - chunk coordinates
C num_data - buffer containing data to be written
C Returns: 0 on success, -1 on failure
C Calls: scwchnk (C stub for SDwriteChunk function)
C Users: HDF Fortran programmers
C-------------------------------------------------------------------------
INTEGER function sfwchnk(id, start, num_data)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfwchnk
!MS$endif
C
INTEGER id, start(*), num_data(*)
C INTEGER scwchnk
INTERFACE
INTEGER FUNCTION scwchnk(id, start, num_data)
!MS$ATTRIBUTES C, reference, alias: '_SCWCHNK' :: scwchnk
integer id, start(*), num_data(*)
END FUNCTION scwchnk
END INTERFACE
C
sfwchnk = scwchnk(id, start, num_data)
C
return
end
C-------------------------------------------------------------------------
C Name: sfscompress
C Purpose: compress SDS
C Inputs: id - data set ID
C comp_type - type of compression
C supports the following compression types:
C ( see hcomp.h file)
C COMP_CODE_NONE = 0
C COMP_CODE_RLE =1
C COMP_CODE_SKPHUFF = 3
C COMP_CODE_DEFLATE = 4
C comp_prm - compression parameter array:
C comp_prm(1) = deflate_level for GZIP
C comp_prm(1) = skphuff_skp_size for ADAPTIVE HUFFMAN
C NOTE: IT IS USER's responsibility to pass correct compression
C parameters for each type of compression
C
C Returns: 0 on success, -1 on failure
C Calls: scscompress (C stub for SD setchunk function)
C-------------------------------------------------------------------------
INTEGER function sfscompress(id, comp_type,comp_prm)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfscompress
!MS$endif
INTEGER id, comp_type, comp_prm(*)
C INTEGER scscompress
INTERFACE
INTEGER FUNCTION scscompress(id, comp_type, comp_prm)
!MS$ATTRIBUTES C, reference, alias: '_SCSCOMPRESS' :: scscompress
integer id, comp_type, comp_prm(*)
END FUNCTION sc scompress
END INTERFACE
sfscompress = scscompress(id, comp_type, comp_prm)
return
end
C-------------------------------------------------------------------------
C Name: sfisrcrd
C Purpose: checkes if SDS is appendable ,i.e, has unlimited
C dimension
C Inputs: id - data set ID
C Returns: 1 if true, 0 otherwise
C Calls: scisrcrd (C stub for SDisrecord function)
C Users: HDF Fortran programmers
C-------------------------------------------------------------------------
INTEGER function sfisrcrd(id)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfisrcrd
!MS$endif
C
INTEGER id
INTERFACE
INTEGER FUNCTION scisrcrd(id)
!MS$ATTRIBUTES C, reference, alias: '_SCISRCRD' :: scisrcrd
integer id
END FUNCTION scisrcrd
END INTERFACE
C
sfisrcrd = scisrcrd(id)
C
return
end
C-------------------------------------------------------------------------
C Name: sfsblsz
C Purpose: sets block size for writing unlimited SDS
C Inputs: id - data set ID
C block_size - block size in bytes
C Returns: 0 on success, -1 on failure
C Calls: scsblsz (C stub for SDsetblocksize function)
C Users: HDF Fortran programmers
C-------------------------------------------------------------------------
INTEGER function sfsblsz(id, block_size)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfsblsz
!MS$endif
C
INTEGER id, block_size
INTERFACE
INTEGER FUNCTION scsblsz(id, block_size)
!MS$ATTRIBUTES C, reference, alias: '_SCSBLSZ' :: scsblsz
integer id, block_size
END FUNCTION scsblsz
END INTERFACE
C
sfsblsz = scsblsz(id, block_size)
C
return
end
C-------------------------------------------------------------------------
C Name: sfchempty
C Purpose: checks whether an SDS is empty ( data has not been written)
C Inputs: id - data set ID
C Outputs: flag - 1 if SDS is empty, 0 otherwise
C Returns: 0 on success, -1 on failure
C Calls: scchempty (C stub for SDcheckempty function)
C Users: HDF Fortran programmers
C-------------------------------------------------------------------------
INTEGER function sfchempty(id, flag)
!MS$if defined(BUILD_HDF_DLL)
!MS$attributes dllexport :: sfchempty
!MS$endif
C
INTEGER id, flag
C INTEGER scchempty
C
INTERFACE
INTEGER FUNCTION scchempty(id, flag)
!MS$ATTRIBUTES C, reference, alias: '_SCCHEMPTY' :: scchempty
integer id, flag
END FUNCTION scchempty
END INTERFACE
sfchempty = scchempty(id, flag)
C
return
end
|