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
|
3 Groups {#f90_groups}
========
[TOC]
NetCDF-4 added support for hierarchical groups within netCDF datasets.
Groups are identified with a ncid, which identifies both the open file,
and the group within that file. When a file is opened with NF90\_OPEN or
NF90\_CREATE, the ncid for the root group of that file is provided.
Using that as a starting point, users can add new groups, or list and
navigate existing groups.
All netCDF calls take a ncid which determines where the call will take
its action. For example, the NF90\_DEF\_VAR function takes a ncid as its
first parameter. It will create a variable in whichever group its ncid
refers to. Use the root ncid provided by NF90\_CREATE or NF90\_OPEN to
create a variable in the root group. Or use NF90\_DEF\_GRP to create a
group and use its ncid to define a variable in the new group.
Variable are only visible in the group in which they are defined. The
same applies to attributes. “Global” attributes are defined in whichever
group is refered to by the ncid.
Dimensions are visible in their groups, and all child groups.
Group operations are only permitted on netCDF-4 files - that is, files
created with the HDF5 flag in nf90\_create. (see section
[NF90_CREATE](#NF90_005fCREATE)). Groups are not compatible with the
netCDF classic data model, so files created with the
NF90\_CLASSIC\_MODEL file cannot contain groups (except the root group).
3.1 Find a Group ID: NF90_INQ_NCID {#f90-find-a-group-id-nf90_inq_ncid}
=========================
Given an ncid and group name (NULL or "" gets root group), return ncid
of the named group.
## Usage
~~~~.fortran
function nf90_inq_ncid(ncid, name, grp_ncid)
integer, intent(in) :: ncid
character (len = *), intent(in) :: name
integer, intent(out) :: grp_ncid
integer :: nf90_inq_ncid
~~~~
`NCID`
: The group id for this operation.
`NAME`
: A character array that holds the name of the desired group. Must be
less then NF90\_MAX\_NAME.
`GRPID`
: The ID of the group will go here.
## Errors
`NF90_NOERR`
: No error.
`NF90_EBADID`
: Bad group id.
`NF90_ENOTNC4`
: Attempting a netCDF-4 operation on a netCDF-3 file. NetCDF-4
operations can only be performed on files defined with a create mode
which includes flag HDF5. (see section
[NF90_OPEN](#NF90_005fOPEN)).
`NF90_ESTRICTNC3`
: This file was created with the strict netcdf-3 flag, therefore
netcdf-4 operations are not allowed. (see section
[NF90_OPEN](#NF90_005fOPEN)).
`NF90_EHDFERR`
: An error was reported by the HDF5 layer.
## Example
This example is from nf90\_test/ftst\_groups.F.
3.2 Get a List of Groups in a Group: NF90_INQ_GRPS {#f90-get-a-list-of-groups-in-a-group-nf90_inq_grps}
=========================
Given a location id, return the number of groups it contains, and an
array of their ncids.
## Usage
~~~~.fortran
function nf90_inq_grps(ncid, numgrps, ncids)
integer, intent(in) :: ncid
integer, intent(out) :: numgrps
integer, intent(out) :: ncids
integer :: nf90_inq_grps
~~~~
`NCID`
: The group id for this operation.
`NUMGRPS`
: An integer which will get number of groups in this group.
`NCIDS`
: An array of ints which will receive the IDs of all the groups in
this group.
## Errors
`NF90_NOERR`
: No error.
`NF90_EBADID`
: Bad group id.
`NF90_ENOTNC4`
: Attempting a netCDF-4 operation on a netCDF-3 file. NetCDF-4
operations can only be performed on files defined with a create mode
which includes flag HDF5. (see section
[NF90_OPEN](#NF90_005fOPEN)).
`NF90_ESTRICTNC3`
: This file was created with the strict netcdf-3 flag, therefore
netcdf-4 operations are not allowed. (see section
[NF90_OPEN](#NF90_005fOPEN)).
`NF90_EHDFERR`
: An error was reported by the HDF5 layer.
## Example
3.3 Find all the Variables in a Group: NF90_INQ_VARIDS {#f90-find-all-the-variables-in-a-group-nf90_inq_varids}
=========================
Find all varids for a location.
## Usage
~~~~.fortran
function nf90_inq_varids(ncid, nvars, varids)
integer, intent(in) :: ncid
integer, intent(out) :: nvars
integer, intent(out) :: varids
integer :: nf90_inq_varids
~~~~
`NCID`
: The group id for this operation.
`VARIDS`
: An already allocated array to store the list of varids. Use
nf90\_inq\_nvars to find out how many variables there are. (see
section [Get Information about a Variable from Its ID:
NF90_INQUIRE_VARIABLE](#NF90_005fINQUIRE_005fVARIABLE)).
## Errors
`NF90_NOERR`
: No error.
`NF90_EBADID`
: Bad group id.
`NF90_ENOTNC4`
: Attempting a netCDF-4 operation on a netCDF-3 file. NetCDF-4
operations can only be performed on files defined with a create mode
which includes flag HDF5. (see section
[NF90_OPEN](#NF90_005fOPEN)).
`NF90_ESTRICTNC3`
: This file was created with the strict netcdf-3 flag, therefore
netcdf-4 operations are not allowed. (see section
[NF90_OPEN](#NF90_005fOPEN)).
`NF90_EHDFERR`
: An error was reported by the HDF5 layer.
## Example
3.4 Find all Dimensions Visible in a Group: NF90_INQ_DIMIDS {#f90-find-all-dimensions-visible-in-a-group-nf90_inq_dimids}
=========================
Find all dimids for a location. This finds all dimensions in a group, or
any of its parents.
## Usage
~~~~.fortran
function nf90_inq_dimids(ncid, ndims, dimids, include_parents)
integer, intent(in) :: ncid
integer, intent(out) :: ndims
integer, intent(out) :: dimids
integer, intent(out) :: include_parents
integer :: nf90_inq_dimids
~~~~
`NCID`
: The group id for this operation.
`NDIMS`
: Returned number of dimensions for this location. If include\_parents
is non-zero, number of dimensions visible from this group, which
includes dimensions in parent groups.
`DIMIDS`
: An array of ints when the dimids of the visible dimensions will
be stashed. Use nf90\_inq\_ndims to find out how many dims are
visible from this group. (see section [Get Information about a Variable from Its ID: NF90_INQUIRE_VARIABLE](#f90-get-information-about-a-variable-from-its-id-nf90_inquire_variable) ).
`INCLUDE_PARENTS`
: If zero, only the group specified by NCID will be searched
for dimensions. Otherwise parent groups will be searched too.
## Errors
`NF90_NOERR`
: No error.
`NF90_EBADID`
: Bad group id.
`NF90_ENOTNC4`
: Attempting a netCDF-4 operation on a netCDF-3 file. NetCDF-4
operations can only be performed on files defined with a create mode
which includes flag HDF5. (see section
[NF90_OPEN](#NF90_005fOPEN)).
`NF90_ESTRICTNC3`
: This file was created with the strict netcdf-3 flag, therefore
netcdf-4 operations are not allowed. (see section
[NF90_OPEN](#NF90_005fOPEN)).
`NF90_EHDFERR`
: An error was reported by the HDF5 layer.
## Example
3.5 Find the Length of a Group’s Full Name: NF90_INQ_GRPNAME_LEN {#f90-find-the-length-of-a-groups-full-name-nf90_inq_grpname_len}
=========================
Given ncid, find length of the full name. (Root group is named "/", with
length 1.)
## Usage
~~~~.fortran
function nf90_inq_grpname_len(ncid, len)
integer, intent(in) :: ncid
integer, intent(out) :: len
integer :: nf90_inq_grpname_len
end function nf90_inq_grpname_len
~~~~
`NCID`
: The group id for this operation.
`LEN`
: An integer where the length will be placed.
## Errors
`NF90_NOERR`
: No error.
`NF90_EBADID`
: Bad group id.
`NF90_ENOTNC4`
: Attempting a netCDF-4 operation on a netCDF-3 file. NetCDF-4
operations can only be performed on files defined with a create mode
which includes flag HDF5. (see section
[NF90_OPEN](#NF90_005fOPEN)).
`NF90_ESTRICTNC3`
: This file was created with the strict netcdf-3 flag, therefore
netcdf-4 operations are not allowed. (see section
[NF90_OPEN](#NF90_005fOPEN)).
`NF90_EHDFERR`
: An error was reported by the HDF5 layer.
## Example
3.6 Find a Group’s Name: NF90_INQ_GRPNAME {#f90-find-a-groups-name-nf90_inq_grpname}
=========================
Given ncid, find relative name of group. (Root group is named "/").
The name provided by this function is relative to the parent group. For
a full path name for the group is, with all parent groups included,
separated with a forward slash (as in Unix directory names) See section
[Find a Group’s Full Name:
NF90_INQ_GRPNAME_FULL](#f90-find-a-groups-full-name-nf90_inq_grpname_full).
## Usage
~~~~.fortran
function nf90_inq_grpname(ncid, name)
integer, intent(in) :: ncid
character (len = *), intent(out) :: name
integer :: nf90_inq_grpname
~~~~
`NCID`
: The group id for this operation.
`NAME`
: The name of the group will be copied to this character array. The
name will be less than NF90\_MAX\_NAME in length.
## Errors
`NF90_NOERR`
: No error.
`NF90_EBADID`
: Bad group id.
`NF90_ENOTNC4`
: Attempting a netCDF-4 operation on a netCDF-3 file. NetCDF-4
operations can only be performed on files defined with a create mode
which includes flag HDF5. (see section
[NF90_OPEN](#NF90_005fOPEN)).
`NF90_ESTRICTNC3`
: This file was created with the strict netcdf-3 flag, therefore
netcdf-4 operations are not allowed. (see section
[NF90_OPEN](#NF90_005fOPEN)).
`NF90_EHDFERR`
: An error was reported by the HDF5 layer.
## Example
3.7 Find a Group’s Full Name: NF90_INQ_GRPNAME_FULL {#f90-find-a-groups-full-name-nf90_inq_grpname_full}
=========================
Given ncid, find complete name of group. (Root group is named "/").
The name provided by this function is a full path name for the group is,
with all parent groups included, separated with a forward slash (as in
Unix directory names). For a name relative to the parent group See
section [Find a Group’s Name:
NF90_INQ_GRPNAME](#f90-find-a-groups-name-nf90_inq_grpname).
## Usage
~~~~.fortran
function nf90_inq_grpname_full(ncid, len, name)
integer, intent(in) :: ncid
integer, intent(out) :: len
character (len = *), intent(out) :: name
integer :: nf90_inq_grpname_full
~~~~
`NCID`
: The group id for this operation.
`LEN`
: The length of the full group name will go here.
`NAME`
: The name of the group will be copied to this character array.
## Errors
`NF90_NOERR`
: No error.
`NF90_EBADID`
: Bad group id.
`NF90_ENOTNC4`
: Attempting a netCDF-4 operation on a netCDF-3 file. NetCDF-4
operations can only be performed on files defined with a create mode
which includes flag HDF5. (see section
[NF90_OPEN](#NF90_005fOPEN)).
`NF90_ESTRICTNC3`
: This file was created with the strict netcdf-3 flag, therefore
netcdf-4 operations are not allowed. (see section
[NF90_OPEN](#NF90_005fOPEN)).
`NF90_EHDFERR`
: An error was reported by the HDF5 layer.
## Example
This example is from test program nf\_test/f90tst\_grps.f90.
~~~~.fortran
call check(nf90_inq_grpname_full(grpid1, len, name_in))
if (name_in .ne. grp1_full_name) stop 62
~~~~
3.8 Find a Group’s Parent: NF90_INQ_GRP_PARENT {#f90-find-a-groups-parent-nf90_inq_grp_parent}
=========================
Given ncid, find the ncid of the parent group.
When used with the root group, this function returns the NF90\_ENOGRP
error (since the root group h has no parent.)
## Usage
~~~~.fortran
function nf90_inq_grp_parent(ncid, parent_ncid)
integer, intent(in) :: ncid
integer, intent(out) :: parent_ncid
integer :: nf90_inq_grp_parent
~~~~
`NCID`
: The group id.
`PARENT_NCID`
: The ncid of the parent group will be copied here.
## Errors
`NF90_NOERR`
: No error.
`NF90_EBADID`
: Bad group id.
`NF90_ENOGRP`
: No parent group found (i.e. this is the root group).
`NF90_ENOTNC4`
: Attempting a netCDF-4 operation on a netCDF-3 file. NetCDF-4
operations can only be performed on files defined with a create mode
which includes flag HDF5. (see section
[NF90_OPEN](#NF90_005fOPEN)).
`NF90_ESTRICTNC3`
: This file was created with the strict netcdf-3 flag, therefore
netcdf-4 operations are not allowed. (see section
[NF90_OPEN](#NF90_005fOPEN)).
`NF90_EHDFERR`
: An error was reported by the HDF5 layer.
## Example
3.9 Find a Group by Name: NF90_INQ_GRP_NCID {#f90-find-a-group-by-name-nf90_inq_grp_ncid}
=========================
Given a group name an an ncid, find the ncid of the group id.
## Usage
~~~~.fortran
function nf90_inq_grp_ncid(ncid, name, grpid)
integer, intent(in) :: ncid
character (len = *), intent(in) :: name
integer, intent(out) :: grpid
integer :: nf90_inq_grp_ncid
nf90_inq_grp_ncid = nf_inq_grp_ncid(ncid, name, grpid)
end function nf90_inq_grp_ncid
~~~~
`NCID`
: The group id to look in.
`GRP_NAME`
: The name of the group that should be found.
`GRP_NCID`
: This will get the group id, if it is found.
## Return Codes
The following return codes may be returned by this function.
`NF90_NOERR`
: No error.
`NF90_EBADID`
: Bad group id.
`NF90_EINVAL`
: No name provided or name longer than NF90\_MAX\_NAME.
`NF90_ENOGRP`
: Named group not found.
`NF90_ENOTNC4`
: Attempting a netCDF-4 operation on a netCDF-3 file. NetCDF-4
operations can only be performed on files defined with a create mode
which includes flag HDF5. (see section
[NF90_OPEN](#NF90_005fOPEN)).
`NF90_ESTRICTNC3`
: This file was created with the strict netcdf-3 flag, therefore
netcdf-4 operations are not allowed. (see section
[NF90_OPEN](#NF90_005fOPEN)).
`NF90_EHDFERR`
: An error was reported by the HDF5 layer.
## Example
This example is from test program nf\_test/f90tst\_grps.f90.
~~~~.fortran
! Get the group ids for the newly reopened file.
call check(nf90_inq_grp_ncid(ncid, GRP1_NAME, grpid1))
call check(nf90_inq_grp_ncid(grpid1, GRP2_NAME, grpid2))
call check(nf90_inq_grp_ncid(grpid2, GRP3_NAME, grpid3))
call check(nf90_inq_grp_ncid(grpid3, GRP4_NAME, grpid4))
~~~~
3.10 Find a Group by its Fully-qualified Name: NF90_INQ_GRP_FULL_NCID {#f90-find-a-group-by-its-fully-qualified-name-nf90_inq_grp_full_ncid}
=========================
Given a fully qualified group name an an ncid, find the ncid of the
group id.
## Usage
~~~~.fortran
function nf90_inq_grpname_full(ncid, len, name)
integer, intent(in) :: ncid
integer, intent(out) :: len
character (len = *), intent(out) :: name
integer :: nf90_inq_grpname_full
nf90_inq_grpname_full = nf_inq_grpname_full(ncid, len, name)
end function nf90_inq_grpname_full
~~~~
`NCID`
: The group id to look in.
`FULL_NAME`
: The fully-qualified group name.
`GRP_NCID`
: This will get the group id, if it is found.
## Return Codes
The following return codes may be returned by this function.
`NF90_NOERR`
: No error.
`NF90_EBADID`
: Bad group id.
`NF90_EINVAL`
: No name provided or name longer than NF90\_MAX\_NAME.
`NF90_ENOGRP`
: Named group not found.
`NF90_ENOTNC4`
: Attempting a netCDF-4 operation on a netCDF-3 file. NetCDF-4
operations can only be performed on files defined with a create mode
which includes flag HDF5. (see section
[NF90_OPEN](#NF90_005fOPEN)).
`NF90_ESTRICTNC3`
: This file was created with the strict netcdf-3 flag, therefore
netcdf-4 operations are not allowed. (see section
[NF90_OPEN](#NF90_005fOPEN)).
`NF90_EHDFERR`
: An error was reported by the HDF5 layer.
## Example
This example is from test program nf\_test/tstf90\_grps.f90.
~~~~.fortran
! Check for the groups with full group names.
write(grp1_full_name, '(AA)') '/', GRP1_NAME
call check(nf90_inq_grp_full_ncid(ncid, grp1_full_name, grpid1))
~~~~
3.11 Create a New Group: NF90_DEF_GRP {#f90-create-a-new-group-nf90_def_grp}
=========================
Create a group. Its location id is returned in new\_ncid.
## Usage
~~~~.fortran
function nf90_def_grp(parent_ncid, name, new_ncid)
integer, intent(in) :: parent_ncid
character (len = *), intent(in) :: name
integer, intent(out) :: new_ncid
integer :: nf90_def_grp
~~~~
`PARENT_NCID`
: The group id of the parent group.
`NAME`
: The name of the new group, which must be different from the name of
any variable within the same parent group.
`NEW_NCID`
: The ncid of the new group will be placed there.
## Errors
`NF90_NOERR`
: No error.
`NF90_EBADID`
: Bad group id.
`NF90_ENAMEINUSE`
: That name is in use. Group names must be unique within a group.
`NF90_EMAXNAME`
: Name exceed max length NF90\_MAX\_NAME.
`NF90_EBADNAME`
: Name contains illegal characters.
`NF90_ENOTNC4`
: Attempting a netCDF-4 operation on a netCDF-3 file. NetCDF-4
operations can only be performed on files defined with a create mode
which includes flag HDF5. (see section
[NF90_OPEN](#NF90_005fOPEN)).
`NF90_ESTRICTNC3`
: This file was created with the strict netcdf-3 flag, therefore
netcdf-4 operations are not allowed. (see section
[NF90_OPEN](#NF90_005fOPEN)).
`NF90_EHDFERR`
: An error was reported by the HDF5 layer.
`NF90_EPERM`
: Attempt to write to a read-only file.
`NF90_ENOTINDEFINE`
: Not in define mode.
## Example
~~~~.fortran
C Create the netCDF file.
retval = nf90_create(file_name, NF90_NETCDF4, ncid)
if (retval .ne. nf90_noerr) call handle_err(retval)
C Create a group and a subgroup.
retval = nf90_def_grp(ncid, group_name, grpid)
if (retval .ne. nf90_noerr) call handle_err(retval)
retval = nf90_def_grp(grpid, sub_group_name, sub_grpid)
if (retval .ne. nf90_noerr) call handle_err(retval)
~~~~
|