1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855
|
<!DOCTYPE html>
<html>
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Octave NetCDF - A NetCDF interface for Octave</title>
<meta name="description" content="Octave NetCDF - A NetCDF interface for Octave">
<meta name="keywords" content="Octave NetCDF - A NetCDF interface for Octave">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link href="#Top" rel="start" title="Top">
<link href="#Index" rel="index" title="Index">
<link href="#SEC_Contents" rel="contents" title="Table of Contents">
<link href="#Installing-and-loading" rel="next" title="Installing and loading">
<style type="text/css">
<!--
a.summary-letter-printindex {text-decoration: none}
div.center {text-align:center}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
pre.display-preformatted {font-family: inherit}
strong.def-name {font-family: monospace; font-weight: bold; font-size: larger}
td.printindex-index-entry {vertical-align: top}
td.printindex-index-section {vertical-align: top; padding-left: 1em}
th.entries-header-printindex {text-align:left}
th.sections-header-printindex {text-align:left; padding-left: 1em}
ul.mark-bullet {list-style-type: disc}
ul.toc-numbered-mark {list-style: none}
-->
</style>
<link rel="stylesheet" type="text/css" href="octave-netcdf.css">
</head>
<body lang="en">
<div class="top-level-extent" id="Top">
<h1 class="top" id="Introduction">Introduction</h1>
<p>The Octave NetCDF toolkit is a set of NetCDF routines for GNU Octave
</p>
<div class="element-contents" id="SEC_Contents">
<h2 class="contents-heading">Table of Contents</h2>
<div class="contents">
<ul class="toc-numbered-mark">
<li><a id="toc-Installing-and-loading-1" href="#Installing-and-loading">1 Installing and loading</a>
<ul class="toc-numbered-mark">
<li><a id="toc-Online-Direct-install" href="#Online-Direct-install">1.1 Online Direct install</a></li>
<li><a id="toc-Off_002dline-install" href="#Off_002dline-install">1.2 Off-line install</a></li>
<li><a id="toc-Loading" href="#Loading">1.3 Loading</a></li>
</ul></li>
<li><a id="toc-Basic-Usage-Overview-1" href="#Basic-Usage-Overview">2 Basic Usage Overview</a>
<ul class="toc-numbered-mark">
<li><a id="toc-High-level-functionality" href="#High-level-functionality">2.1 High level functionality</a></li>
<li><a id="toc-Low-level-functionality" href="#Low-level-functionality">2.2 Low level functionality</a></li>
</ul></li>
<li><a id="toc-Function-Reference-1" href="#Function-Reference">3 Function Reference</a>
<ul class="toc-numbered-mark">
<li><a id="toc-High_002dlevel-functions-1" href="#High_002dlevel-functions">3.1 High-level functions</a>
<ul class="toc-numbered-mark">
<li><a id="toc-nccreate" href="#nccreate">3.1.1 nccreate</a></li>
<li><a id="toc-ncdisp" href="#ncdisp">3.1.2 ncdisp</a></li>
<li><a id="toc-ncinfo" href="#ncinfo">3.1.3 ncinfo</a></li>
<li><a id="toc-ncread" href="#ncread">3.1.4 ncread</a></li>
<li><a id="toc-ncreadatt" href="#ncreadatt">3.1.5 ncreadatt</a></li>
<li><a id="toc-ncwrite" href="#ncwrite">3.1.6 ncwrite</a></li>
<li><a id="toc-ncwriteatt" href="#ncwriteatt">3.1.7 ncwriteatt</a></li>
<li><a id="toc-ncwriteschema" href="#ncwriteschema">3.1.8 ncwriteschema</a></li>
</ul></li>
<li><a id="toc-Low_002dlevel-functions-_0028Deprecated_0029-1" href="#Low_002dlevel-functions-_0028Deprecated_0029">3.2 Low-level functions (Deprecated)</a>
<ul class="toc-numbered-mark">
<li><a id="toc-netcdf_005fabort" href="#netcdf_005fabort">3.2.1 netcdf_abort</a></li>
<li><a id="toc-netcdf_005fclose" href="#netcdf_005fclose">3.2.2 netcdf_close</a></li>
<li><a id="toc-netcdf_005fcopyAtt" href="#netcdf_005fcopyAtt">3.2.3 netcdf_copyAtt</a></li>
<li><a id="toc-netcdf_005fcreate" href="#netcdf_005fcreate">3.2.4 netcdf_create</a></li>
<li><a id="toc-netcdf_005fdefDim" href="#netcdf_005fdefDim">3.2.5 netcdf_defDim</a></li>
<li><a id="toc-netcdf_005fdefGrp" href="#netcdf_005fdefGrp">3.2.6 netcdf_defGrp</a></li>
<li><a id="toc-netcdf_005fdefVar" href="#netcdf_005fdefVar">3.2.7 netcdf_defVar</a></li>
<li><a id="toc-netcdf_005fdefVarChunking" href="#netcdf_005fdefVarChunking">3.2.8 netcdf_defVarChunking</a></li>
<li><a id="toc-netcdf_005fdefVarDeflate" href="#netcdf_005fdefVarDeflate">3.2.9 netcdf_defVarDeflate</a></li>
<li><a id="toc-netcdf_005fdefVarFill" href="#netcdf_005fdefVarFill">3.2.10 netcdf_defVarFill</a></li>
<li><a id="toc-netcdf_005fdefVarFletcher32" href="#netcdf_005fdefVarFletcher32">3.2.11 netcdf_defVarFletcher32</a></li>
<li><a id="toc-netcdf_005fdefVlen" href="#netcdf_005fdefVlen">3.2.12 netcdf_defVlen</a></li>
<li><a id="toc-netcdf_005fdelAtt" href="#netcdf_005fdelAtt">3.2.13 netcdf_delAtt</a></li>
<li><a id="toc-netcdf_005fendDef" href="#netcdf_005fendDef">3.2.14 netcdf_endDef</a></li>
<li><a id="toc-netcdf_005fgetAtt" href="#netcdf_005fgetAtt">3.2.15 netcdf_getAtt</a></li>
<li><a id="toc-netcdf_005fgetChunkCache" href="#netcdf_005fgetChunkCache">3.2.16 netcdf_getChunkCache</a></li>
<li><a id="toc-netcdf_005fgetConstant" href="#netcdf_005fgetConstant">3.2.17 netcdf_getConstant</a></li>
<li><a id="toc-netcdf_005fgetConstantNames" href="#netcdf_005fgetConstantNames">3.2.18 netcdf_getConstantNames</a></li>
<li><a id="toc-netcdf_005fgetVar" href="#netcdf_005fgetVar">3.2.19 netcdf_getVar</a></li>
<li><a id="toc-netcdf_005finq" href="#netcdf_005finq">3.2.20 netcdf_inq</a></li>
<li><a id="toc-netcdf_005finqAtt" href="#netcdf_005finqAtt">3.2.21 netcdf_inqAtt</a></li>
<li><a id="toc-netcdf_005finqAttID" href="#netcdf_005finqAttID">3.2.22 netcdf_inqAttID</a></li>
<li><a id="toc-netcdf_005finqAttName" href="#netcdf_005finqAttName">3.2.23 netcdf_inqAttName</a></li>
<li><a id="toc-netcdf_005finqDim" href="#netcdf_005finqDim">3.2.24 netcdf_inqDim</a></li>
<li><a id="toc-netcdf_005finqDimID" href="#netcdf_005finqDimID">3.2.25 netcdf_inqDimID</a></li>
<li><a id="toc-netcdf_005finqDimIDs" href="#netcdf_005finqDimIDs">3.2.26 netcdf_inqDimIDs</a></li>
<li><a id="toc-netcdf_005finqFormat" href="#netcdf_005finqFormat">3.2.27 netcdf_inqFormat</a></li>
<li><a id="toc-netcdf_005finqGrpFullNcid" href="#netcdf_005finqGrpFullNcid">3.2.28 netcdf_inqGrpFullNcid</a></li>
<li><a id="toc-netcdf_005finqGrpName" href="#netcdf_005finqGrpName">3.2.29 netcdf_inqGrpName</a></li>
<li><a id="toc-netcdf_005finqGrpNameFull" href="#netcdf_005finqGrpNameFull">3.2.30 netcdf_inqGrpNameFull</a></li>
<li><a id="toc-netcdf_005finqGrpParent" href="#netcdf_005finqGrpParent">3.2.31 netcdf_inqGrpParent</a></li>
<li><a id="toc-netcdf_005finqGrps" href="#netcdf_005finqGrps">3.2.32 netcdf_inqGrps</a></li>
<li><a id="toc-netcdf_005finqLibVers" href="#netcdf_005finqLibVers">3.2.33 netcdf_inqLibVers</a></li>
<li><a id="toc-netcdf_005finqNcid" href="#netcdf_005finqNcid">3.2.34 netcdf_inqNcid</a></li>
<li><a id="toc-netcdf_005finqUnlimDims" href="#netcdf_005finqUnlimDims">3.2.35 netcdf_inqUnlimDims</a></li>
<li><a id="toc-netcdf_005finqUserType" href="#netcdf_005finqUserType">3.2.36 netcdf_inqUserType</a></li>
<li><a id="toc-netcdf_005finqVar" href="#netcdf_005finqVar">3.2.37 netcdf_inqVar</a></li>
<li><a id="toc-netcdf_005finqVarChunking" href="#netcdf_005finqVarChunking">3.2.38 netcdf_inqVarChunking</a></li>
<li><a id="toc-netcdf_005finqVarDeflate" href="#netcdf_005finqVarDeflate">3.2.39 netcdf_inqVarDeflate</a></li>
<li><a id="toc-netcdf_005finqVarFill" href="#netcdf_005finqVarFill">3.2.40 netcdf_inqVarFill</a></li>
<li><a id="toc-netcdf_005finqVarFletcher32" href="#netcdf_005finqVarFletcher32">3.2.41 netcdf_inqVarFletcher32</a></li>
<li><a id="toc-netcdf_005finqVarID" href="#netcdf_005finqVarID">3.2.42 netcdf_inqVarID</a></li>
<li><a id="toc-netcdf_005finqVarIDs" href="#netcdf_005finqVarIDs">3.2.43 netcdf_inqVarIDs</a></li>
<li><a id="toc-netcdf_005finqVlen" href="#netcdf_005finqVlen">3.2.44 netcdf_inqVlen</a></li>
<li><a id="toc-netcdf_005fopen" href="#netcdf_005fopen">3.2.45 netcdf_open</a></li>
<li><a id="toc-netcdf_005fputAtt" href="#netcdf_005fputAtt">3.2.46 netcdf_putAtt</a></li>
<li><a id="toc-netcdf_005fputVar" href="#netcdf_005fputVar">3.2.47 netcdf_putVar</a></li>
<li><a id="toc-netcdf_005freDef" href="#netcdf_005freDef">3.2.48 netcdf_reDef</a></li>
<li><a id="toc-netcdf_005frenameAtt" href="#netcdf_005frenameAtt">3.2.49 netcdf_renameAtt</a></li>
<li><a id="toc-netcdf_005frenameDim" href="#netcdf_005frenameDim">3.2.50 netcdf_renameDim</a></li>
<li><a id="toc-netcdf_005frenameVar" href="#netcdf_005frenameVar">3.2.51 netcdf_renameVar</a></li>
<li><a id="toc-netcdf_005fsetChunkCache" href="#netcdf_005fsetChunkCache">3.2.52 netcdf_setChunkCache</a></li>
<li><a id="toc-netcdf_005fsetDefaultFormat" href="#netcdf_005fsetDefaultFormat">3.2.53 netcdf_setDefaultFormat</a></li>
<li><a id="toc-netcdf_005fsetFill" href="#netcdf_005fsetFill">3.2.54 netcdf_setFill</a></li>
<li><a id="toc-netcdf_005fsync" href="#netcdf_005fsync">3.2.55 netcdf_sync</a></li>
</ul></li>
<li><a id="toc-Low_002dlevel-functions-1" href="#Low_002dlevel-functions">3.3 Low-level functions</a>
<ul class="toc-numbered-mark">
<li><a id="toc-netcdf_002eabort" href="#netcdf_002eabort">3.3.1 netcdf.abort</a></li>
<li><a id="toc-netcdf_002eclose" href="#netcdf_002eclose">3.3.2 netcdf.close</a></li>
<li><a id="toc-netcdf_002ecopyAtt" href="#netcdf_002ecopyAtt">3.3.3 netcdf.copyAtt</a></li>
<li><a id="toc-netcdf_002ecreate" href="#netcdf_002ecreate">3.3.4 netcdf.create</a></li>
<li><a id="toc-netcdf_002edefDim" href="#netcdf_002edefDim">3.3.5 netcdf.defDim</a></li>
<li><a id="toc-netcdf_002edefGrp" href="#netcdf_002edefGrp">3.3.6 netcdf.defGrp</a></li>
<li><a id="toc-netcdf_002edefVar" href="#netcdf_002edefVar">3.3.7 netcdf.defVar</a></li>
<li><a id="toc-netcdf_002edefVarChunking" href="#netcdf_002edefVarChunking">3.3.8 netcdf.defVarChunking</a></li>
<li><a id="toc-netcdf_002edefVarDeflate" href="#netcdf_002edefVarDeflate">3.3.9 netcdf.defVarDeflate</a></li>
<li><a id="toc-netcdf_002edefVarFill" href="#netcdf_002edefVarFill">3.3.10 netcdf.defVarFill</a></li>
<li><a id="toc-netcdf_002edefVarFletcher32" href="#netcdf_002edefVarFletcher32">3.3.11 netcdf.defVarFletcher32</a></li>
<li><a id="toc-netcdf_002edefVlen" href="#netcdf_002edefVlen">3.3.12 netcdf.defVlen</a></li>
<li><a id="toc-netcdf_002edelAtt" href="#netcdf_002edelAtt">3.3.13 netcdf.delAtt</a></li>
<li><a id="toc-netcdf_002eendDef" href="#netcdf_002eendDef">3.3.14 netcdf.endDef</a></li>
<li><a id="toc-netcdf_002egetAtt" href="#netcdf_002egetAtt">3.3.15 netcdf.getAtt</a></li>
<li><a id="toc-netcdf_002egetChunkCache" href="#netcdf_002egetChunkCache">3.3.16 netcdf.getChunkCache</a></li>
<li><a id="toc-netcdf_002egetConstant" href="#netcdf_002egetConstant">3.3.17 netcdf.getConstant</a></li>
<li><a id="toc-netcdf_002egetConstantNames" href="#netcdf_002egetConstantNames">3.3.18 netcdf.getConstantNames</a></li>
<li><a id="toc-netcdf_002egetVar" href="#netcdf_002egetVar">3.3.19 netcdf.getVar</a></li>
<li><a id="toc-netcdf_002einq" href="#netcdf_002einq">3.3.20 netcdf.inq</a></li>
<li><a id="toc-netcdf_002einqAtt" href="#netcdf_002einqAtt">3.3.21 netcdf.inqAtt</a></li>
<li><a id="toc-netcdf_002einqAttID" href="#netcdf_002einqAttID">3.3.22 netcdf.inqAttID</a></li>
<li><a id="toc-netcdf_002einqAttName" href="#netcdf_002einqAttName">3.3.23 netcdf.inqAttName</a></li>
<li><a id="toc-netcdf_002einqDim" href="#netcdf_002einqDim">3.3.24 netcdf.inqDim</a></li>
<li><a id="toc-netcdf_002einqDimID" href="#netcdf_002einqDimID">3.3.25 netcdf.inqDimID</a></li>
<li><a id="toc-netcdf_002einqDimIDs" href="#netcdf_002einqDimIDs">3.3.26 netcdf.inqDimIDs</a></li>
<li><a id="toc-netcdf_002einqFormat" href="#netcdf_002einqFormat">3.3.27 netcdf.inqFormat</a></li>
<li><a id="toc-netcdf_002einqGrpFullNcid" href="#netcdf_002einqGrpFullNcid">3.3.28 netcdf.inqGrpFullNcid</a></li>
<li><a id="toc-netcdf_002einqGrpName" href="#netcdf_002einqGrpName">3.3.29 netcdf.inqGrpName</a></li>
<li><a id="toc-netcdf_002einqGrpNameFull" href="#netcdf_002einqGrpNameFull">3.3.30 netcdf.inqGrpNameFull</a></li>
<li><a id="toc-netcdf_002einqGrpParent" href="#netcdf_002einqGrpParent">3.3.31 netcdf.inqGrpParent</a></li>
<li><a id="toc-netcdf_002einqGrps" href="#netcdf_002einqGrps">3.3.32 netcdf.inqGrps</a></li>
<li><a id="toc-netcdf_002einqLibVers" href="#netcdf_002einqLibVers">3.3.33 netcdf.inqLibVers</a></li>
<li><a id="toc-netcdf_002einqNcid" href="#netcdf_002einqNcid">3.3.34 netcdf.inqNcid</a></li>
<li><a id="toc-netcdf_002einqUnlimDims" href="#netcdf_002einqUnlimDims">3.3.35 netcdf.inqUnlimDims</a></li>
<li><a id="toc-netcdf_002einqUserType" href="#netcdf_002einqUserType">3.3.36 netcdf.inqUserType</a></li>
<li><a id="toc-netcdf_002einqVar" href="#netcdf_002einqVar">3.3.37 netcdf.inqVar</a></li>
<li><a id="toc-netcdf_002einqVarChunking" href="#netcdf_002einqVarChunking">3.3.38 netcdf.inqVarChunking</a></li>
<li><a id="toc-netcdf_002einqVarDeflate" href="#netcdf_002einqVarDeflate">3.3.39 netcdf.inqVarDeflate</a></li>
<li><a id="toc-netcdf_002einqVarFill" href="#netcdf_002einqVarFill">3.3.40 netcdf.inqVarFill</a></li>
<li><a id="toc-netcdf_002einqVarFletcher32" href="#netcdf_002einqVarFletcher32">3.3.41 netcdf.inqVarFletcher32</a></li>
<li><a id="toc-netcdf_002einqVarID" href="#netcdf_002einqVarID">3.3.42 netcdf.inqVarID</a></li>
<li><a id="toc-netcdf_002einqVarIDs" href="#netcdf_002einqVarIDs">3.3.43 netcdf.inqVarIDs</a></li>
<li><a id="toc-netcdf_002einqVlen" href="#netcdf_002einqVlen">3.3.44 netcdf.inqVlen</a></li>
<li><a id="toc-netcdf_002eopen" href="#netcdf_002eopen">3.3.45 netcdf.open</a></li>
<li><a id="toc-netcdf_002eputAtt" href="#netcdf_002eputAtt">3.3.46 netcdf.putAtt</a></li>
<li><a id="toc-netcdf_002eputVar" href="#netcdf_002eputVar">3.3.47 netcdf.putVar</a></li>
<li><a id="toc-netcdf_002ereDef" href="#netcdf_002ereDef">3.3.48 netcdf.reDef</a></li>
<li><a id="toc-netcdf_002erenameAtt" href="#netcdf_002erenameAtt">3.3.49 netcdf.renameAtt</a></li>
<li><a id="toc-netcdf_002erenameDim" href="#netcdf_002erenameDim">3.3.50 netcdf.renameDim</a></li>
<li><a id="toc-netcdf_002erenameVar" href="#netcdf_002erenameVar">3.3.51 netcdf.renameVar</a></li>
<li><a id="toc-netcdf_002esetChunkCache" href="#netcdf_002esetChunkCache">3.3.52 netcdf.setChunkCache</a></li>
<li><a id="toc-netcdf_002esetDefaultFormat" href="#netcdf_002esetDefaultFormat">3.3.53 netcdf.setDefaultFormat</a></li>
<li><a id="toc-netcdf_002esetFill" href="#netcdf_002esetFill">3.3.54 netcdf.setFill</a></li>
<li><a id="toc-netcdf_002esync" href="#netcdf_002esync">3.3.55 netcdf.sync</a></li>
</ul></li>
<li><a id="toc-Import-functions-_0028Deprecated_0029-1" href="#Import-functions-_0028Deprecated_0029">3.4 Import functions (Deprecated)</a>
<ul class="toc-numbered-mark">
<li><a id="toc-import_005fnetcdf" href="#import_005fnetcdf">3.4.1 import_netcdf</a></li>
</ul></li>
<li><a id="toc-Test-function-1" href="#Test-function">3.5 Test function</a>
<ul class="toc-numbered-mark">
<li><a id="toc-test_005fnetcdf" href="#test_005fnetcdf">3.5.1 test_netcdf</a></li>
</ul></li>
</ul></li>
<li><a id="toc-GNU-General-Public-License" href="#Copying">Appendix A GNU General Public License</a></li>
<li><a id="toc-Index-1" href="#Index" rel="index">Index</a></li>
</ul>
</div>
</div>
<hr>
<div class="chapter-level-extent" id="Installing-and-loading">
<h2 class="chapter" id="Installing-and-loading-1">1 Installing and loading</h2>
<a class="index-entry-id" id="index-Installing-and-loading"></a>
<p>The toolkit must be installed and then loaded to be used.
</p>
<p>It can be installed in <abbr class="acronym">GNU</abbr> Octave directly from the website,
or can be installed in an off-line mode via a downloaded tarball.
</p>
<p>The toolkit has a dependency on the netcdf library (<a class="url" href="https://www.unidata.ucar.edu/software/netcdf/">https://www.unidata.ucar.edu/software/netcdf/</a>),
so it must be installed in order to successfully install the toolkit.
</p>
<p>The toolkit must be then be loaded once per each <abbr class="acronym">GNU</abbr> Octave session in order to use its functionality.
</p>
<div class="section-level-extent" id="Online-Direct-install">
<h3 class="section">1.1 Online Direct install</h3>
<a class="index-entry-id" id="index-Online-install"></a>
<p>With an internet connection available, the package can be installed from
octave-forge using the following command within <abbr class="acronym">GNU</abbr> Octave:
</p>
<div class="example">
<pre class="example-preformatted">pkg install -forge netcdf
</pre></div>
<p>The latest released version of the toolkit will be downloaded and installed.
</p>
</div>
<div class="section-level-extent" id="Off_002dline-install">
<h3 class="section">1.2 Off-line install</h3>
<a class="index-entry-id" id="index-Off_002dline-install"></a>
<p>With the toolkit package already downloaded, and in the current directory when running
<abbr class="acronym">GNU</abbr> Octave, the package can be installed using the following command within <abbr class="acronym">GNU</abbr> Octave:
</p>
<div class="example">
<pre class="example-preformatted">pkg install netcdf-1.0.18.tar.gz
</pre></div>
</div>
<div class="section-level-extent" id="Loading">
<h3 class="section">1.3 Loading</h3>
<a class="index-entry-id" id="index-Loading"></a>
<p>Regardless of the method of installing the toolkit, in order to use its functions,
the toolkit must be loaded using the pkg load command:
</p>
<div class="example">
<pre class="example-preformatted">pkg load netcdf
</pre></div>
<p>The toolkit must be loaded on each <abbr class="acronym">GNU</abbr> Octave session.
</p>
<hr>
</div>
</div>
<div class="chapter-level-extent" id="Basic-Usage-Overview">
<h2 class="chapter" id="Basic-Usage-Overview-1">2 Basic Usage Overview</h2>
<a class="index-entry-id" id="index-Basic-Usage-Overview"></a>
<p>The toolkit provides high and level functionality for reading and
writing NetCDF format files.
</p>
<div class="section-level-extent" id="High-level-functionality">
<h3 class="section">2.1 High level functionality</h3>
<a class="index-entry-id" id="index-High-level-functionality"></a>
<p>The toolkit provides the following high level functions:
</p><ul class="itemize mark-bullet">
<li>nccreate
</li><li>ncdisp
</li><li>ncinfo
</li><li>ncreadatt
</li><li>ncread
</li><li>ncwriteatt
</li><li>ncwrite
</li><li>ncwriteschema
</li></ul>
</div>
<div class="section-level-extent" id="Low-level-functionality">
<h3 class="section">2.2 Low level functionality</h3>
<a class="index-entry-id" id="index-Low-level-functionality"></a>
<p>The package aims to implement the netcdf interface of MATLAB in GNU Octave, however <abbr class="acronym">GNU</abbr> Octave
does not support the import function.
</p>
<p>Functions can be used in netcdf_functionname format, or an emulated import can be done using the
import_netcdf script so that functions can be used in netcdf.functionname format.
</p>
<hr>
</div>
</div>
<div class="chapter-level-extent" id="Function-Reference">
<h2 class="chapter" id="Function-Reference-1">3 Function Reference</h2>
<a class="index-entry-id" id="index-Function-Reference"></a>
<p>The functions currently available in the toolkit are described below;
</p>
<hr>
<div class="section-level-extent" id="High_002dlevel-functions">
<h3 class="section" id="High_002dlevel-functions-1">3.1 High-level functions</h3>
<a class="index-entry-id" id="index-High_002dlevel-functions"></a>
<div class="subsection-level-extent" id="nccreate">
<h4 class="subsection">3.1.1 nccreate</h4>
<a class="index-entry-id" id="index-nccreate"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-nccreate_0028filename_002cvarname_0029"><span class="category-def">Function File: </span><strong class="def-name">nccreate(<var class="var">filename</var>,<var class="var">varname</var>)</strong></dt>
<dt class="deftypefnx def-cmd-deftypefn" id="index-nccreate_0028filename_002cvarname_002c_0022property_0022_002cvalue_002c_002e_002e_002e_0029"><span class="category-def">Function File: </span><strong class="def-name">nccreate(<var class="var">filename</var>,<var class="var">varname</var>,"property",<var class="var">value</var>,...)</strong></dt>
<dd>
<p>Create the variable <var class="var">varname</var> in the file <var class="var">filename</var>.
</p>
<h4 class="subsubheading" id="Properties">Properties</h4>
<p>The following properties can be used:
</p><ul class="itemize mark-bullet">
<li>"Dimensions": a cell array with the dimension names followed by their
length or Inf if the dimension is unlimited. If the property is omitted, a
scalar variable is created.
</li><li>"Datatype": a string with the Octave data type name
(see <code class="code">ncinfo</code> for the correspondence between Octave and NetCDF data
types). The default data type is a "double".
</li><li>"Format": This can be "netcdf4_classic" (default), "classic", "64bit"
or "netcdf4".
</li><li>"FillValue": the value used for undefined elements of the NetCDF
variable.
</li><li>"ChunkSize": the size of the data chunks. If omitted, the variable is
not chunked.
</li><li>"DeflateLevel": The deflate level for compression. It can be the string
"disable" (default) for no compression or an integer between 0 (no
compression) and 9 (maximum compression).
</li><li>"Shuffle": true for enabling the shuffle filter or false (default) for
disabling it.
</li></ul>
<h4 class="subsubheading" id="Example">Example</h4>
<div class="example">
<pre class="example-preformatted"> nccreate("test.nc","temp","Dimensions",{"lon",10,"lat",20},"Format","classic");
ncdisp("test.nc");
</pre></div>
<p><strong class="strong">See also:</strong> ncwrite.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="ncdisp">
<h4 class="subsection">3.1.2 ncdisp</h4>
<a class="index-entry-id" id="index-ncdisp"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-ncdisp-1"><span class="category-def">Function File: </span><strong class="def-name">ncdisp</strong> <code class="def-code-arguments">(<var class="var">filename</var>)</code></dt>
<dd><p>Display meta-data of the NetCDF file <var class="var">filename</var>
</p>
<h4 class="subsubheading" id="Example-1">Example</h4>
<div class="example">
<pre class="example-preformatted"> ncdisp("test.nc");
</pre></div>
<p><strong class="strong">See also:</strong> ncinfo.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="ncinfo">
<h4 class="subsection">3.1.3 ncinfo</h4>
<a class="index-entry-id" id="index-ncinfo"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-ncinfo-1"><span class="category-def">Function File: </span><code class="def-type"><var class="var">info</var> =</code> <strong class="def-name">ncinfo</strong> <code class="def-code-arguments">(<var class="var">filename</var>)</code></dt>
<dt class="deftypefnx def-cmd-deftypefn" id="index-ncinfo-2"><span class="category-def">Function File: </span><code class="def-type"><var class="var">info</var> =</code> <strong class="def-name">ncinfo</strong> <code class="def-code-arguments">(<var class="var">filename</var>, <var class="var">varname</var>)</code></dt>
<dt class="deftypefnx def-cmd-deftypefn" id="index-ncinfo-3"><span class="category-def">Function File: </span><code class="def-type"><var class="var">info</var> =</code> <strong class="def-name">ncinfo</strong> <code class="def-code-arguments">(<var class="var">filename</var>, <var class="var">groupname</var>)</code></dt>
<dd><p>Return information about an entire NetCDF file <var class="var">filename</var> (i.e. the root
group "/"), about the variable called <var class="var">varname</var> or the group called
<var class="var">groupname</var>.
</p>
<p>The structure <var class="var">info</var> has always the following fields:
</p><ul class="itemize mark-bullet">
<li><var class="var">Filename</var>: the name of the NetCDF file
</li><li><var class="var">Format</var>: one of the strings "CLASSIC", "64BIT", "NETCDF4"
or "NETCDF4_CLASSIC"
</li></ul>
<p>The structure <var class="var">info</var> has additional fields depending on whether a
group of variable is queried.
</p>
<h4 class="subsubheading" id="Groups">Groups</h4>
<p>Groups are returned as an array structure with the following fields:
</p>
<ul class="itemize mark-bullet">
<li><var class="var">Name</var>: the group name. The root group is named "/".
</li><li><var class="var">Dimensions</var>: a array structure with the dimensions.
</li><li><var class="var">Variables</var>: a array structure with the variables.
</li><li><var class="var">Attributes</var>: a array structure with global attributes.
</li><li><var class="var">Groups</var>: a array structure (one for each group) with the
same fields as this structure.
</li></ul>
<h4 class="subsubheading" id="Dimensions">Dimensions</h4>
<p>Dimensions are returned as an array structure with the following fields:
</p><ul class="itemize mark-bullet">
<li><var class="var">Name</var>: the name of the dimension
</li><li><var class="var">Length</var>: the length of the dimension
</li><li><var class="var">Unlimited</var>: true of the dimension has no fixed limited, false
</li></ul>
<h4 class="subsubheading" id="Variables">Variables</h4>
<p>Variables are returned as an array structure with the following fields:
</p><ul class="itemize mark-bullet">
<li><var class="var">Name</var>: the name of the dimension
</li><li><var class="var">Dimensions</var>: array structure of all dimensions of this variable
with the same structure as above.
</li><li><var class="var">Size</var>: array with the size of the variable
</li><li><var class="var">Datatype</var>: string with the corresponding octave data-type
(see below)
</li><li><var class="var">Attributes</var>: a array structure of attributes
</li><li><var class="var">FillValue</var>: the NetCDF fill value of the variable. If the fill
value is not defined, then this attribute is an empty array ([]).
</li><li><var class="var">DeflateLevel</var>: the NetCDF deflate level between 0 (no
compression) and 9 (maximum compression).
</li><li><var class="var">Shuffle</var>: is true if the shuffle filter is activated to improve
compression, otherwise false.
</li><li><var class="var">CheckSum</var>: is set to "fletcher32", if check-sums are used,
otherwise this field is not defined.
</li></ul>
<h4 class="subsubheading" id="Attributes">Attributes</h4>
<p>Attributes are returned as an array structure with the following fields:
</p><ul class="itemize mark-bullet">
<li><var class="var">Name</var>: the name of the attribute
</li><li><var class="var">Value</var>: the value of the attribute (with the corresponding type)
</li><li><var class="var">Unlimited</var>: true of the dimension has no fixed limited, false
</li></ul>
<h4 class="subsubheading" id="Data_002dtypes">Data-types</h4>
<p>The following the the correspondence between the Octave and NetCDF
data-types:
</p>
<table class="multitable">
<thead><tr><th width="50%">Octave type</th><th width="50%">NetCDF type</th></tr></thead>
<tbody><tr><td width="50%"><code class="code">int8</code></td><td width="50%"><code class="code">NC_BYTE</code></td></tr>
<tr><td width="50%"><code class="code">uint8</code></td><td width="50%"><code class="code">NC_UBYTE</code></td></tr>
<tr><td width="50%"><code class="code">int16</code></td><td width="50%"><code class="code">NC_SHORT</code></td></tr>
<tr><td width="50%"><code class="code">uint16</code></td><td width="50%"><code class="code">NC_USHORT</code></td></tr>
<tr><td width="50%"><code class="code">int32</code></td><td width="50%"><code class="code">NC_INT</code></td></tr>
<tr><td width="50%"><code class="code">uint32</code></td><td width="50%"><code class="code">NC_UINT</code></td></tr>
<tr><td width="50%"><code class="code">int64</code></td><td width="50%"><code class="code">NC_INT64</code></td></tr>
<tr><td width="50%"><code class="code">uint64</code></td><td width="50%"><code class="code">NC_UINT64</code></td></tr>
<tr><td width="50%"><code class="code">single</code></td><td width="50%"><code class="code">NC_FLOAT</code></td></tr>
<tr><td width="50%"><code class="code">double</code></td><td width="50%"><code class="code">NC_DOUBLE</code></td></tr>
<tr><td width="50%"><code class="code">char</code></td><td width="50%"><code class="code">NC_CHAR</code></td></tr>
</tbody>
</table>
<p>The output of <code class="code">ncinfo</code> can be used to create a NetCDF file with the same
meta-data using <code class="code">ncwriteschema</code>.
</p>
<p>Note: If there are no attributes (or variable or groups), the corresponding
field is an empty matrix and not an empty struct array for compatibility
with matlab.
</p>
<p><strong class="strong">See also:</strong> ncread,nccreate,ncwriteschema,ncdisp.
</p>
</dd></dl>
</div>
<div class="subsection-level-extent" id="ncread">
<h4 class="subsection">3.1.4 ncread</h4>
<a class="index-entry-id" id="index-ncread"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-ncread-1"><span class="category-def">Function File: </span><code class="def-type"><var class="var">x</var> =</code> <strong class="def-name">ncread</strong> <code class="def-code-arguments">(<var class="var">filename</var>, <var class="var">varname</var>)</code></dt>
<dt class="deftypefnx def-cmd-deftypefn" id="index-ncread-2"><span class="category-def">Function File: </span><code class="def-type"><var class="var">x</var> =</code> <strong class="def-name">ncread</strong> <code class="def-code-arguments">(<var class="var">filename</var>, <var class="var">varname</var>,<var class="var">start</var>,<var class="var">count</var>,<var class="var">stride</var>)</code></dt>
<dd>
<p>Read the variable <var class="var">varname</var> from the NetCDF file <var class="var">filename</var>.
</p>
<p>If <var class="var">start</var>,<var class="var">count</var> and <var class="var">stride</var> are present, a subset of the
variable is loaded. The parameter <var class="var">start</var> contains the starting indices
(1-based), <var class="var">count</var> is the number of elements and <var class="var">stride</var> the
increment between two successive elements. These parameters are vectors whose
length is equal to the number of dimension of the variable. Elements of
<var class="var">count</var> might be Inf which means that as many values as possible are
loaded.
</p>
<p>If the variable has the _FillValue attribute, then the corresponding values
are replaced by NaN (except for characters). NetCDF attributes scale_factor
(default 1) and add_offset (default 0) are use the transform the variable
during the loading:
</p>
<p>x = scale_factor * x_in_file + add_offset
</p>
<p>The output data type matches the NetCDF datatype, except when the attributes
_FillValue, add_offset or scale_factor are defined in which case the output
is a array in double precision.
</p>
<p>Note that values equal to the attribute missing_value are not replaced by
NaN (for compatibility).
</p>
<h4 class="subsubheading" id="Example-2">Example</h4>
<p>Read the data from variable ’mydata’ in the file test.nc.
</p><div class="example">
<pre class="example-preformatted"> data = ncread('test.nc','mydata');
</pre></div>
<p><strong class="strong">See also:</strong> ncwrite,ncinfo,ncdisp.
</p>
</dd></dl>
</div>
<div class="subsection-level-extent" id="ncreadatt">
<h4 class="subsection">3.1.5 ncreadatt</h4>
<a class="index-entry-id" id="index-ncreadatt"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-ncreadatt_0028filename_002cvarname_002cattname_0029"><span class="category-def">Function File: </span><code class="def-type"><var class="var">val</var> =</code> <strong class="def-name">ncreadatt(<var class="var">filename</var>,<var class="var">varname</var>,<var class="var">attname</var>)</strong></dt>
<dd>
<p>Return the attribute <var class="var">attname</var> of the variable <var class="var">varname</var> in the file
<var class="var">filename</var>.
</p>
<p>Global attributes can be accessed by using "/" or the group name as
<var class="var">varname</var>. The type of attribute is mapped to the Octave data types.
(see <code class="code">ncinfo</code>).
</p>
<h4 class="subsubheading" id="Example-3">Example</h4>
<p>Read global attribute ’creation_date’
</p><div class="example">
<pre class="example-preformatted"> d = ncreadatt('test.nc','/','creation_date')
</pre></div>
<p>Read atribute ’myattr’ assigned to variable mydata.
</p><div class="example">
<pre class="example-preformatted"> d = ncreadattr('test.nc', 'mydata', 'myattr');
</pre></div>
<p><strong class="strong">See also:</strong> ncinfo,ncwriteatt.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="ncwrite">
<h4 class="subsection">3.1.6 ncwrite</h4>
<a class="index-entry-id" id="index-ncwrite"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-ncwrite-1"><span class="category-def">Function File: </span><strong class="def-name">ncwrite</strong> <code class="def-code-arguments">(<var class="var">filename</var>, <var class="var">varname</var>, <var class="var">x</var>)</code></dt>
<dt class="deftypefnx def-cmd-deftypefn" id="index-ncwrite-2"><span class="category-def">Function File: </span><strong class="def-name">ncwrite</strong> <code class="def-code-arguments">(<var class="var">filename</var>, <var class="var">varname</var>, <var class="var">x</var>, <var class="var">start</var>, <var class="var">stride</var>)</code></dt>
<dd>
<p>Write array <var class="var">x</var> to the the variable <var class="var">varname</var> in the NetCDF file
<var class="var">filename</var>.
</p>
<p>The variable with the name <var class="var">varname</var> and the appropriate dimension must
already exist in the NetCDF file.
</p>
<p>If <var class="var">start</var> and <var class="var">stride</var> are present, a subset of the
variable is written. The parameter <var class="var">start</var> contains the starting indices
(1-based) and <var class="var">stride</var> the
increment between two successive elements. These parameters are vectors whose
length is equal to the number of dimension of the variable.
</p>
<p>If the variable has the _FillValue attribute, then the values equal to NaN
are replaced by corresponding fill value NetCDF attributes scale_factor
(default 1) and add_oddset (default 0) are use the transform the variable
during writing:
</p>
<p>x_in_file = (x - add_offset)/scale_factor
</p>
<h4 class="subsubheading" id="Example-4">Example</h4>
<p>Create a netcdf file with a variable of ’mydata’ and then write
data to that variable.
</p><div class="example">
<pre class="example-preformatted"> nccreate('myfile.nc','mydata');
ncwrite('myfile.nc','mydata', 101);
</pre></div>
<p><strong class="strong">See also:</strong> ncread,nccreate.
</p>
</dd></dl>
</div>
<div class="subsection-level-extent" id="ncwriteatt">
<h4 class="subsection">3.1.7 ncwriteatt</h4>
<a class="index-entry-id" id="index-ncwriteatt"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-ncwriteatt_0028filename_002cvarname_002cattname_002cval_0029"><span class="category-def">Function File: </span><strong class="def-name">ncwriteatt(<var class="var">filename</var>,<var class="var">varname</var>,<var class="var">attname</var>,<var class="var">val</var>)</strong></dt>
<dd>
<p>Defines the attribute <var class="var">attname</var> of the variable <var class="var">varname</var> in the file
<var class="var">filename</var> with the value <var class="var">val</var>.
</p>
<p>Global attributes can be defined by using "/" or the group name as
<var class="var">varname</var>. The type of value is mapped to the NetCDF data types.
(see <code class="code">ncinfo</code>).
</p>
<h4 class="subsubheading" id="Example-5">Example</h4>
<p>Create a netcdf4 format file with a variable mydata and assign an attribute "units" to it.
</p><div class="example">
<pre class="example-preformatted"> nccreate("myfile.nc", "mydata", "Format", "netcdf4");
ncwriteatt("myfile.nc", "mydata", "Units", "K");
</pre></div>
<p><strong class="strong">See also:</strong> ncinfo.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="ncwriteschema">
<h4 class="subsection">3.1.8 ncwriteschema</h4>
<a class="index-entry-id" id="index-ncwriteschema"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-ncwriteschema-1"><span class="category-def">Function File: </span><strong class="def-name">ncwriteschema</strong> <code class="def-code-arguments">(<var class="var">filename</var>, <var class="var">schema</var>)</code></dt>
<dd>
<p>Create a NetCDF called <var class="var">filename</var> with the dimensions, attributes,
variables and groups given by the structure <var class="var">schema</var>.
</p>
<p>The variable <var class="var">schema</var> has the same structure as the results of
<code class="code">ncinfo</code>. <code class="code">ncinfo</code> and <code class="code">ncwriteschema</code> can be used together to
create a NetCDF using another file as a template:
</p>
<h4 class="subsubheading" id="Example-6">Example</h4>
<div class="example">
<pre class="example-preformatted"> schema = ncinfo("template.nc");
# the new file should be named "new_file.nc"
ncwriteschema("new_file.nc",schema);
</pre></div>
<p>Unused field in <var class="var">schema</var> such as <var class="var">ChunkSize</var>, <var class="var">Shuffle</var>,
<var class="var">DeflateLevel</var>, <var class="var">FillValue</var>, <var class="var">Checksum</var> can be left-out if the
corresponding feature is not used.
</p>
<p>Dimensions are considered as limited if the field <var class="var">Unlimited</var> is missing,
unless the dimension length is Inf.
</p>
<p><strong class="strong">See also:</strong> ncinfo.
</p>
</dd></dl>
<hr>
</div>
</div>
<div class="section-level-extent" id="Low_002dlevel-functions-_0028Deprecated_0029">
<h3 class="section" id="Low_002dlevel-functions-_0028Deprecated_0029-1">3.2 Low-level functions (Deprecated)</h3>
<a class="index-entry-id" id="index-Low_002dlevel-functions-_0028Deprecated_0029"></a>
<div class="subsection-level-extent" id="netcdf_005fabort">
<h4 class="subsection">3.2.1 netcdf_abort</h4>
<a class="index-entry-id" id="index-netcdf_005fabort"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fabort_0028ncid_0029"><span class="category-def">Loadable Function: </span><strong class="def-name">netcdf_abort(<var class="var">ncid</var>)</strong></dt>
<dd><p>Aborts all changes since the last time the dataset entered in define mode.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_reDef.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005fclose">
<h4 class="subsection">3.2.2 netcdf_close</h4>
<a class="index-entry-id" id="index-netcdf_005fclose"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fclose_0028ncid_0029"><span class="category-def">Loadable Function: </span><strong class="def-name">netcdf_close(<var class="var">ncid</var>)</strong></dt>
<dd><p>Close the NetCDF file with the id <var class="var">ncid</var>.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_open.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005fcopyAtt">
<h4 class="subsection">3.2.3 netcdf_copyAtt</h4>
<a class="index-entry-id" id="index-netcdf_005fcopyAtt"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fcopyAtt-1"><span class="category-def">Loadable Function: </span><strong class="def-name">netcdf_copyAtt</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">name</var>,<var class="var">ncid_out</var>,<var class="var">varid_out</var>)</code></dt>
<dd><p>Copies the attribute named <var class="var">old_name</var> of the variable <var class="var">varid</var> in the data set <var class="var">ncid</var>
to the variable <var class="var">varid_out</var> in the data set <var class="var">ncid_out</var>.
To copy a global attribute use netcdf_getConstant("global") for <var class="var">varid</var> or <var class="var">varid_out</var>.
</p>
<p><strong class="strong">See also:</strong> netcdf_getAtt,netcdf_getConstant.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_005fcreate">
<h4 class="subsection">3.2.4 netcdf_create</h4>
<a class="index-entry-id" id="index-netcdf_005fcreate"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fcreate_0028filename_002cmode_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">ncid</var> =</code> <strong class="def-name">netcdf_create(<var class="var">filename</var>,<var class="var">mode</var>)</strong></dt>
<dd><p>Creates the file named <var class="var">filename</var> in the mode <var class="var">mode</var> which can have the
following values:
"clobber" (overwrite existing files),
"noclobber" (prevent to overwrite existing files)
"64bit_offset" (use the 64bit-offset format),
"netcdf4" (use the NetCDF4, i.e. HDF5 format) or
"share" (concurrent reading of the dataset).
<var class="var">mode</var> can also be the numeric value return by netcdf_getConstant. In the later-case it can be combined with a bitwise-or.
</p></dd></dl>
<h4 class="subsubheading" id="Example-7">Example</h4>
<div class="example">
<pre class="example-preformatted">mode = bitor(netcdf.getConstant("classic_model"), ...
netcdf.getConstant("netcdf4"));
ncid = netcdf.create("test.nc",mode);
</pre></div>
<p><strong class="strong">See also:</strong> netcdf_close.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005fdefDim">
<h4 class="subsection">3.2.5 netcdf_defDim</h4>
<a class="index-entry-id" id="index-netcdf_005fdefDim"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fdefDim_0028ncid_002cname_002clen_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">dimid</var> =</code> <strong class="def-name">netcdf_defDim(<var class="var">ncid</var>,<var class="var">name</var>,<var class="var">len</var>)</strong></dt>
<dd><p>Define the dimension with the name <var class="var">name</var> and the length <var class="var">len</var> in the dataset <var class="var">ncid</var>. The id of the dimension is returned.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_defVar.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005fdefGrp">
<h4 class="subsection">3.2.6 netcdf_defGrp</h4>
<a class="index-entry-id" id="index-netcdf_005fdefGrp"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fdefGrp_0028ncid_002cname_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">new_ncid</var> =</code> <strong class="def-name">netcdf_defGrp(<var class="var">ncid</var>,<var class="var">name</var>)</strong></dt>
<dd><p>Define a group in a NetCDF file.
</p>
<p><strong class="strong">See also:</strong> netcdf_inqGrps.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_005fdefVar">
<h4 class="subsection">3.2.7 netcdf_defVar</h4>
<a class="index-entry-id" id="index-netcdf_005fdefVar"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fdefVar_0028ncid_002cname_002cxtype_002cdimids_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">varid</var> =</code> <strong class="def-name">netcdf_defVar(<var class="var">ncid</var>,<var class="var">name</var>,<var class="var">xtype</var>,<var class="var">dimids</var>)</strong></dt>
<dd><p>Defines a variable with the name <var class="var">name</var> in the dataset <var class="var">ncid</var>. <var class="var">xtype</var> can be "byte", "ubyte", "short", "ushort", "int", "uint", "int64", "uint64", "float", "double", "char" or the corresponding number as returned by netcdf_getConstant. The parameter <var class="var">dimids</var> define the ids of the dimension. For scalar this parameter is the empty array ([]). The variable id is returned.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_open,netcdf_defDim.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005fdefVarChunking">
<h4 class="subsection">3.2.8 netcdf_defVarChunking</h4>
<a class="index-entry-id" id="index-netcdf_005fdefVarChunking"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fdefVarChunking-1"><span class="category-def">Loadable Function: </span><strong class="def-name">netcdf_defVarChunking</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">storage</var>,<var class="var">chunkSizes</var>)</code></dt>
<dd><p>Define the chunking settings of NetCDF variable <var class="var">varid</var>.
If <var class="var">storage</var> is the string "chunked", the variable is stored by chunk of the size <var class="var">chunkSizes</var>.
If <var class="var">storage</var> is the string "contiguous", the variable is stored in a contiguous way.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_inqVarChunking.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005fdefVarDeflate">
<h4 class="subsection">3.2.9 netcdf_defVarDeflate</h4>
<a class="index-entry-id" id="index-netcdf_005fdefVarDeflate"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fdefVarDeflate-1"><span class="category-def">Loadable Function: </span><strong class="def-name">netcdf_defVarDeflate</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">shuffle</var>,<var class="var">deflate</var>,<var class="var">deflate_level</var>)</code></dt>
<dd><p>Define the compression settings NetCDF variable <var class="var">varid</var>.
If <var class="var">deflate</var> is true, then the variable is compressed. The compression level <var class="var">deflate_level</var> is an integer between 0 (no compression) and 9 (maximum compression).
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_inqVarDeflate.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005fdefVarFill">
<h4 class="subsection">3.2.10 netcdf_defVarFill</h4>
<a class="index-entry-id" id="index-netcdf_005fdefVarFill"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fdefVarFill_0028ncid_002cvarid_002cno_005ffill_002cfillvalue_0029"><span class="category-def">Loadable Function: </span><strong class="def-name">netcdf_defVarFill(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">no_fill</var>,<var class="var">fillvalue</var>)</strong></dt>
<dd><p>Define the fill-value settings of the NetCDF variable <var class="var">varid</var>.
If <var class="var">no_fill</var> is false, then the values between no-contiguous writes are filled with the value <var class="var">fill_value</var>. This is disabled by setting <var class="var">no_fill</var> to true.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_inqVarFill.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005fdefVarFletcher32">
<h4 class="subsection">3.2.11 netcdf_defVarFletcher32</h4>
<a class="index-entry-id" id="index-netcdf_005fdefVarFletcher32"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fdefVarFletcher32_0028ncid_002cvarid_002cchecksum_0029"><span class="category-def">Loadable Function: </span><strong class="def-name">netcdf_defVarFletcher32(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">checksum</var>)</strong></dt>
<dd><p>Defines the checksum settings of the variable with the id <var class="var">varid</var> in the data set <var class="var">ncid</var>. If <var class="var">checksum</var> is the string "FLETCHER32", then fletcher32 checksums will be turned on for this variable. If <var class="var">checksum</var> is "NOCHECKSUM", then checksums will be disabled.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_defVar,netcdf_inqVarFletcher32.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005fdefVlen">
<h4 class="subsection">3.2.12 netcdf_defVlen</h4>
<a class="index-entry-id" id="index-netcdf_005fdefVlen"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fdefVlen_0028ncid_002ctypename_002cbasetype_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">varid</var> =</code> <strong class="def-name">netcdf_defVlen(<var class="var">ncid</var>,<var class="var">typename</var>,<var class="var">basetype</var>)</strong></dt>
<dd><p>Defines a NC_VLEN variable length array type with the type name <var class="var">typename</var> and a base datatype of <var class="var">basetype</var> in the dataset <var class="var">ncid</var>. <var class="var">basetype</var> can be "byte", "ubyte", "short", "ushort", "int", "uint", "int64", "uint64", "float", "double", "char" or the corresponding number as returned by netcdf_getConstant. The new data type id is returned.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_open,netcdf_defVar, netcdf_inqVlen.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005fdelAtt">
<h4 class="subsection">3.2.13 netcdf_delAtt</h4>
<a class="index-entry-id" id="index-netcdf_005fdelAtt"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fdelAtt_0028ncid_002cvarid_002cname_0029"><span class="category-def">Loadable Function: </span><strong class="def-name">netcdf_delAtt(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">name</var>)</strong></dt>
<dd><p>Deletes the attribute named <var class="var">name</var> of the variable <var class="var">varid</var> in the data set <var class="var">ncid</var>.
To delete a global attribute use netcdf_getConstant("global") for <var class="var">varid</var>.
</p>
<p><strong class="strong">See also:</strong> netcdf_defAtt,netcdf_getConstant.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_005fendDef">
<h4 class="subsection">3.2.14 netcdf_endDef</h4>
<a class="index-entry-id" id="index-netcdf_005fendDef"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fendDef-1"><span class="category-def">Loadable Function: </span><strong class="def-name">netcdf_endDef</strong> <code class="def-code-arguments">(<var class="var">ncid</var>)</code></dt>
<dd><p>Leaves define-mode of NetCDF file <var class="var">ncid</var>.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_reDef.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005fgetAtt">
<h4 class="subsection">3.2.15 netcdf_getAtt</h4>
<a class="index-entry-id" id="index-netcdf_005fgetAtt"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fgetAtt-1"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">data</var> =</code> <strong class="def-name">netcdf_getAtt</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">name</var>)</code></dt>
<dd><p>Get the value of a NetCDF attribute.
This function returns the value of the attribute called <var class="var">name</var> of the variable
<var class="var">varid</var> in the NetCDF file <var class="var">ncid</var>. For global attributes <var class="var">varid</var> can be
netcdf_getConstant("global").
</p>
<p><strong class="strong">See also:</strong> netcdf_putAtt.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_005fgetChunkCache">
<h4 class="subsection">3.2.16 netcdf_getChunkCache</h4>
<a class="index-entry-id" id="index-netcdf_005fgetChunkCache"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fgetChunkCache_0028_0029"><span class="category-def">Loadable Function: </span><code class="def-type">[<var class="var">size</var>, <var class="var">nelems</var>, <var class="var">preemption</var>] =</code> <strong class="def-name">netcdf_getChunkCache()</strong></dt>
<dd><p>Gets the default chunk cache settings in the HDF5 library.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_setChunkCache.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005fgetConstant">
<h4 class="subsection">3.2.17 netcdf_getConstant</h4>
<a class="index-entry-id" id="index-netcdf_005fgetConstant"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fgetConstant_0028name_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">value</var> =</code> <strong class="def-name">netcdf_getConstant(<var class="var">name</var>)</strong></dt>
<dd><p>Returns the value of a NetCDF constant called <var class="var">name</var>.
</p>
<p><strong class="strong">See also:</strong> netcdf_getConstantNames.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_005fgetConstantNames">
<h4 class="subsection">3.2.18 netcdf_getConstantNames</h4>
<a class="index-entry-id" id="index-netcdf_005fgetConstantNames"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fgetConstantNames_0028_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">value</var> =</code> <strong class="def-name">netcdf_getConstantNames()</strong></dt>
<dd><p>Returns a list of all constant names.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_getConstant.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005fgetVar">
<h4 class="subsection">3.2.19 netcdf_getVar</h4>
<a class="index-entry-id" id="index-netcdf_005fgetVar"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fgetVar-1"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">data</var> =</code> <strong class="def-name">netcdf_getVar</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>)</code></dt>
<dt class="deftypefnx def-cmd-deftypefn" id="index-netcdf_005fgetVar-2"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">data</var> =</code> <strong class="def-name">netcdf_getVar</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">start</var>)</code></dt>
<dt class="deftypefnx def-cmd-deftypefn" id="index-netcdf_005fgetVar-3"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">data</var> =</code> <strong class="def-name">netcdf_getVar</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">start</var>,<var class="var">count</var>)</code></dt>
<dt class="deftypefnx def-cmd-deftypefn" id="index-netcdf_005fgetVar-4"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">data</var> =</code> <strong class="def-name">netcdf_getVar</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">start</var>,<var class="var">count</var>,<var class="var">stride</var>)</code></dt>
<dd><p>Get the data from a NetCDF variable.
The data <var class="var">data</var> is loaded from the variable <var class="var">varid</var> of the NetCDF file <var class="var">ncid</var>.
<var class="var">start</var> is the start index of each dimension (0-based and defaults to a vector of zeros),
<var class="var">count</var> is the number of elements of to be written along each dimension (default all elements)
and <var class="var">stride</var> is the sampling interval.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_putVar.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005finq">
<h4 class="subsection">3.2.20 netcdf_inq</h4>
<a class="index-entry-id" id="index-netcdf_005finq"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqLibVers_0028_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">vers</var> =</code> <strong class="def-name">netcdf_inqLibVers()</strong></dt>
<dd><p>Returns the version of the NetCDF library.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_open.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005finqAtt">
<h4 class="subsection">3.2.21 netcdf_inqAtt</h4>
<a class="index-entry-id" id="index-netcdf_005finqAtt"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqAttName-1"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">name</var> =</code> <strong class="def-name">netcdf_inqAttName</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">attnum</var>)</code></dt>
<dd><p>Get the name of a NetCDF attribute.
This function returns the name of the attribute with the id <var class="var">attnum</var> of the variable
<var class="var">varid</var> in the NetCDF file <var class="var">ncid</var>. For global attributes <var class="var">varid</var> can be
netcdf_getConstant("global").
</p>
<p><strong class="strong">See also:</strong> netcdf_inqAttName.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_005finqAttID">
<h4 class="subsection">3.2.22 netcdf_inqAttID</h4>
<a class="index-entry-id" id="index-netcdf_005finqAttID"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqAttID_0028ncid_002cvarid_002cattname_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">attnum</var> =</code> <strong class="def-name">netcdf_inqAttID(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">attname</var>)</strong></dt>
<dd><p>Return the attribute id <var class="var">attnum</var> of the attribute named <var class="var">attname</var> of the variable <var class="var">varid</var> in the dataset <var class="var">ncid</var>.
For global attributes <var class="var">varid</var> can be
netcdf_getConstant("global").
</p>
<p><strong class="strong">See also:</strong> netcdf_inqAttName.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_005finqAttName">
<h4 class="subsection">3.2.23 netcdf_inqAttName</h4>
<a class="index-entry-id" id="index-netcdf_005finqAttName"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqAttName-2"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">name</var> =</code> <strong class="def-name">netcdf_inqAttName</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">attnum</var>)</code></dt>
<dd><p>Get the name of a NetCDF attribute.
This function returns the name of the attribute with the id <var class="var">attnum</var> of the variable
<var class="var">varid</var> in the NetCDF file <var class="var">ncid</var>. For global attributes <var class="var">varid</var> can be
netcdf_getConstant("global").
</p>
<p><strong class="strong">See also:</strong> netcdf_inqAttName.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_005finqDim">
<h4 class="subsection">3.2.24 netcdf_inqDim</h4>
<a class="index-entry-id" id="index-netcdf_005finqDim"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqDim_0028ncid_002cdimid_0029"><span class="category-def">Loadable Function: </span><code class="def-type">[<var class="var">name</var>,<var class="var">length</var>] =</code> <strong class="def-name">netcdf_inqDim(<var class="var">ncid</var>,<var class="var">dimid</var>)</strong></dt>
<dd><p>Returns the name and length of a NetCDF dimension.
</p>
<p><strong class="strong">See also:</strong> netcdf_inqDimID.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_005finqDimID">
<h4 class="subsection">3.2.25 netcdf_inqDimID</h4>
<a class="index-entry-id" id="index-netcdf_005finqDimID"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqDimID_0028ncid_002cdimname_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">dimid</var> =</code> <strong class="def-name">netcdf_inqDimID(<var class="var">ncid</var>,<var class="var">dimname</var>)</strong></dt>
<dd><p>Return the id of a NetCDF dimension.
</p>
<p><strong class="strong">See also:</strong> netcdf_inqDim.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_005finqDimIDs">
<h4 class="subsection">3.2.26 netcdf_inqDimIDs</h4>
<a class="index-entry-id" id="index-netcdf_005finqDimIDs"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqDimID_0028ncid_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">dimids</var> =</code> <strong class="def-name">netcdf_inqDimID(<var class="var">ncid</var>)</strong></dt>
<dt class="deftypefnx def-cmd-deftypefn" id="index-netcdf_005finqDimID_0028ncid_002cinclude_005fparents_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">dimids</var> =</code> <strong class="def-name">netcdf_inqDimID(<var class="var">ncid</var>,<var class="var">include_parents</var>)</strong></dt>
<dd><p>Return the dimension ids defined in a NetCDF file.
If <var class="var">include_parents</var> is 1, the dimension ids of the parent group are also returned.
Per default this is not the case (<var class="var">include_parents</var> is 0).
</p>
<p><strong class="strong">See also:</strong> netcdf_inqDim.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_005finqFormat">
<h4 class="subsection">3.2.27 netcdf_inqFormat</h4>
<a class="index-entry-id" id="index-netcdf_005finqFormat"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqFormat_0028ncid_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">format</var> =</code> <strong class="def-name">netcdf_inqFormat(<var class="var">ncid</var>)</strong></dt>
<dd><p>Return the NetCDF format of the dataset <var class="var">ncid</var>.
Format might be one of the following
"FORMAT_CLASSIC", "FORMAT_64BIT", "FORMAT_NETCDF4" or "FORMAT_NETCDF4_CLASSIC"
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_inq.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005finqGrpFullNcid">
<h4 class="subsection">3.2.28 netcdf_inqGrpFullNcid</h4>
<a class="index-entry-id" id="index-netcdf_005finqGrpFullNcid"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqGrpFullNcid_0028ncid_002cname_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">grp_ncid</var> =</code> <strong class="def-name">netcdf_inqGrpFullNcid(<var class="var">ncid</var>,<var class="var">name</var>)</strong></dt>
<dd><p>Return the group id based on the full group name.
</p>
<p><strong class="strong">See also:</strong> netcdf_inqGrpName.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_005finqGrpName">
<h4 class="subsection">3.2.29 netcdf_inqGrpName</h4>
<a class="index-entry-id" id="index-netcdf_005finqGrpName"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqGrpName_0028ncid_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">name</var> =</code> <strong class="def-name">netcdf_inqGrpName(<var class="var">ncid</var>)</strong></dt>
<dd><p>Return group name in a NetCDF file.
</p>
<p><strong class="strong">See also:</strong> netcdf_inqGrps.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_005finqGrpNameFull">
<h4 class="subsection">3.2.30 netcdf_inqGrpNameFull</h4>
<a class="index-entry-id" id="index-netcdf_005finqGrpNameFull"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqGrpNameFull_0028ncid_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">name</var> =</code> <strong class="def-name">netcdf_inqGrpNameFull(<var class="var">ncid</var>)</strong></dt>
<dd><p>Return full name of group in NetCDF file.
</p>
<p><strong class="strong">See also:</strong> netcdf_inqGrpName.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_005finqGrpParent">
<h4 class="subsection">3.2.31 netcdf_inqGrpParent</h4>
<a class="index-entry-id" id="index-netcdf_005finqGrpParent"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqGrpParent_0028ncid_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">parent_ncid</var> =</code> <strong class="def-name">netcdf_inqGrpParent(<var class="var">ncid</var>)</strong></dt>
<dd><p>Return id of the parent group
</p>
<p><strong class="strong">See also:</strong> netcdf_inqGrpName.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_005finqGrps">
<h4 class="subsection">3.2.32 netcdf_inqGrps</h4>
<a class="index-entry-id" id="index-netcdf_005finqGrps"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqGrps_0028ncid_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">ncids</var> =</code> <strong class="def-name">netcdf_inqGrps(<var class="var">ncid</var>)</strong></dt>
<dd><p>Return all groups ids in a NetCDF file.
</p>
<p><strong class="strong">See also:</strong> netcdf_inqGrps.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_005finqLibVers">
<h4 class="subsection">3.2.33 netcdf_inqLibVers</h4>
<a class="index-entry-id" id="index-netcdf_005finqLibVers"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqLibVers_0028_0029-1"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">vers</var> =</code> <strong class="def-name">netcdf_inqLibVers()</strong></dt>
<dd><p>Returns the version of the NetCDF library.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_open.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005finqNcid">
<h4 class="subsection">3.2.34 netcdf_inqNcid</h4>
<a class="index-entry-id" id="index-netcdf_005finqNcid"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqNcid_0028ncid_002cname_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">grp_ncid</var> =</code> <strong class="def-name">netcdf_inqNcid(<var class="var">ncid</var>,<var class="var">name</var>)</strong></dt>
<dd><p>Return group id based on its name
</p>
<p><strong class="strong">See also:</strong> netcdf_inqGrpFullNcid.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_005finqUnlimDims">
<h4 class="subsection">3.2.35 netcdf_inqUnlimDims</h4>
<a class="index-entry-id" id="index-netcdf_005finqUnlimDims"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqUnlimDims_0028ncid_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">unlimdimids</var> =</code> <strong class="def-name">netcdf_inqUnlimDims(<var class="var">ncid</var>)</strong></dt>
<dd><p>Return the id of all unlimited dimensions of the NetCDF file <var class="var">ncid</var>.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_inq.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005finqUserType">
<h4 class="subsection">3.2.36 netcdf_inqUserType</h4>
<a class="index-entry-id" id="index-netcdf_005finqUserType"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqUserType_0028ncid_002ctypeid_0029"><span class="category-def">Loadable Function: </span><code class="def-type">[<var class="var">typename</var>, <var class="var">bytesize</var>, <var class="var">basetypeid</var>, <var class="var">numfields</var>, <var class="var">classid</var>] =</code> <strong class="def-name">netcdf_inqUserType(<var class="var">ncid</var>,<var class="var">typeid</var>)</strong></dt>
<dd><p>Provide information on a user defined type <var class="var">typeid</var> in the dataset <var class="var">ncid</var>.
</p>
<p>The function returns the typename, bytesize, base type id, number of fields and class identifier of the type.
</p>
</dd></dl>
<p><strong class="strong">See also:</strong> netcdf_open, netcdf_defVlen, netcdf_inqVlen.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005finqVar">
<h4 class="subsection">3.2.37 netcdf_inqVar</h4>
<a class="index-entry-id" id="index-netcdf_005finqVar"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqVarFill_0028ncid_002cvarid_0029"><span class="category-def">Loadable Function: </span><code class="def-type">[<var class="var">no_fill</var>,<var class="var">fillvalue</var>] =</code> <strong class="def-name">netcdf_inqVarFill(<var class="var">ncid</var>,<var class="var">varid</var>)</strong></dt>
<dd><p>Determines the fill-value settings of the NetCDF variable <var class="var">varid</var>.
If <var class="var">no_fill</var> is false, then the values between no-contiguous writes are filled with the value <var class="var">fill_value</var>. This is disabled by setting <var class="var">no_fill</var> to true.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_defVarFill.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005finqVarChunking">
<h4 class="subsection">3.2.38 netcdf_inqVarChunking</h4>
<a class="index-entry-id" id="index-netcdf_005finqVarChunking"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqVarChunking-1"><span class="category-def">Loadable Function: </span><code class="def-type">[<var class="var">storage</var>,<var class="var">chunkSizes</var>] =</code> <strong class="def-name">netcdf_inqVarChunking</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>)</code></dt>
<dd><p>Determines the chunking settings of NetCDF variable <var class="var">varid</var>.
If <var class="var">storage</var> is the string "chunked", the variable is stored by chunk of the size <var class="var">chunkSizes</var>.
If <var class="var">storage</var> is the string "contiguous", the variable is stored in a contiguous way.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_defVarChunking.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005finqVarDeflate">
<h4 class="subsection">3.2.39 netcdf_inqVarDeflate</h4>
<a class="index-entry-id" id="index-netcdf_005finqVarDeflate"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqVarDeflate-1"><span class="category-def">Loadable Function: </span><code class="def-type">[<var class="var">shuffle</var>,<var class="var">deflate</var>,<var class="var">deflate_level</var>] =</code> <strong class="def-name">netcdf_inqVarDeflate</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>)</code></dt>
<dd><p>Determines the compression settings NetCDF variable <var class="var">varid</var>.
If <var class="var">deflate</var> is true, then the variable is compressed. The compression level <var class="var">deflate_level</var> is an integer between 0 (no compression) and 9 (maximum compression).
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_defVarDeflate.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005finqVarFill">
<h4 class="subsection">3.2.40 netcdf_inqVarFill</h4>
<a class="index-entry-id" id="index-netcdf_005finqVarFill"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqVarFill_0028ncid_002cvarid_0029-1"><span class="category-def">Loadable Function: </span><code class="def-type">[<var class="var">no_fill</var>,<var class="var">fillvalue</var>] =</code> <strong class="def-name">netcdf_inqVarFill(<var class="var">ncid</var>,<var class="var">varid</var>)</strong></dt>
<dd><p>Determines the fill-value settings of the NetCDF variable <var class="var">varid</var>.
If <var class="var">no_fill</var> is false, then the values between no-contiguous writes are filled with the value <var class="var">fill_value</var>. This is disabled by setting <var class="var">no_fill</var> to true.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_defVarFill.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005finqVarFletcher32">
<h4 class="subsection">3.2.41 netcdf_inqVarFletcher32</h4>
<a class="index-entry-id" id="index-netcdf_005finqVarFletcher32"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqVarFletcher32_0028ncid_002cvarid_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">checksum</var> =</code> <strong class="def-name">netcdf_inqVarFletcher32(<var class="var">ncid</var>,<var class="var">varid</var>)</strong></dt>
<dd><p>Determines the checksum settings of the variable with the id <var class="var">varid</var> in the data set <var class="var">ncid</var>. If fletcher32 checksums is turned on for this variable, then <var class="var">checksum</var> is the string "FLETCHER32". Otherwise it is the string "NOCHECKSUM".
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_defVar,netcdf_inqVarFletcher32.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005finqVarID">
<h4 class="subsection">3.2.42 netcdf_inqVarID</h4>
<a class="index-entry-id" id="index-netcdf_005finqVarID"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqVarID-1"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">varid</var> =</code> <strong class="def-name">netcdf_inqVarID</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">name</var>)</code></dt>
<dd><p>Return the id of a variable based on its name.
</p>
<p><strong class="strong">See also:</strong> netcdf_defVar,netcdf_inqVarIDs.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_005finqVarIDs">
<h4 class="subsection">3.2.43 netcdf_inqVarIDs</h4>
<a class="index-entry-id" id="index-netcdf_005finqVarIDs"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqVarID-2"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">varids</var> =</code> <strong class="def-name">netcdf_inqVarID</strong> <code class="def-code-arguments">(<var class="var">ncid</var>)</code></dt>
<dd><p>Return all variable ids.
This functions returns all variable ids in a NetCDF file or NetCDF group.
</p>
<p><strong class="strong">See also:</strong> netcdf_inqVarID.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_005finqVlen">
<h4 class="subsection">3.2.44 netcdf_inqVlen</h4>
<a class="index-entry-id" id="index-netcdf_005finqVlen"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005finqVlen_0028ncid_002ctypeid_0029"><span class="category-def">Loadable Function: </span><code class="def-type">[<var class="var">typename</var>, <var class="var">bytesize</var>, <var class="var">basetypeid</var>] =</code> <strong class="def-name">netcdf_inqVlen(<var class="var">ncid</var>,<var class="var">typeid</var>)</strong></dt>
<dd><p>Provide information on a NC_VLEN variable length array type <var class="var">typeid</var> in the dataset <var class="var">ncid</var>.
</p>
<p>The function returns the typename, bytesize, and base type id.
</p>
</dd></dl>
<p><strong class="strong">See also:</strong> netcdf_open, netcdf_defVlen.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005fopen">
<h4 class="subsection">3.2.45 netcdf_open</h4>
<a class="index-entry-id" id="index-netcdf_005fopen"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fopen_0028filename_002cmode_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">ncid</var> =</code> <strong class="def-name">netcdf_open(<var class="var">filename</var>,<var class="var">mode</var>)</strong></dt>
<dd><p>Opens the file named <var class="var">filename</var> in the mode <var class="var">mode</var>.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_close.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005fputAtt">
<h4 class="subsection">3.2.46 netcdf_putAtt</h4>
<a class="index-entry-id" id="index-netcdf_005fputAtt"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fputAtt-1"><span class="category-def">Loadable Function: </span><strong class="def-name">netcdf_putAtt</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">name</var>,<var class="var">data</var>)</code></dt>
<dd><p>Defines a NetCDF attribute.
This function defines the attribute called <var class="var">name</var> of the variable
<var class="var">varid</var> in the NetCDF file <var class="var">ncid</var>. The value of the attribute will be <var class="var">data</var>.
For global attributes <var class="var">varid</var> can be
netcdf_getConstant("global").
</p>
<p><strong class="strong">See also:</strong> netcdf_getAtt.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_005fputVar">
<h4 class="subsection">3.2.47 netcdf_putVar</h4>
<a class="index-entry-id" id="index-netcdf_005fputVar"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fputVar-1"><span class="category-def">Loadable Function: </span><strong class="def-name">netcdf_putVar</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">data</var>)</code></dt>
<dt class="deftypefnx def-cmd-deftypefn" id="index-netcdf_005fputVar-2"><span class="category-def">Loadable Function: </span><strong class="def-name">netcdf_putVar</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">start</var>,<var class="var">data</var>)</code></dt>
<dt class="deftypefnx def-cmd-deftypefn" id="index-netcdf_005fputVar-3"><span class="category-def">Loadable Function: </span><strong class="def-name">netcdf_putVar</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">start</var>,<var class="var">count</var>,<var class="var">data</var>)</code></dt>
<dt class="deftypefnx def-cmd-deftypefn" id="index-netcdf_005fputVar-4"><span class="category-def">Loadable Function: </span><strong class="def-name">netcdf_putVar</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">start</var>,<var class="var">count</var>,<var class="var">stride</var>,<var class="var">data</var>)</code></dt>
<dd><p>Put data in a NetCDF variable.
The data <var class="var">data</var> is stored in the variable <var class="var">varid</var> of the NetCDF file <var class="var">ncid</var>.
<var class="var">start</var> is the start index of each dimension (0-based and defaults to a vector of zeros),
<var class="var">count</var> is the number of elements of to be written along each dimension (default all elements)
and <var class="var">stride</var> is the sampling interval.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_endDef.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005freDef">
<h4 class="subsection">3.2.48 netcdf_reDef</h4>
<a class="index-entry-id" id="index-netcdf_005freDef"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005freDef-1"><span class="category-def">Loadable Function: </span><strong class="def-name">netcdf_reDef</strong> <code class="def-code-arguments">(<var class="var">ncid</var>)</code></dt>
<dd><p>Enter define-mode of NetCDF file <var class="var">ncid</var>.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_endDef.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005frenameAtt">
<h4 class="subsection">3.2.49 netcdf_renameAtt</h4>
<a class="index-entry-id" id="index-netcdf_005frenameAtt"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005frenameAtt_0028ncid_002cvarid_002cold_005fname_002cnew_005fname_0029"><span class="category-def">Loadable Function: </span><strong class="def-name">netcdf_renameAtt(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">old_name</var>,<var class="var">new_name</var>)</strong></dt>
<dd><p>Renames the attribute named <var class="var">old_name</var> of the variable <var class="var">varid</var> in the data set <var class="var">ncid</var>. <var class="var">new_name</var> is the new name of the attribute.
To rename a global attribute use netcdf_getConstant("global") for <var class="var">varid</var>.
</p>
<p><strong class="strong">See also:</strong> netcdf_copyAtt,netcdf_getConstant.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_005frenameDim">
<h4 class="subsection">3.2.50 netcdf_renameDim</h4>
<a class="index-entry-id" id="index-netcdf_005frenameDim"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005frenameDim_0028ncid_002cdimid_002cname_0029"><span class="category-def">Loadable Function: </span><strong class="def-name">netcdf_renameDim(<var class="var">ncid</var>,<var class="var">dimid</var>,<var class="var">name</var>)</strong></dt>
<dd><p>Renames the dimension with the id <var class="var">dimid</var> in the data set <var class="var">ncid</var>. <var class="var">name</var> is the new name of the dimension.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_defDim.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005frenameVar">
<h4 class="subsection">3.2.51 netcdf_renameVar</h4>
<a class="index-entry-id" id="index-netcdf_005frenameVar"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005frenameVar_0028ncid_002cvarid_002cname_0029"><span class="category-def">Loadable Function: </span><strong class="def-name">netcdf_renameVar(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">name</var>)</strong></dt>
<dd><p>Renames the variable with the id <var class="var">varid</var> in the data set <var class="var">ncid</var>. <var class="var">name</var> is the new name of the variable.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_defVar.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005fsetChunkCache">
<h4 class="subsection">3.2.52 netcdf_setChunkCache</h4>
<a class="index-entry-id" id="index-netcdf_005fsetChunkCache"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fsetChunkCache_0028size_002c"><span class="category-def">Loadable Function: </span><strong class="def-name">netcdf_setChunkCache(<var class="var">size</var>,</strong> <code class="def-code-arguments"><var class="var">nelems</var>, <var class="var">preemption</var>)</code></dt>
<dd><p>Sets the default chunk cache settings in the HDF5 library. The settings applies to all files which are subsequently opened or created.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_getChunkCache.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005fsetDefaultFormat">
<h4 class="subsection">3.2.53 netcdf_setDefaultFormat</h4>
<a class="index-entry-id" id="index-netcdf_005fsetDefaultFormat"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fsetDefaultFormat_0028format_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">old_format</var> =</code> <strong class="def-name">netcdf_setDefaultFormat(<var class="var">format</var>)</strong></dt>
<dd><p>Sets the default format of the NetCDF library and returns the previous default format (as a numeric value). <var class="var">format</var> can be
"format_classic", "format_64bit", "format_netcdf4" or "format_netcdf4_classic".
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_open.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005fsetFill">
<h4 class="subsection">3.2.54 netcdf_setFill</h4>
<a class="index-entry-id" id="index-netcdf_005fsetFill"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fsetFill_0028ncid_002cfillmode_0029"><span class="category-def">Loadable Function: </span><code class="def-type"><var class="var">old_mode</var> =</code> <strong class="def-name">netcdf_setFill(<var class="var">ncid</var>,<var class="var">fillmode</var>)</strong></dt>
<dd><p>Change the fill mode (<var class="var">fillmode</var>) of the data set <var class="var">ncid</var>. The previous value of the fill mode is returned. <var class="var">fillmode</var> can be either "fill" or "nofill".
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_open.
</p>
</div>
<div class="subsection-level-extent" id="netcdf_005fsync">
<h4 class="subsection">3.2.55 netcdf_sync</h4>
<a class="index-entry-id" id="index-netcdf_005fsync"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_005fsync_0028ncid_0029"><span class="category-def">Loadable Function: </span><strong class="def-name">netcdf_sync(<var class="var">ncid</var>)</strong></dt>
<dd><p>Writes all changes to the disk and leaves the file open.
</p></dd></dl>
<p><strong class="strong">See also:</strong> netcdf_close.
</p>
<hr>
</div>
</div>
<div class="section-level-extent" id="Low_002dlevel-functions">
<h3 class="section" id="Low_002dlevel-functions-1">3.3 Low-level functions</h3>
<a class="index-entry-id" id="index-Low_002dlevel-functions"></a>
<div class="subsection-level-extent" id="netcdf_002eabort">
<h4 class="subsection">3.3.1 netcdf.abort</h4>
<a class="index-entry-id" id="index-abort"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002eabort_0028ncid_0029"><span class="category-def">: </span><strong class="def-name">netcdf.abort(<var class="var">ncid</var>)</strong></dt>
<dd><p>Aborts all changes since the last time the dataset entered in define mode.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002eclose">
<h4 class="subsection">3.3.2 netcdf.close</h4>
<a class="index-entry-id" id="index-close"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002eclose_0028ncid_0029"><span class="category-def">: </span><strong class="def-name">netcdf.close(<var class="var">ncid</var>)</strong></dt>
<dd><p>Close the NetCDF file with the id <var class="var">ncid</var>.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002ecopyAtt">
<h4 class="subsection">3.3.3 netcdf.copyAtt</h4>
<a class="index-entry-id" id="index-copyAtt"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002ecopyAtt"><span class="category-def">: </span><strong class="def-name">netcdf.copyAtt</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">name</var>,<var class="var">ncid_out</var>,<var class="var">varid_out</var>)</code></dt>
<dd><p>Copies the attribute named <var class="var">old_name</var> of the variable <var class="var">varid</var> in the data set <var class="var">ncid</var>
to the variable <var class="var">varid_out</var> in the data set <var class="var">ncid_out</var>.
To copy a global attribute use netcdf.getConstant("global") for <var class="var">varid</var> or <var class="var">varid_out</var>.
</p>
<p><strong class="strong">See also:</strong> netcdf.getAtt,netcdf.getConstant.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002ecreate">
<h4 class="subsection">3.3.4 netcdf.create</h4>
<a class="index-entry-id" id="index-create"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002ecreate_0028filename_002cmode_0029"><span class="category-def">: </span><code class="def-type"><var class="var">ncid</var> =</code> <strong class="def-name">netcdf.create(<var class="var">filename</var>,<var class="var">mode</var>)</strong></dt>
<dd><p>Creates the file named <var class="var">filename</var> in the mode <var class="var">mode</var> which can have the
following values:
"clobber" (overwrite existing files),
"noclobber" (prevent to overwrite existing files)
"64bit_offset" (use the 64bit-offset format),
"netcdf4" (use the NetCDF4, i.e. HDF5 format) or
"share" (concurrent reading of the dataset).
<var class="var">mode</var> can also be the numeric value return by netcdf.getConstant. In the later-case it can be combined with a bitwise-or.
</p></dd></dl>
<h4 class="subsubheading" id="Example-8">Example</h4>
<div class="example">
<pre class="example-preformatted"> mode = bitor(netcdf.getConstant("classic_model"), ...
netcdf.getConstant("netcdf4"));
ncid = netcdf.create("test.nc",mode);
</pre></div>
</div>
<div class="subsection-level-extent" id="netcdf_002edefDim">
<h4 class="subsection">3.3.5 netcdf.defDim</h4>
<a class="index-entry-id" id="index-defDim"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002edefDim_0028ncid_002cname_002clen_0029"><span class="category-def">: </span><code class="def-type"><var class="var">dimid</var> =</code> <strong class="def-name">netcdf.defDim(<var class="var">ncid</var>,<var class="var">name</var>,<var class="var">len</var>)</strong></dt>
<dd><p>Define the dimension with the name <var class="var">name</var> and the length <var class="var">len</var> in the dataset <var class="var">ncid</var>. The id of the dimension is returned.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002edefGrp">
<h4 class="subsection">3.3.6 netcdf.defGrp</h4>
<a class="index-entry-id" id="index-defGrp"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002edefGrp_0028ncid_002cname_0029"><span class="category-def">: </span><code class="def-type"><var class="var">new_ncid</var> =</code> <strong class="def-name">netcdf.defGrp(<var class="var">ncid</var>,<var class="var">name</var>)</strong></dt>
<dd><p>Define a group in a NetCDF file.
</p>
<p><strong class="strong">See also:</strong> netcdf.inqGrps.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002edefVar">
<h4 class="subsection">3.3.7 netcdf.defVar</h4>
<a class="index-entry-id" id="index-defVar"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002edefVar_0028ncid_002cname_002cxtype_002cdimids_0029"><span class="category-def">: </span><code class="def-type"><var class="var">varid</var> =</code> <strong class="def-name">netcdf.defVar(<var class="var">ncid</var>,<var class="var">name</var>,<var class="var">xtype</var>,<var class="var">dimids</var>)</strong></dt>
<dd><p>Defines a variable with the name <var class="var">name</var> in the dataset <var class="var">ncid</var>. <var class="var">xtype</var> can be "byte", "ubyte", "short", "ushort", "int", "uint", "int64", "uint64", "float", "double", "char" or the corresponding number as returned by netcdf.getConstant. The parameter <var class="var">dimids</var> define the ids of the dimension. For scalar this parameter is the empty array ([]). The variable id is returned.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002edefVarChunking">
<h4 class="subsection">3.3.8 netcdf.defVarChunking</h4>
<a class="index-entry-id" id="index-defVarChunking"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002edefVarChunking"><span class="category-def">: </span><strong class="def-name">netcdf.defVarChunking</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">storage</var>,<var class="var">chunkSizes</var>)</code></dt>
<dd><p>Define the chunking settings of NetCDF variable <var class="var">varid</var>.
If <var class="var">storage</var> is the string "chunked", the variable is stored by chunk of the size <var class="var">chunkSizes</var>.
If <var class="var">storage</var> is the string "contiguous", the variable is stored in a contiguous way.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002edefVarDeflate">
<h4 class="subsection">3.3.9 netcdf.defVarDeflate</h4>
<a class="index-entry-id" id="index-defVarDeflate"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002edefVarDeflate"><span class="category-def">: </span><strong class="def-name">netcdf.defVarDeflate</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">shuffle</var>,<var class="var">deflate</var>,<var class="var">deflate_level</var>)</code></dt>
<dd><p>Define the compression settings NetCDF variable <var class="var">varid</var>.
If <var class="var">deflate</var> is true, then the variable is compressed. The compression level <var class="var">deflate_level</var> is an integer between 0 (no compression) and 9 (maximum compression).
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002edefVarFill">
<h4 class="subsection">3.3.10 netcdf.defVarFill</h4>
<a class="index-entry-id" id="index-defVarFill"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002edefVarFill_0028ncid_002cvarid_002cno_005ffill_002cfillvalue_0029"><span class="category-def">: </span><strong class="def-name">netcdf.defVarFill(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">no_fill</var>,<var class="var">fillvalue</var>)</strong></dt>
<dd><p>Define the fill-value settings of the NetCDF variable <var class="var">varid</var>.
If <var class="var">no_fill</var> is false, then the values between no-contiguous writes are filled with the value <var class="var">fill_value</var>. This is disabled by setting <var class="var">no_fill</var> to true.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002edefVarFletcher32">
<h4 class="subsection">3.3.11 netcdf.defVarFletcher32</h4>
<a class="index-entry-id" id="index-defVarFletcher32"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002edefVarFletcher32_0028ncid_002cvarid_002cchecksum_0029"><span class="category-def">: </span><strong class="def-name">netcdf.defVarFletcher32(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">checksum</var>)</strong></dt>
<dd><p>Defines the checksum settings of the variable with the id <var class="var">varid</var> in the data set <var class="var">ncid</var>. If <var class="var">checksum</var> is the string "FLETCHER32", then fletcher32 checksums will be turned on for this variable. If <var class="var">checksum</var> is "NOCHECKSUM", then checksums will be disabled.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002edefVlen">
<h4 class="subsection">3.3.12 netcdf.defVlen</h4>
<a class="index-entry-id" id="index-defVlen"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002edefVlen_0028ncid_002ctypename_002cbasetype_0029"><span class="category-def">: </span><code class="def-type"><var class="var">varid</var> =</code> <strong class="def-name">netcdf.defVlen(<var class="var">ncid</var>,<var class="var">typename</var>,<var class="var">basetype</var>)</strong></dt>
<dd><p>Defines a NC_VLEN variable length array type with the type name <var class="var">typename</var> and a base datatype of <var class="var">basetype</var> in the dataset <var class="var">ncid</var>. <var class="var">basetype</var> can be "byte", "ubyte", "short", "ushort", "int", "uint", "int64", "uint64", "float", "double", "char" or the corresponding number as returned by netcdf.getConstant. The new data type id is returned.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002edelAtt">
<h4 class="subsection">3.3.13 netcdf.delAtt</h4>
<a class="index-entry-id" id="index-delAtt"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002edelAtt_0028ncid_002cvarid_002cname_0029"><span class="category-def">: </span><strong class="def-name">netcdf.delAtt(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">name</var>)</strong></dt>
<dd><p>Deletes the attribute named <var class="var">name</var> of the variable <var class="var">varid</var> in the data set <var class="var">ncid</var>.
To delete a global attribute use netcdf.getConstant("global") for <var class="var">varid</var>.
</p>
<p><strong class="strong">See also:</strong> netcdf.defAtt,netcdf.getConstant.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002eendDef">
<h4 class="subsection">3.3.14 netcdf.endDef</h4>
<a class="index-entry-id" id="index-endDef"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002eendDef"><span class="category-def">: </span><strong class="def-name">netcdf.endDef</strong> <code class="def-code-arguments">(<var class="var">ncid</var>)</code></dt>
<dd><p>Leaves define-mode of NetCDF file <var class="var">ncid</var>.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002egetAtt">
<h4 class="subsection">3.3.15 netcdf.getAtt</h4>
<a class="index-entry-id" id="index-getAtt"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002egetAtt"><span class="category-def">: </span><code class="def-type"><var class="var">data</var> =</code> <strong class="def-name">netcdf.getAtt</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">name</var>)</code></dt>
<dd><p>Get the value of a NetCDF attribute.
This function returns the value of the attribute called <var class="var">name</var> of the variable
<var class="var">varid</var> in the NetCDF file <var class="var">ncid</var>. For global attributes <var class="var">varid</var> can be
netcdf.getConstant("global").
</p>
<p><strong class="strong">See also:</strong> netcdf.putAtt.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002egetChunkCache">
<h4 class="subsection">3.3.16 netcdf.getChunkCache</h4>
<a class="index-entry-id" id="index-getChunkCache"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002egetChunkCache_0028_0029"><span class="category-def">: </span><code class="def-type">[<var class="var">size</var>, <var class="var">nelems</var>, <var class="var">preemption</var>] =</code> <strong class="def-name">netcdf.getChunkCache()</strong></dt>
<dd><p>Gets the default chunk cache settings in the HDF5 library.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002egetConstant">
<h4 class="subsection">3.3.17 netcdf.getConstant</h4>
<a class="index-entry-id" id="index-getConstant"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002egetConstant_0028name_0029"><span class="category-def">: </span><code class="def-type"><var class="var">value</var> =</code> <strong class="def-name">netcdf.getConstant(<var class="var">name</var>)</strong></dt>
<dd><p>Returns the value of a NetCDF constant called <var class="var">name</var>.
</p>
<p><strong class="strong">See also:</strong> netcdf.getConstantNames.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002egetConstantNames">
<h4 class="subsection">3.3.18 netcdf.getConstantNames</h4>
<a class="index-entry-id" id="index-getConstantNames"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002egetConstantNames_0028_0029"><span class="category-def">: </span><code class="def-type"><var class="var">value</var> =</code> <strong class="def-name">netcdf.getConstantNames()</strong></dt>
<dd><p>Returns a list of all constant names.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002egetVar">
<h4 class="subsection">3.3.19 netcdf.getVar</h4>
<a class="index-entry-id" id="index-getVar"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002egetVar"><span class="category-def">: </span><code class="def-type"><var class="var">data</var> =</code> <strong class="def-name">netcdf.getVar</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>)</code></dt>
<dt class="deftypefnx def-cmd-deftypefn" id="index-netcdf_002egetVar-1"><span class="category-def">: </span><code class="def-type"><var class="var">data</var> =</code> <strong class="def-name">netcdf.getVar</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">start</var>)</code></dt>
<dt class="deftypefnx def-cmd-deftypefn" id="index-netcdf_002egetVar-2"><span class="category-def">: </span><code class="def-type"><var class="var">data</var> =</code> <strong class="def-name">netcdf.getVar</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">start</var>,<var class="var">count</var>)</code></dt>
<dt class="deftypefnx def-cmd-deftypefn" id="index-netcdf_002egetVar-3"><span class="category-def">: </span><code class="def-type"><var class="var">data</var> =</code> <strong class="def-name">netcdf.getVar</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">start</var>,<var class="var">count</var>,<var class="var">stride</var>)</code></dt>
<dd><p>Get the data from a NetCDF variable.
The data <var class="var">data</var> is loaded from the variable <var class="var">varid</var> of the NetCDF file <var class="var">ncid</var>.
<var class="var">start</var> is the start index of each dimension (0-based and defaults to a vector of zeros),
<var class="var">count</var> is the number of elements of to be written along each dimension (default all elements)
and <var class="var">stride</var> is the sampling interval.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einq">
<h4 class="subsection">3.3.20 netcdf.inq</h4>
<a class="index-entry-id" id="index-inq"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einq_0028ncid_0029"><span class="category-def">: </span><code class="def-type">[<var class="var">ndims</var>,<var class="var">nvars</var>,<var class="var">ngatts</var>,<var class="var">unlimdimid</var>] =</code> <strong class="def-name">netcdf.inq(<var class="var">ncid</var>)</strong></dt>
<dd><p>Return the number of dimension (<var class="var">ndims</var>), the number of variables (<var class="var">nvars</var>), the number of global attributes (<var class="var">ngatts</var>) and the id of the unlimited dimension (<var class="var">unlimdimid</var>).
If no unlimited dimension is declared -1 is returned. For NetCDF4 files, one should use
the function netcdf.inqUnlimDims as multiple unlimite dimension exists.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqAtt">
<h4 class="subsection">3.3.21 netcdf.inqAtt</h4>
<a class="index-entry-id" id="index-inqAtt"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqAtt_0028ncid_002cvarid_002cname_0029"><span class="category-def">: </span><code class="def-type">[<var class="var">xtype</var>,<var class="var">len</var>] =</code> <strong class="def-name">netcdf.inqAtt(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">name</var>)</strong></dt>
<dd><p>Get attribute type and length.
</p>
<p><strong class="strong">See also:</strong> netcdf.inqAttName.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqAttID">
<h4 class="subsection">3.3.22 netcdf.inqAttID</h4>
<a class="index-entry-id" id="index-inqAttID"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqAttID_0028ncid_002cvarid_002cattname_0029"><span class="category-def">: </span><code class="def-type"><var class="var">attnum</var> =</code> <strong class="def-name">netcdf.inqAttID(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">attname</var>)</strong></dt>
<dd><p>Return the attribute id <var class="var">attnum</var> of the attribute named <var class="var">attname</var> of the variable <var class="var">varid</var> in the dataset <var class="var">ncid</var>.
For global attributes <var class="var">varid</var> can be
netcdf.getConstant("global").
</p>
<p><strong class="strong">See also:</strong> netcdf.inqAttName.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqAttName">
<h4 class="subsection">3.3.23 netcdf.inqAttName</h4>
<a class="index-entry-id" id="index-inqAttName"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqAttName"><span class="category-def">: </span><code class="def-type"><var class="var">name</var> =</code> <strong class="def-name">netcdf.inqAttName</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">attnum</var>)</code></dt>
<dd><p>Get the name of a NetCDF attribute.
This function returns the name of the attribute with the id <var class="var">attnum</var> of the variable
<var class="var">varid</var> in the NetCDF file <var class="var">ncid</var>. For global attributes <var class="var">varid</var> can be
netcdf.getConstant("global").
</p>
<p><strong class="strong">See also:</strong> netcdf.inqAttName.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqDim">
<h4 class="subsection">3.3.24 netcdf.inqDim</h4>
<a class="index-entry-id" id="index-inqDim"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqDim_0028ncid_002cdimid_0029"><span class="category-def">: </span><code class="def-type">[<var class="var">name</var>,<var class="var">length</var>] =</code> <strong class="def-name">netcdf.inqDim(<var class="var">ncid</var>,<var class="var">dimid</var>)</strong></dt>
<dd><p>Returns the name and length of a NetCDF dimension.
</p>
<p><strong class="strong">See also:</strong> netcdf.inqDimID.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqDimID">
<h4 class="subsection">3.3.25 netcdf.inqDimID</h4>
<a class="index-entry-id" id="index-inqDimID"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqDimID_0028ncid_002cdimname_0029"><span class="category-def">: </span><code class="def-type"><var class="var">dimid</var> =</code> <strong class="def-name">netcdf.inqDimID(<var class="var">ncid</var>,<var class="var">dimname</var>)</strong></dt>
<dd><p>Return the id of a NetCDF dimension.
</p>
<p><strong class="strong">See also:</strong> netcdf.inqDim.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqDimIDs">
<h4 class="subsection">3.3.26 netcdf.inqDimIDs</h4>
<a class="index-entry-id" id="index-inqDimIDs"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqDimID_0028ncid_0029"><span class="category-def">: </span><code class="def-type"><var class="var">dimids</var> =</code> <strong class="def-name">netcdf.inqDimID(<var class="var">ncid</var>)</strong></dt>
<dt class="deftypefnx def-cmd-deftypefn" id="index-netcdf_002einqDimID_0028ncid_002cinclude_005fparents_0029"><span class="category-def">: </span><code class="def-type"><var class="var">dimids</var> =</code> <strong class="def-name">netcdf.inqDimID(<var class="var">ncid</var>,<var class="var">include_parents</var>)</strong></dt>
<dd><p>Return the dimension ids defined in a NetCDF file.
If <var class="var">include_parents</var> is 1, the dimension ids of the parent group are also returned.
Per default this is not the case (<var class="var">include_parents</var> is 0).
</p>
<p><strong class="strong">See also:</strong> netcdf.inqDim.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqFormat">
<h4 class="subsection">3.3.27 netcdf.inqFormat</h4>
<a class="index-entry-id" id="index-inqFormat"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqFormat_0028ncid_0029"><span class="category-def">: </span><code class="def-type"><var class="var">format</var> =</code> <strong class="def-name">netcdf.inqFormat(<var class="var">ncid</var>)</strong></dt>
<dd><p>Return the NetCDF format of the dataset <var class="var">ncid</var>.
Format might be one of the following
"FORMAT_CLASSIC", "FORMAT_64BIT", "FORMAT_NETCDF4" or "FORMAT_NETCDF4_CLASSIC"
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqGrpFullNcid">
<h4 class="subsection">3.3.28 netcdf.inqGrpFullNcid</h4>
<a class="index-entry-id" id="index-inqGrpFullNcid"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqGrpFullNcid_0028ncid_002cname_0029"><span class="category-def">: </span><code class="def-type"><var class="var">grp_ncid</var> =</code> <strong class="def-name">netcdf.inqGrpFullNcid(<var class="var">ncid</var>,<var class="var">name</var>)</strong></dt>
<dd><p>Return the group id based on the full group name.
</p>
<p><strong class="strong">See also:</strong> netcdf.inqGrpName.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqGrpName">
<h4 class="subsection">3.3.29 netcdf.inqGrpName</h4>
<a class="index-entry-id" id="index-inqGrpName"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqGrpName_0028ncid_0029"><span class="category-def">: </span><code class="def-type"><var class="var">name</var> =</code> <strong class="def-name">netcdf.inqGrpName(<var class="var">ncid</var>)</strong></dt>
<dd><p>Return group name in a NetCDF file.
</p>
<p><strong class="strong">See also:</strong> netcdf.inqGrps.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqGrpNameFull">
<h4 class="subsection">3.3.30 netcdf.inqGrpNameFull</h4>
<a class="index-entry-id" id="index-inqGrpNameFull"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqGrpNameFull_0028ncid_0029"><span class="category-def">: </span><code class="def-type"><var class="var">name</var> =</code> <strong class="def-name">netcdf.inqGrpNameFull(<var class="var">ncid</var>)</strong></dt>
<dd><p>Return full name of group in NetCDF file.
</p>
<p><strong class="strong">See also:</strong> netcdf.inqGrpName.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqGrpParent">
<h4 class="subsection">3.3.31 netcdf.inqGrpParent</h4>
<a class="index-entry-id" id="index-inqGrpParent"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqGrpParent_0028ncid_0029"><span class="category-def">: </span><code class="def-type"><var class="var">parent_ncid</var> =</code> <strong class="def-name">netcdf.inqGrpParent(<var class="var">ncid</var>)</strong></dt>
<dd><p>Return id of the parent group
</p>
<p><strong class="strong">See also:</strong> netcdf.inqGrpName.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqGrps">
<h4 class="subsection">3.3.32 netcdf.inqGrps</h4>
<a class="index-entry-id" id="index-inqGrps"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqGrps_0028ncid_0029"><span class="category-def">: </span><code class="def-type"><var class="var">ncids</var> =</code> <strong class="def-name">netcdf.inqGrps(<var class="var">ncid</var>)</strong></dt>
<dd><p>Return all groups ids in a NetCDF file.
</p>
<p><strong class="strong">See also:</strong> netcdf.inqGrps.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqLibVers">
<h4 class="subsection">3.3.33 netcdf.inqLibVers</h4>
<a class="index-entry-id" id="index-inqLibVers"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqLibVers_0028_0029"><span class="category-def">: </span><code class="def-type"><var class="var">vers</var> =</code> <strong class="def-name">netcdf.inqLibVers()</strong></dt>
<dd><p>Returns the version of the NetCDF library.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqNcid">
<h4 class="subsection">3.3.34 netcdf.inqNcid</h4>
<a class="index-entry-id" id="index-inqNcid"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqNcid_0028ncid_002cname_0029"><span class="category-def">: </span><code class="def-type"><var class="var">grp_ncid</var> =</code> <strong class="def-name">netcdf.inqNcid(<var class="var">ncid</var>,<var class="var">name</var>)</strong></dt>
<dd><p>Return group id based on its name
</p>
<p><strong class="strong">See also:</strong> netcdf.inqGrpFullNcid.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqUnlimDims">
<h4 class="subsection">3.3.35 netcdf.inqUnlimDims</h4>
<a class="index-entry-id" id="index-inqUnlimDims"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqUnlimDims_0028ncid_0029"><span class="category-def">: </span><code class="def-type"><var class="var">unlimdimids</var> =</code> <strong class="def-name">netcdf.inqUnlimDims(<var class="var">ncid</var>)</strong></dt>
<dd><p>Return the id of all unlimited dimensions of the NetCDF file <var class="var">ncid</var>.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqUserType">
<h4 class="subsection">3.3.36 netcdf.inqUserType</h4>
<a class="index-entry-id" id="index-inqUserType"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqUserType_0028ncid_002ctypeid_0029"><span class="category-def">: </span><code class="def-type">[<var class="var">typename</var>, <var class="var">bytesize</var>, <var class="var">basetypeid</var>, <var class="var">numfields</var>, <var class="var">classid</var>] =</code> <strong class="def-name">netcdf.inqUserType(<var class="var">ncid</var>,<var class="var">typeid</var>)</strong></dt>
<dd><p>Provide information on a user defined type <var class="var">typeid</var> in the dataset <var class="var">ncid</var>.
</p>
<p>The function returns the typename, bytesize, base type id, number of fields and class identifier of the type.
</p>
</dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqVar">
<h4 class="subsection">3.3.37 netcdf.inqVar</h4>
<a class="index-entry-id" id="index-inqVar"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqVar"><span class="category-def">: </span><code class="def-type">[<var class="var">name</var>,<var class="var">nctype</var>,<var class="var">dimids</var>,<var class="var">nattr</var>] =</code> <strong class="def-name">netcdf.inqVar</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>)</code></dt>
<dd><p>Inquires information about a NetCDF variable.
This functions returns the <var class="var">name</var>, the NetCDF type <var class="var">nctype</var>, an array of dimension ids
<var class="var">dimids</var> and the number of attributes <var class="var">nattr</var> of the NetCDF variable. <var class="var">nctype</var> in an
integer corresponding NetCDF constants.
</p>
<p><strong class="strong">See also:</strong> netcdf.inqVarID,netcdf.getConstant.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqVarChunking">
<h4 class="subsection">3.3.38 netcdf.inqVarChunking</h4>
<a class="index-entry-id" id="index-inqVarChunking"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqVarChunking"><span class="category-def">: </span><code class="def-type">[<var class="var">storage</var>,<var class="var">chunkSizes</var>] =</code> <strong class="def-name">netcdf.inqVarChunking</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>)</code></dt>
<dd><p>Determines the chunking settings of NetCDF variable <var class="var">varid</var>.
If <var class="var">storage</var> is the string "chunked", the variable is stored by chunk of the size <var class="var">chunkSizes</var>.
If <var class="var">storage</var> is the string "contiguous", the variable is stored in a contiguous way.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqVarDeflate">
<h4 class="subsection">3.3.39 netcdf.inqVarDeflate</h4>
<a class="index-entry-id" id="index-inqVarDeflate"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqVarDeflate"><span class="category-def">: </span><code class="def-type">[<var class="var">shuffle</var>,<var class="var">deflate</var>,<var class="var">deflate_level</var>] =</code> <strong class="def-name">netcdf.inqVarDeflate</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>)</code></dt>
<dd><p>Determines the compression settings NetCDF variable <var class="var">varid</var>.
If <var class="var">deflate</var> is true, then the variable is compressed. The compression level <var class="var">deflate_level</var> is an integer between 0 (no compression) and 9 (maximum compression).
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqVarFill">
<h4 class="subsection">3.3.40 netcdf.inqVarFill</h4>
<a class="index-entry-id" id="index-inqVarFill"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqVarFill_0028ncid_002cvarid_0029"><span class="category-def">: </span><code class="def-type">[<var class="var">no_fill</var>,<var class="var">fillvalue</var>] =</code> <strong class="def-name">netcdf.inqVarFill(<var class="var">ncid</var>,<var class="var">varid</var>)</strong></dt>
<dd><p>Determines the fill-value settings of the NetCDF variable <var class="var">varid</var>.
If <var class="var">no_fill</var> is false, then the values between no-contiguous writes are filled with the value <var class="var">fill_value</var>. This is disabled by setting <var class="var">no_fill</var> to true.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqVarFletcher32">
<h4 class="subsection">3.3.41 netcdf.inqVarFletcher32</h4>
<a class="index-entry-id" id="index-inqVarFletcher32"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqVarFletcher32_0028ncid_002cvarid_0029"><span class="category-def">: </span><code class="def-type"><var class="var">checksum</var> =</code> <strong class="def-name">netcdf.inqVarFletcher32(<var class="var">ncid</var>,<var class="var">varid</var>)</strong></dt>
<dd><p>Determines the checksum settings of the variable with the id <var class="var">varid</var> in the data set <var class="var">ncid</var>. If fletcher32 checksums is turned on for this variable, then <var class="var">checksum</var> is the string "FLETCHER32". Otherwise it is the string "NOCHECKSUM".
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqVarID">
<h4 class="subsection">3.3.42 netcdf.inqVarID</h4>
<a class="index-entry-id" id="index-inqVarID"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqVarID"><span class="category-def">: </span><code class="def-type"><var class="var">varid</var> =</code> <strong class="def-name">netcdf.inqVarID</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">name</var>)</code></dt>
<dd><p>Return the id of a variable based on its name.
</p>
<p><strong class="strong">See also:</strong> netcdf.defVar,netcdf.inqVarIDs.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqVarIDs">
<h4 class="subsection">3.3.43 netcdf.inqVarIDs</h4>
<a class="index-entry-id" id="index-inqVarIDs"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqVarID-1"><span class="category-def">: </span><code class="def-type"><var class="var">varids</var> =</code> <strong class="def-name">netcdf.inqVarID</strong> <code class="def-code-arguments">(<var class="var">ncid</var>)</code></dt>
<dd><p>Return all variable ids.
This functions returns all variable ids in a NetCDF file or NetCDF group.
</p>
<p><strong class="strong">See also:</strong> netcdf.inqVarID.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002einqVlen">
<h4 class="subsection">3.3.44 netcdf.inqVlen</h4>
<a class="index-entry-id" id="index-inqVlen"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002einqVlen_0028ncid_002ctypeid_0029"><span class="category-def">: </span><code class="def-type">[<var class="var">typename</var>, <var class="var">bytesize</var>, <var class="var">basetypeid</var>] =</code> <strong class="def-name">netcdf.inqVlen(<var class="var">ncid</var>,<var class="var">typeid</var>)</strong></dt>
<dd><p>Provide information on a NC_VLEN variable length array type <var class="var">typeid</var> in the dataset <var class="var">ncid</var>.
</p>
<p>The function returns the typename, bytesize, and base type id.
</p>
</dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002eopen">
<h4 class="subsection">3.3.45 netcdf.open</h4>
<a class="index-entry-id" id="index-open"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002eopen_0028filename_002cmode_0029"><span class="category-def">: </span><code class="def-type"><var class="var">ncid</var> =</code> <strong class="def-name">netcdf.open(<var class="var">filename</var>,<var class="var">mode</var>)</strong></dt>
<dd><p>Opens the file named <var class="var">filename</var> in the mode <var class="var">mode</var>.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002eputAtt">
<h4 class="subsection">3.3.46 netcdf.putAtt</h4>
<a class="index-entry-id" id="index-putAtt"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002eputAtt"><span class="category-def">: </span><strong class="def-name">netcdf.putAtt</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">name</var>,<var class="var">data</var>)</code></dt>
<dd><p>Defines a NetCDF attribute.
This function defines the attribute called <var class="var">name</var> of the variable
<var class="var">varid</var> in the NetCDF file <var class="var">ncid</var>. The value of the attribute will be <var class="var">data</var>.
For global attributes <var class="var">varid</var> can be
netcdf.getConstant("global").
</p>
<p><strong class="strong">See also:</strong> netcdf.getAtt.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002eputVar">
<h4 class="subsection">3.3.47 netcdf.putVar</h4>
<a class="index-entry-id" id="index-putVar"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002eputVar"><span class="category-def">: </span><strong class="def-name">netcdf.putVar</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">data</var>)</code></dt>
<dt class="deftypefnx def-cmd-deftypefn" id="index-netcdf_002eputVar-1"><span class="category-def">: </span><strong class="def-name">netcdf.putVar</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">start</var>,<var class="var">data</var>)</code></dt>
<dt class="deftypefnx def-cmd-deftypefn" id="index-netcdf_002eputVar-2"><span class="category-def">: </span><strong class="def-name">netcdf.putVar</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">start</var>,<var class="var">count</var>,<var class="var">data</var>)</code></dt>
<dt class="deftypefnx def-cmd-deftypefn" id="index-netcdf_002eputVar-3"><span class="category-def">: </span><strong class="def-name">netcdf.putVar</strong> <code class="def-code-arguments">(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">start</var>,<var class="var">count</var>,<var class="var">stride</var>,<var class="var">data</var>)</code></dt>
<dd><p>Put data in a NetCDF variable.
The data <var class="var">data</var> is stored in the variable <var class="var">varid</var> of the NetCDF file <var class="var">ncid</var>.
<var class="var">start</var> is the start index of each dimension (0-based and defaults to a vector of zeros),
<var class="var">count</var> is the number of elements of to be written along each dimension (default all elements)
and <var class="var">stride</var> is the sampling interval.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002ereDef">
<h4 class="subsection">3.3.48 netcdf.reDef</h4>
<a class="index-entry-id" id="index-reDef"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002ereDef"><span class="category-def">: </span><strong class="def-name">netcdf.reDef</strong> <code class="def-code-arguments">(<var class="var">ncid</var>)</code></dt>
<dd><p>Enter define-mode of NetCDF file <var class="var">ncid</var>.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002erenameAtt">
<h4 class="subsection">3.3.49 netcdf.renameAtt</h4>
<a class="index-entry-id" id="index-renameAtt"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002erenameAtt_0028ncid_002cvarid_002cold_005fname_002cnew_005fname_0029"><span class="category-def">: </span><strong class="def-name">netcdf.renameAtt(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">old_name</var>,<var class="var">new_name</var>)</strong></dt>
<dd><p>Renames the attribute named <var class="var">old_name</var> of the variable <var class="var">varid</var> in the data set <var class="var">ncid</var>. <var class="var">new_name</var> is the new name of the attribute.
To rename a global attribute use netcdf.getConstant("global") for <var class="var">varid</var>.
</p>
<p><strong class="strong">See also:</strong> netcdf.copyAtt,netcdf.getConstant.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002erenameDim">
<h4 class="subsection">3.3.50 netcdf.renameDim</h4>
<a class="index-entry-id" id="index-renameDim"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002erenameDim_0028ncid_002cdimid_002cname_0029"><span class="category-def">: </span><strong class="def-name">netcdf.renameDim(<var class="var">ncid</var>,<var class="var">dimid</var>,<var class="var">name</var>)</strong></dt>
<dd><p>Renames the dimension with the id <var class="var">dimid</var> in the data set <var class="var">ncid</var>. <var class="var">name</var> is the new name of the dimension.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002erenameVar">
<h4 class="subsection">3.3.51 netcdf.renameVar</h4>
<a class="index-entry-id" id="index-renameVar"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002erenameVar_0028ncid_002cvarid_002cname_0029"><span class="category-def">: </span><strong class="def-name">netcdf.renameVar(<var class="var">ncid</var>,<var class="var">varid</var>,<var class="var">name</var>)</strong></dt>
<dd><p>Renames the variable with the id <var class="var">varid</var> in the data set <var class="var">ncid</var>. <var class="var">name</var> is the new name of the variable.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002esetChunkCache">
<h4 class="subsection">3.3.52 netcdf.setChunkCache</h4>
<a class="index-entry-id" id="index-setChunkCache"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002esetChunkCache_0028size_002c"><span class="category-def">: </span><strong class="def-name">netcdf.setChunkCache(<var class="var">size</var>,</strong> <code class="def-code-arguments"><var class="var">nelems</var>, <var class="var">preemption</var>)</code></dt>
<dd><p>Sets the default chunk cache settings in the HDF5 library. The settings applies to all files which are subsequently opened or created.
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002esetDefaultFormat">
<h4 class="subsection">3.3.53 netcdf.setDefaultFormat</h4>
<a class="index-entry-id" id="index-setDefaultFormat"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002esetDefaultFormat_0028format_0029"><span class="category-def">: </span><code class="def-type"><var class="var">old_format</var> =</code> <strong class="def-name">netcdf.setDefaultFormat(<var class="var">format</var>)</strong></dt>
<dd><p>Sets the default format of the NetCDF library and returns the previous default format (as a numeric value). <var class="var">format</var> can be
"format_classic", "format_64bit", "format_netcdf4" or "format_netcdf4_classic".
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002esetFill">
<h4 class="subsection">3.3.54 netcdf.setFill</h4>
<a class="index-entry-id" id="index-setFill"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002esetFill_0028ncid_002cfillmode_0029"><span class="category-def">: </span><code class="def-type"><var class="var">old_mode</var> =</code> <strong class="def-name">netcdf.setFill(<var class="var">ncid</var>,<var class="var">fillmode</var>)</strong></dt>
<dd><p>Change the fill mode (<var class="var">fillmode</var>) of the data set <var class="var">ncid</var>. The previous value of the fill mode is returned. <var class="var">fillmode</var> can be either "fill" or "nofill".
</p></dd></dl>
</div>
<div class="subsection-level-extent" id="netcdf_002esync">
<h4 class="subsection">3.3.55 netcdf.sync</h4>
<a class="index-entry-id" id="index-sync"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-netcdf_002esync_0028ncid_0029"><span class="category-def">: </span><strong class="def-name">netcdf.sync(<var class="var">ncid</var>)</strong></dt>
<dd><p>Writes all changes to the disk and leaves the file open.
</p></dd></dl>
<hr>
</div>
</div>
<div class="section-level-extent" id="Import-functions-_0028Deprecated_0029">
<h3 class="section" id="Import-functions-_0028Deprecated_0029-1">3.4 Import functions (Deprecated)</h3>
<a class="index-entry-id" id="index-Import-functions-_0028Deprecated_0029"></a>
<div class="subsection-level-extent" id="import_005fnetcdf">
<h4 class="subsection">3.4.1 import_netcdf</h4>
<a class="index-entry-id" id="index-import_005fnetcdf"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-import_005ffits"><span class="category-def">: </span><strong class="def-name">import_fits</strong></dt>
<dd><p>Dummy function provided to provide compatibility with older versions of GNU Octave netcdf
</p>
<p>Function is deprecated.
</p></dd></dl>
<hr>
</div>
</div>
<div class="section-level-extent" id="Test-function">
<h3 class="section" id="Test-function-1">3.5 Test function</h3>
<a class="index-entry-id" id="index-Test-function"></a>
<div class="subsection-level-extent" id="test_005fnetcdf">
<h4 class="subsection">3.5.1 test_netcdf</h4>
<a class="index-entry-id" id="index-test_005fnetcdf"></a>
<dl class="first-deftypefn">
<dt class="deftypefn" id="index-test_005fnetcdf-1"><span class="category-def">: </span><strong class="def-name">test_netcdf</strong></dt>
<dd><p>Function to do a basic test of the netcdf interface
</p></dd></dl>
<hr>
</div>
</div>
</div>
<div class="appendix-level-extent" id="Copying">
<h2 class="appendix" id="GNU-General-Public-License">Appendix A GNU General Public License</h2>
<a class="index-entry-id" id="index-warranty"></a>
<a class="index-entry-id" id="index-copyright"></a>
<div class="center">Version 3, 29 June 2007
</div>
<div class="display">
<pre class="display-preformatted">Copyright © 2007 Free Software Foundation, Inc. <a class="url" href="http://fsf.org/">http://fsf.org/</a>
Everyone is permitted to copy and distribute verbatim copies of this
license document, but changing it is not allowed.
</pre></div>
<h3 class="heading" id="Preamble">Preamble</h3>
<p>The GNU General Public License is a free, copyleft license for
software and other kinds of works.
</p>
<p>The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom
to share and change all versions of a program—to make sure it remains
free software for all its users. We, the Free Software Foundation,
use the GNU General Public License for most of our software; it
applies also to any other work released this way by its authors. You
can apply it to your programs, too.
</p>
<p>When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
</p>
<p>To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you
have certain responsibilities if you distribute copies of the
software, or if you modify it: responsibilities to respect the freedom
of others.
</p>
<p>For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too,
receive or can get the source code. And you must show them these
terms so they know their rights.
</p>
<p>Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
</p>
<p>For the developers’ and authors’ protection, the GPL clearly explains
that there is no warranty for this free software. For both users’ and
authors’ sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
</p>
<p>Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the
manufacturer can do so. This is fundamentally incompatible with the
aim of protecting users’ freedom to change the software. The
systematic pattern of such abuse occurs in the area of products for
individuals to use, which is precisely where it is most unacceptable.
Therefore, we have designed this version of the GPL to prohibit the
practice for those products. If such problems arise substantially in
other domains, we stand ready to extend this provision to those
domains in future versions of the GPL, as needed to protect the
freedom of users.
</p>
<p>Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish
to avoid the special danger that patents applied to a free program
could make it effectively proprietary. To prevent this, the GPL
assures that patents cannot be used to render the program non-free.
</p>
<p>The precise terms and conditions for copying, distribution and
modification follow.
</p>
<h3 class="heading" id="TERMS-AND-CONDITIONS">TERMS AND CONDITIONS</h3>
<ol class="enumerate" start="0">
<li> Definitions.
<p>“This License” refers to version 3 of the GNU General Public License.
</p>
<p>“Copyright” also means copyright-like laws that apply to other kinds
of works, such as semiconductor masks.
</p>
<p>“The Program” refers to any copyrightable work licensed under this
License. Each licensee is addressed as “you”. “Licensees” and
“recipients” may be individuals or organizations.
</p>
<p>To “modify” a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of
an exact copy. The resulting work is called a “modified version” of
the earlier work or a work “based on” the earlier work.
</p>
<p>A “covered work” means either the unmodified Program or a work based
on the Program.
</p>
<p>To “propagate” a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
</p>
<p>To “convey” a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user
through a computer network, with no transfer of a copy, is not
conveying.
</p>
<p>An interactive user interface displays “Appropriate Legal Notices” to
the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
</p>
</li><li> Source Code.
<p>The “source code” for a work means the preferred form of the work for
making modifications to it. “Object code” means any non-source form
of a work.
</p>
<p>A “Standard Interface” means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
</p>
<p>The “System Libraries” of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
“Major Component”, in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
</p>
<p>The “Corresponding Source” for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work’s
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
</p>
<p>The Corresponding Source need not include anything that users can
regenerate automatically from other parts of the Corresponding Source.
</p>
<p>The Corresponding Source for a work in source code form is that same
work.
</p>
</li><li> Basic Permissions.
<p>All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
</p>
<p>You may make, run and propagate covered works that you do not convey,
without conditions so long as your license otherwise remains in force.
You may convey covered works to others for the sole purpose of having
them make modifications exclusively for you, or provide you with
facilities for running those works, provided that you comply with the
terms of this License in conveying all material for which you do not
control copyright. Those thus making or running the covered works for
you must do so exclusively on your behalf, under your direction and
control, on terms that prohibit them from making any copies of your
copyrighted material outside their relationship with you.
</p>
<p>Conveying under any other circumstances is permitted solely under the
conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
</p>
</li><li> Protecting Users’ Legal Rights From Anti-Circumvention Law.
<p>No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
</p>
<p>When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such
circumvention is effected by exercising rights under this License with
respect to the covered work, and you disclaim any intention to limit
operation or modification of the work as a means of enforcing, against
the work’s users, your or third parties’ legal rights to forbid
circumvention of technological measures.
</p>
</li><li> Conveying Verbatim Copies.
<p>You may convey verbatim copies of the Program’s source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
</p>
<p>You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
</p>
</li><li> Conveying Modified Source Versions.
<p>You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these
conditions:
</p>
<ol class="enumerate" type="a" start="1">
<li> The work must carry prominent notices stating that you modified it,
and giving a relevant date.
</li><li> The work must carry prominent notices stating that it is released
under this License and any conditions added under section 7. This
requirement modifies the requirement in section 4 to “keep intact all
notices”.
</li><li> You must license the entire work, as a whole, under this License to
anyone who comes into possession of a copy. This License will
therefore apply, along with any applicable section 7 additional terms,
to the whole of the work, and all its parts, regardless of how they
are packaged. This License gives no permission to license the work in
any other way, but it does not invalidate such permission if you have
separately received it.
</li><li> If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your work
need not make them do so.
</li></ol>
<p>A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
“aggregate” if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation’s users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
</p>
</li><li> Conveying Non-Source Forms.
<p>You may convey a covered work in object code form under the terms of
sections 4 and 5, provided that you also convey the machine-readable
Corresponding Source under the terms of this License, in one of these
ways:
</p>
<ol class="enumerate" type="a" start="1">
<li> Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium customarily
used for software interchange.
</li><li> Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a written
offer, valid for at least three years and valid for as long as you
offer spare parts or customer support for that product model, to give
anyone who possesses the object code either (1) a copy of the
Corresponding Source for all the software in the product that is
covered by this License, on a durable physical medium customarily used
for software interchange, for a price no more than your reasonable
cost of physically performing this conveying of source, or (2) access
to copy the Corresponding Source from a network server at no charge.
</li><li> Convey individual copies of the object code with a copy of the written
offer to provide the Corresponding Source. This alternative is
allowed only occasionally and noncommercially, and only if you
received the object code with such an offer, in accord with subsection
6b.
</li><li> Convey the object code by offering access from a designated place
(gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to copy
the object code is a network server, the Corresponding Source may be
on a different server (operated by you or a third party) that supports
equivalent copying facilities, provided you maintain clear directions
next to the object code saying where to find the Corresponding Source.
Regardless of what server hosts the Corresponding Source, you remain
obligated to ensure that it is available for as long as needed to
satisfy these requirements.
</li><li> Convey the object code using peer-to-peer transmission, provided you
inform other peers where the object code and Corresponding Source of
the work are being offered to the general public at no charge under
subsection 6d.
</li></ol>
<p>A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
</p>
<p>A “User Product” is either (1) a “consumer product”, which means any
tangible personal property which is normally used for personal,
family, or household purposes, or (2) anything designed or sold for
incorporation into a dwelling. In determining whether a product is a
consumer product, doubtful cases shall be resolved in favor of
coverage. For a particular product received by a particular user,
“normally used” refers to a typical or common use of that class of
product, regardless of the status of the particular user or of the way
in which the particular user actually uses, or expects or is expected
to use, the product. A product is a consumer product regardless of
whether the product has substantial commercial, industrial or
non-consumer uses, unless such uses represent the only significant
mode of use of the product.
</p>
<p>“Installation Information” for a User Product means any methods,
procedures, authorization keys, or other information required to
install and execute modified versions of a covered work in that User
Product from a modified version of its Corresponding Source. The
information must suffice to ensure that the continued functioning of
the modified object code is in no case prevented or interfered with
solely because modification has been made.
</p>
<p>If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
</p>
<p>The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or
updates for a work that has been modified or installed by the
recipient, or for the User Product in which it has been modified or
installed. Access to a network may be denied when the modification
itself materially and adversely affects the operation of the network
or violates the rules and protocols for communication across the
network.
</p>
<p>Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
</p>
</li><li> Additional Terms.
<p>“Additional permissions” are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
</p>
<p>When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
</p>
<p>Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders
of that material) supplement the terms of this License with terms:
</p>
<ol class="enumerate" type="a" start="1">
<li> Disclaiming warranty or limiting liability differently from the terms
of sections 15 and 16 of this License; or
</li><li> Requiring preservation of specified reasonable legal notices or author
attributions in that material or in the Appropriate Legal Notices
displayed by works containing it; or
</li><li> Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
</li><li> Limiting the use for publicity purposes of names of licensors or
authors of the material; or
</li><li> Declining to grant rights under trademark law for use of some trade
names, trademarks, or service marks; or
</li><li> Requiring indemnification of licensors and authors of that material by
anyone who conveys the material (or modified versions of it) with
contractual assumptions of liability to the recipient, for any
liability that these contractual assumptions directly impose on those
licensors and authors.
</li></ol>
<p>All other non-permissive additional terms are considered “further
restrictions” within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
</p>
<p>If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
</p>
<p>Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions; the
above requirements apply either way.
</p>
</li><li> Termination.
<p>You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
</p>
<p>However, if you cease all violation of this License, then your license
from a particular copyright holder is reinstated (a) provisionally,
unless and until the copyright holder explicitly and finally
terminates your license, and (b) permanently, if the copyright holder
fails to notify you of the violation by some reasonable means prior to
60 days after the cessation.
</p>
<p>Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
</p>
<p>Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
</p>
</li><li> Acceptance Not Required for Having Copies.
<p>You are not required to accept this License in order to receive or run
a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
</p>
</li><li> Automatic Licensing of Downstream Recipients.
<p>Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
</p>
<p>An “entity transaction” is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party’s predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
</p>
<p>You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
</p>
</li><li> Patents.
<p>A “contributor” is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor’s “contributor version”.
</p>
<p>A contributor’s “essential patent claims” are all patent claims owned
or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, “control” includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
</p>
<p>Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor’s essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
</p>
<p>In the following three paragraphs, a “patent license” is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To “grant” such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
</p>
<p>If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. “Knowingly relying” means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient’s use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
</p>
<p>If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
</p>
<p>A patent license is “discriminatory” if it does not include within the
scope of its coverage, prohibits the exercise of, or is conditioned on
the non-exercise of one or more of the rights that are specifically
granted under this License. You may not convey a covered work if you
are a party to an arrangement with a third party that is in the
business of distributing software, under which you make payment to the
third party based on the extent of your activity of conveying the
work, and under which the third party grants, to any of the parties
who would receive the covered work from you, a discriminatory patent
license (a) in connection with copies of the covered work conveyed by
you (or copies made from those copies), or (b) primarily for and in
connection with specific products or compilations that contain the
covered work, unless you entered into that arrangement, or that patent
license was granted, prior to 28 March 2007.
</p>
<p>Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
</p>
</li><li> No Surrender of Others’ Freedom.
<p>If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey
a covered work so as to satisfy simultaneously your obligations under
this License and any other pertinent obligations, then as a
consequence you may not convey it at all. For example, if you agree
to terms that obligate you to collect a royalty for further conveying
from those to whom you convey the Program, the only way you could
satisfy both those terms and this License would be to refrain entirely
from conveying the Program.
</p>
</li><li> Use with the GNU Affero General Public License.
<p>Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
</p>
</li><li> Revised Versions of this License.
<p>The Free Software Foundation may publish revised and/or new versions
of the GNU General Public License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns.
</p>
<p>Each version is given a distinguishing version number. If the Program
specifies that a certain numbered version of the GNU General Public
License “or any later version” applies to it, you have the option of
following the terms and conditions either of that numbered version or
of any later version published by the Free Software Foundation. If
the Program does not specify a version number of the GNU General
Public License, you may choose any version ever published by the Free
Software Foundation.
</p>
<p>If the Program specifies that a proxy can decide which future versions
of the GNU General Public License can be used, that proxy’s public
statement of acceptance of a version permanently authorizes you to
choose that version for the Program.
</p>
<p>Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
</p>
</li><li> Disclaimer of Warranty.
<p>THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT
WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE
DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
CORRECTION.
</p>
</li><li> Limitation of Liability.
<p>IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR
CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES
ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT
NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR
LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM
TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER
PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
</p>
</li><li> Interpretation of Sections 15 and 16.
<p>If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
</p>
</li></ol>
<h3 class="heading" id="END-OF-TERMS-AND-CONDITIONS">END OF TERMS AND CONDITIONS</h3>
<h3 class="heading" id="How-to-Apply-These-Terms-to-Your-New-Programs">How to Apply These Terms to Your New Programs</h3>
<p>If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.
</p>
<p>To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the “copyright” line and a pointer to where the full notice is found.
</p>
<div class="example smallexample">
<pre class="example-preformatted"><var class="var">one line to give the program's name and a brief idea of what it does.</var>
Copyright (C) <var class="var">year</var> <var class="var">name of author</var>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or (at
your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <a class="url" href="http://www.gnu.org/licenses/">http://www.gnu.org/licenses/</a>.
</pre></div>
<p>Also add information on how to contact you by electronic and paper mail.
</p>
<p>If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
</p>
<div class="example smallexample">
<pre class="example-preformatted"><var class="var">program</var> Copyright (C) <var class="var">year</var> <var class="var">name of author</var>
This program comes with ABSOLUTELY NO WARRANTY; for details type ‘<samp class="samp">show w</samp>’.
This is free software, and you are welcome to redistribute it
under certain conditions; type ‘<samp class="samp">show c</samp>’ for details.
</pre></div>
<p>The hypothetical commands ‘<samp class="samp">show w</samp>’ and ‘<samp class="samp">show c</samp>’ should show
the appropriate parts of the General Public License. Of course, your
program’s commands might be different; for a GUI interface, you would
use an “about box”.
</p>
<p>You should also get your employer (if you work as a programmer) or school,
if any, to sign a “copyright disclaimer” for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<a class="url" href="http://www.gnu.org/licenses/">http://www.gnu.org/licenses/</a>.
</p>
<p>The GNU General Public License does not permit incorporating your
program into proprietary programs. If your program is a subroutine
library, you may consider it more useful to permit linking proprietary
applications with the library. If this is what you want to do, use
the GNU Lesser General Public License instead of this License. But
first, please read <a class="url" href="http://www.gnu.org/philosophy/why-not-lgpl.html">http://www.gnu.org/philosophy/why-not-lgpl.html</a>.
</p>
<hr>
</div>
<div class="unnumbered-level-extent" id="Index">
<h2 class="unnumbered" id="Index-1">Index</h2>
<div class="printindex cp-printindex">
<table class="cp-letters-header-printindex"><tr><th>Jump to: </th><td><a class="summary-letter-printindex" href="#Index_cp_letter-A"><b>A</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-B"><b>B</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-C"><b>C</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-D"><b>D</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-E"><b>E</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-F"><b>F</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-G"><b>G</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-H"><b>H</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-I"><b>I</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-L"><b>L</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-N"><b>N</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-O"><b>O</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-P"><b>P</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-R"><b>R</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-S"><b>S</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-T"><b>T</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-W"><b>W</b></a>
</td></tr></table>
<table class="cp-entries-printindex" border="0">
<tr><td></td><th class="entries-header-printindex">Index Entry</th><th class="sections-header-printindex">Section</th></tr>
<tr><td colspan="3"><hr></td></tr>
<tr><th id="Index_cp_letter-A">A</th></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-abort">abort</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td colspan="3"><hr></td></tr>
<tr><th id="Index_cp_letter-B">B</th></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-Basic-Usage-Overview">Basic Usage Overview</a></td><td class="printindex-index-section"><a href="#Basic-Usage-Overview">Basic Usage Overview</a></td></tr>
<tr><td colspan="3"><hr></td></tr>
<tr><th id="Index_cp_letter-C">C</th></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-close">close</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-copyAtt">copyAtt</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-copyright">copyright</a></td><td class="printindex-index-section"><a href="#Copying">Copying</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-create">create</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td colspan="3"><hr></td></tr>
<tr><th id="Index_cp_letter-D">D</th></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-defDim">defDim</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-defGrp">defGrp</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-defVar">defVar</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-defVarChunking">defVarChunking</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-defVarDeflate">defVarDeflate</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-defVarFill">defVarFill</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-defVarFletcher32">defVarFletcher32</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-defVlen">defVlen</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-delAtt">delAtt</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td colspan="3"><hr></td></tr>
<tr><th id="Index_cp_letter-E">E</th></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-endDef">endDef</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td colspan="3"><hr></td></tr>
<tr><th id="Index_cp_letter-F">F</th></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-Function-Reference">Function Reference</a></td><td class="printindex-index-section"><a href="#Function-Reference">Function Reference</a></td></tr>
<tr><td colspan="3"><hr></td></tr>
<tr><th id="Index_cp_letter-G">G</th></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-getAtt">getAtt</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-getChunkCache">getChunkCache</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-getConstant">getConstant</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-getConstantNames">getConstantNames</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-getVar">getVar</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td colspan="3"><hr></td></tr>
<tr><th id="Index_cp_letter-H">H</th></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-High-level-functionality">High level functionality</a></td><td class="printindex-index-section"><a href="#Basic-Usage-Overview">Basic Usage Overview</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-High_002dlevel-functions">High-level functions</a></td><td class="printindex-index-section"><a href="#High_002dlevel-functions">High-level functions</a></td></tr>
<tr><td colspan="3"><hr></td></tr>
<tr><th id="Index_cp_letter-I">I</th></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-Import-functions-_0028Deprecated_0029">Import functions (Deprecated)</a></td><td class="printindex-index-section"><a href="#Import-functions-_0028Deprecated_0029">Import functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-import_005fnetcdf">import_netcdf</a></td><td class="printindex-index-section"><a href="#Import-functions-_0028Deprecated_0029">Import functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inq">inq</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqAtt">inqAtt</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqAttID">inqAttID</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqAttName">inqAttName</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqDim">inqDim</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqDimID">inqDimID</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqDimIDs">inqDimIDs</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqFormat">inqFormat</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqGrpFullNcid">inqGrpFullNcid</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqGrpName">inqGrpName</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqGrpNameFull">inqGrpNameFull</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqGrpParent">inqGrpParent</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqGrps">inqGrps</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqLibVers">inqLibVers</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqNcid">inqNcid</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqUnlimDims">inqUnlimDims</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqUserType">inqUserType</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqVar">inqVar</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqVarChunking">inqVarChunking</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqVarDeflate">inqVarDeflate</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqVarFill">inqVarFill</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqVarFletcher32">inqVarFletcher32</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqVarID">inqVarID</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqVarIDs">inqVarIDs</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-inqVlen">inqVlen</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-Installing-and-loading">Installing and loading</a></td><td class="printindex-index-section"><a href="#Installing-and-loading">Installing and loading</a></td></tr>
<tr><td colspan="3"><hr></td></tr>
<tr><th id="Index_cp_letter-L">L</th></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-Loading">Loading</a></td><td class="printindex-index-section"><a href="#Installing-and-loading">Installing and loading</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-Low-level-functionality">Low level functionality</a></td><td class="printindex-index-section"><a href="#Basic-Usage-Overview">Basic Usage Overview</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-Low_002dlevel-functions">Low-level functions</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td colspan="3"><hr></td></tr>
<tr><th id="Index_cp_letter-N">N</th></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-nccreate">nccreate</a></td><td class="printindex-index-section"><a href="#High_002dlevel-functions">High-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-ncdisp">ncdisp</a></td><td class="printindex-index-section"><a href="#High_002dlevel-functions">High-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-ncinfo">ncinfo</a></td><td class="printindex-index-section"><a href="#High_002dlevel-functions">High-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-ncread">ncread</a></td><td class="printindex-index-section"><a href="#High_002dlevel-functions">High-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-ncreadatt">ncreadatt</a></td><td class="printindex-index-section"><a href="#High_002dlevel-functions">High-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-ncwrite">ncwrite</a></td><td class="printindex-index-section"><a href="#High_002dlevel-functions">High-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-ncwriteatt">ncwriteatt</a></td><td class="printindex-index-section"><a href="#High_002dlevel-functions">High-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-ncwriteschema">ncwriteschema</a></td><td class="printindex-index-section"><a href="#High_002dlevel-functions">High-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fabort">netcdf_abort</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fclose">netcdf_close</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fcopyAtt">netcdf_copyAtt</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fcreate">netcdf_create</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fdefDim">netcdf_defDim</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fdefGrp">netcdf_defGrp</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fdefVar">netcdf_defVar</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fdefVarChunking">netcdf_defVarChunking</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fdefVarDeflate">netcdf_defVarDeflate</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fdefVarFill">netcdf_defVarFill</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fdefVarFletcher32">netcdf_defVarFletcher32</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fdefVlen">netcdf_defVlen</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fdelAtt">netcdf_delAtt</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fendDef">netcdf_endDef</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fgetAtt">netcdf_getAtt</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fgetChunkCache">netcdf_getChunkCache</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fgetConstant">netcdf_getConstant</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fgetConstantNames">netcdf_getConstantNames</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fgetVar">netcdf_getVar</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finq">netcdf_inq</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqAtt">netcdf_inqAtt</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqAttID">netcdf_inqAttID</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqAttName">netcdf_inqAttName</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqDim">netcdf_inqDim</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqDimID">netcdf_inqDimID</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqDimIDs">netcdf_inqDimIDs</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqFormat">netcdf_inqFormat</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqGrpFullNcid">netcdf_inqGrpFullNcid</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqGrpName">netcdf_inqGrpName</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqGrpNameFull">netcdf_inqGrpNameFull</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqGrpParent">netcdf_inqGrpParent</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqGrps">netcdf_inqGrps</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqLibVers">netcdf_inqLibVers</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqNcid">netcdf_inqNcid</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqUnlimDims">netcdf_inqUnlimDims</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqUserType">netcdf_inqUserType</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqVar">netcdf_inqVar</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqVarChunking">netcdf_inqVarChunking</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqVarDeflate">netcdf_inqVarDeflate</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqVarFill">netcdf_inqVarFill</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqVarFletcher32">netcdf_inqVarFletcher32</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqVarID">netcdf_inqVarID</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqVarIDs">netcdf_inqVarIDs</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005finqVlen">netcdf_inqVlen</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fopen">netcdf_open</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fputAtt">netcdf_putAtt</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fputVar">netcdf_putVar</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005freDef">netcdf_reDef</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005frenameAtt">netcdf_renameAtt</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005frenameDim">netcdf_renameDim</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005frenameVar">netcdf_renameVar</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fsetChunkCache">netcdf_setChunkCache</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fsetDefaultFormat">netcdf_setDefaultFormat</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fsetFill">netcdf_setFill</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-netcdf_005fsync">netcdf_sync</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions-_0028Deprecated_0029">Low-level functions (Deprecated)</a></td></tr>
<tr><td colspan="3"><hr></td></tr>
<tr><th id="Index_cp_letter-O">O</th></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-Off_002dline-install">Off-line install</a></td><td class="printindex-index-section"><a href="#Installing-and-loading">Installing and loading</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-Online-install">Online install</a></td><td class="printindex-index-section"><a href="#Installing-and-loading">Installing and loading</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-open">open</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td colspan="3"><hr></td></tr>
<tr><th id="Index_cp_letter-P">P</th></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-putAtt">putAtt</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-putVar">putVar</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td colspan="3"><hr></td></tr>
<tr><th id="Index_cp_letter-R">R</th></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-reDef">reDef</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-renameAtt">renameAtt</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-renameDim">renameDim</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-renameVar">renameVar</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td colspan="3"><hr></td></tr>
<tr><th id="Index_cp_letter-S">S</th></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-setChunkCache">setChunkCache</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-setDefaultFormat">setDefaultFormat</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-setFill">setFill</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-sync">sync</a></td><td class="printindex-index-section"><a href="#Low_002dlevel-functions">Low-level functions</a></td></tr>
<tr><td colspan="3"><hr></td></tr>
<tr><th id="Index_cp_letter-T">T</th></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-Test-function">Test function</a></td><td class="printindex-index-section"><a href="#Test-function">Test function</a></td></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-test_005fnetcdf">test_netcdf</a></td><td class="printindex-index-section"><a href="#Test-function">Test function</a></td></tr>
<tr><td colspan="3"><hr></td></tr>
<tr><th id="Index_cp_letter-W">W</th></tr>
<tr><td></td><td class="printindex-index-entry"><a href="#index-warranty">warranty</a></td><td class="printindex-index-section"><a href="#Copying">Copying</a></td></tr>
<tr><td colspan="3"><hr></td></tr>
</table>
<table class="cp-letters-footer-printindex"><tr><th>Jump to: </th><td><a class="summary-letter-printindex" href="#Index_cp_letter-A"><b>A</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-B"><b>B</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-C"><b>C</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-D"><b>D</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-E"><b>E</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-F"><b>F</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-G"><b>G</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-H"><b>H</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-I"><b>I</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-L"><b>L</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-N"><b>N</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-O"><b>O</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-P"><b>P</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-R"><b>R</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-S"><b>S</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-T"><b>T</b></a>
<a class="summary-letter-printindex" href="#Index_cp_letter-W"><b>W</b></a>
</td></tr></table>
</div>
</div>
</div>
</body>
</html>
|