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
|
!
! NetCDF-4 extra routines:
!
! -----------
function nf90_create_par(path, cmode, comm, info, ncid, cache_size, &
cache_nelems, cache_preemption)
character (len = *), intent(in) :: path
integer, intent(in) :: cmode
integer, intent(in) :: comm
integer, intent(in) :: info
integer, intent(out) :: ncid
integer, optional, intent(in) :: cache_size, cache_nelems
real, optional, intent(in) :: cache_preemption
integer :: size_in, nelems_in, preemption_in
integer :: size_out, nelems_out, preemption_out, ret
integer :: nf90_create_par
! If the user specified chuck cache parameters, use them. But user
! may have specified one, two, or three settings. Leave the others
! unchanged.
if (present(cache_size) .or. present(cache_nelems) .or. &
present(cache_preemption)) then
ret = nf_get_chunk_cache(size_in, nelems_in, preemption_in)
if (ret .ne. nf90_noerr) then
nf90_create_par = ret
return
end if
if (present(cache_size)) then
size_out = cache_size
else
size_out = size_in
end if
if (present(cache_nelems)) then
nelems_out = cache_nelems
else
nelems_out = nelems_in
end if
if (present(cache_preemption)) then
preemption_out = int(cache_preemption * 100)
else
preemption_out = preemption_in
end if
nf90_create_par = nf_set_chunk_cache(size_out, nelems_out, preemption_out)
if (nf90_create_par .ne. nf90_noerr) return
end if
nf90_create_par = nf_create_par(path, cmode, comm, info, ncid)
end function nf90_create_par
! -----------
function nf90_open_par(path, cmode, comm, info, ncid, cache_size, &
cache_nelems, cache_preemption)
character (len = *), intent(in) :: path
integer, intent(in) :: cmode
integer, intent(in) :: comm
integer, intent(in) :: info
integer, intent(out) :: ncid
integer, optional, intent(in) :: cache_size, cache_nelems
real, optional, intent(in) :: cache_preemption
integer :: size_in, nelems_in, preemption_in
integer :: size_out, nelems_out, preemption_out, ret
integer :: nf90_open_par
! If the user specified chuck cache parameters, use them. But user
! may have specified one, two, or three settings. Leave the others
! unchanged.
if (present(cache_size) .or. present(cache_nelems) .or. &
present(cache_preemption)) then
ret = nf_get_chunk_cache(size_in, nelems_in, preemption_in)
if (ret .ne. nf90_noerr) then
nf90_open_par = ret
return
end if
if (present(cache_size)) then
size_out = cache_size
else
size_out = size_in
end if
if (present(cache_nelems)) then
nelems_out = cache_nelems
else
nelems_out = nelems_in
end if
if (present(cache_preemption)) then
preemption_out = int(cache_preemption * 100)
else
preemption_out = preemption_in
end if
nf90_open_par = nf_set_chunk_cache(size_out, nelems_out, preemption_out)
if (nf90_open_par .ne. nf90_noerr) return
end if
nf90_open_par = nf_open_par(path, cmode, comm, info, ncid)
end function nf90_open_par
! -----------
function nf90_var_par_access(ncid, varid, access)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(in) :: access
integer :: nf90_var_par_access
nf90_var_par_access = nf_var_par_access(ncid, varid, access)
end function nf90_var_par_access
! -----------
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
nf90_inq_ncid = nf_inq_ncid(ncid, name, grp_ncid)
end function nf90_inq_ncid
! -----------
function nf90_inq_grps(ncid, numgrps, ncids)
integer, intent(in) :: ncid
integer, intent(out) :: numgrps
integer, dimension(:), intent(out) :: ncids
integer :: nf90_inq_grps
nf90_inq_grps = nf_inq_grps(ncid, numgrps, ncids)
end function nf90_inq_grps
! -----------
function nf90_inq_grpname_len(ncid, len)
integer, intent(in) :: ncid
integer, intent(out) :: len
integer :: nf90_inq_grpname_len
nf90_inq_grpname_len = nf_inq_grpname_len(ncid, len)
end function nf90_inq_grpname_len
! -----------
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
! -----------
function nf90_inq_grp_full_ncid(ncid, full_name, grpid)
integer, intent(in) :: ncid
character (len = *), intent(in) :: full_name
integer, intent(out) :: grpid
integer :: nf90_inq_grp_full_ncid
nf90_inq_grp_full_ncid = nf_inq_grp_full_ncid(ncid, full_name, grpid)
end function nf90_inq_grp_full_ncid
! -----------
function nf90_inq_grp_parent(ncid, parent_ncid)
integer, intent(in) :: ncid
integer, intent(out) :: parent_ncid
integer :: nf90_inq_grp_parent
nf90_inq_grp_parent = nf_inq_grp_parent(ncid, parent_ncid)
end function nf90_inq_grp_parent
! -----------
function nf90_inq_grpname(ncid, name)
integer, intent(in) :: ncid
character (len = *), intent(out) :: name
integer :: nf90_inq_grpname
nf90_inq_grpname = nf_inq_grpname(ncid, name)
end function nf90_inq_grpname
! -----------
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
! -----------
function nf90_inq_varids(ncid, nvars, varids)
integer, intent(in) :: ncid
integer, intent(out) :: nvars
integer, dimension(:), intent(out) :: varids
integer :: nf90_inq_varids
nf90_inq_varids = nf_inq_varids(ncid, nvars, varids)
end function nf90_inq_varids
! -----------
function nf90_inq_dimids(ncid, ndims, dimids, include_parents)
integer, intent(in) :: ncid
integer, intent(out) :: ndims
integer, dimension(:), intent(out) :: dimids
integer, intent(out) :: include_parents
integer :: nf90_inq_dimids
nf90_inq_dimids = nf_inq_dimids(ncid, ndims, dimids, include_parents)
end function nf90_inq_dimids
! -----------
function nf90_inq_typeids(ncid, ntypes, typeids)
integer, intent(in) :: ncid
integer, optional, intent(out) :: ntypes
integer, dimension(:), optional, intent(out) :: typeids
integer :: nf90_inq_typeids
nf90_inq_typeids = nf_inq_typeids(ncid, ntypes, typeids)
end function nf90_inq_typeids
! -----------
function nf90_inq_typeid(ncid, name, typeid)
integer, intent(in) :: ncid
character (len = *), intent(in) :: name
integer, optional, intent(out) :: typeid
integer :: nf90_inq_typeid
nf90_inq_typeid = nf_inq_typeid(ncid, name, typeid)
end function nf90_inq_typeid
! -----------
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
nf90_def_grp = nf_def_grp(parent_ncid, name, new_ncid)
end function nf90_def_grp
! -----------
function nf90_rename_grp(grpid, name)
integer, intent(in) :: grpid
character (len = *), intent(in) :: name
integer :: nf90_rename_grp
nf90_rename_grp = nf_rename_grp(grpid, name)
end function nf90_rename_grp
! -----------
function nf90_def_compound(ncid, size, name, typeid)
integer, intent(in) :: ncid
integer, intent(in) :: size
character (len = *), intent(in) :: name
integer, intent(out) :: typeid
integer :: nf90_def_compound
nf90_def_compound = nf_def_compound(ncid, size, name, typeid)
end function nf90_def_compound
! -----------
function nf90_insert_compound(ncid, xtype, name, offset, field_typeid)
integer, intent(in) :: ncid
integer, intent(in) :: xtype
character (len = *), intent(in) :: name
integer, intent(in) :: offset
integer, intent(in) :: field_typeid
integer :: nf90_insert_compound
nf90_insert_compound = nf_insert_compound(ncid, xtype, name, offset, field_typeid)
end function nf90_insert_compound
! -----------
function nf90_insert_array_compound(ncid, xtype, name, offset, field_typeid, &
ndims, dim_sizes)
integer, intent(in) :: ncid
integer, intent(in) :: xtype
character (len = *), intent(in) :: name
integer, intent(in) :: offset
integer, intent(in) :: field_typeid
integer, intent(in) :: ndims
integer, intent(in) :: dim_sizes
integer :: nf90_insert_array_compound
nf90_insert_array_compound = nf_insert_array_compound(ncid, xtype, name, &
offset, field_typeid, ndims, dim_sizes)
end function nf90_insert_array_compound
! -----------
function nf90_inq_type(ncid, xtype, name, size)
integer, intent(in) :: ncid
integer, intent(in) :: xtype
character (len = *), intent(out) :: name
integer, intent(out) :: size
integer :: nf90_inq_type
nf90_inq_type = nf_inq_type(ncid, xtype, name, size)
end function nf90_inq_type
! -----------
function nf90_inq_compound(ncid, xtype, name, size, nfields)
integer, intent(in) :: ncid
integer, intent(in) :: xtype
character (len = *), intent(out) :: name
integer, intent(out) :: size
integer, intent(out) :: nfields
integer :: nf90_inq_compound
nf90_inq_compound = nf_inq_compound(ncid, xtype, name, size, nfields)
end function nf90_inq_compound
! -----------
function nf90_inq_compound_name(ncid, xtype, name)
integer, intent(in) :: ncid
integer, intent(in) :: xtype
character (len = *), intent(out) :: name
integer :: nf90_inq_compound_name
nf90_inq_compound_name = nf_inq_compound_name(ncid, xtype, name)
end function nf90_inq_compound_name
! -----------
function nf90_inq_compound_size(ncid, xtype, size)
integer, intent(in) :: ncid
integer, intent(in) :: xtype
integer, intent(out) :: size
integer :: nf90_inq_compound_size
nf90_inq_compound_size = nf_inq_compound_size(ncid, xtype, size)
end function nf90_inq_compound_size
! -----------
function nf90_inq_compound_nfields(ncid, xtype, nfields)
integer, intent(in) :: ncid
integer, intent(in) :: xtype
integer, intent(out) :: nfields
integer :: nf90_inq_compound_nfields
nf90_inq_compound_nfields = nf_inq_compound_nfields(ncid, xtype, nfields)
end function nf90_inq_compound_nfields
! -----------
function nf90_inq_compound_field(ncid, xtype, fieldid, name, offset, &
field_typeid, ndims, dim_sizes)
integer, intent(in) :: ncid
integer, intent(in) :: xtype
integer, intent(in) :: fieldid
character (len = *), intent(out) :: name
integer, intent(out) :: offset
integer, intent(out) :: field_typeid
integer, intent(out) :: ndims
integer, intent(out) :: dim_sizes
integer :: nf90_inq_compound_field
nf90_inq_compound_field = nf_inq_compound_field(ncid, xtype, fieldid, name, offset, &
field_typeid, ndims, dim_sizes)
end function nf90_inq_compound_field
! -----------
function nf90_inq_compound_fieldname(ncid, xtype, fieldid, name)
integer, intent(in) :: ncid
integer, intent(in) :: xtype
integer, intent(in) :: fieldid
character (len = *), intent(out) :: name
integer :: nf90_inq_compound_fieldname
nf90_inq_compound_fieldname = nf_inq_compound_fieldname(ncid, xtype, fieldid, name)
end function nf90_inq_compound_fieldname
! -----------
function nf90_inq_compound_fieldindex(ncid, xtype, name, fieldid)
integer, intent(in) :: ncid
integer, intent(in) :: xtype
character (len = *), intent(in) :: name
integer, intent(out) :: fieldid
integer :: nf90_inq_compound_fieldindex
nf90_inq_compound_fieldindex = nf_inq_compound_fieldindex(ncid, xtype, name, fieldid)
end function nf90_inq_compound_fieldindex
! -----------
function nf90_inq_compound_fieldoffset(ncid, xtype, fieldid, offset)
integer, intent(in) :: ncid
integer, intent(in) :: xtype
integer, intent(in) :: fieldid
integer, intent(out) :: offset
integer :: nf90_inq_compound_fieldoffset
nf90_inq_compound_fieldoffset = nf_inq_compound_fieldoffset(ncid, xtype, fieldid, offset)
end function nf90_inq_compound_fieldoffset
! -----------
function nf90_inq_compound_fieldtype(ncid, xtype, fieldid, field_typeid)
integer, intent(in) :: ncid
integer, intent(in) :: xtype
integer, intent(in) :: fieldid
integer, intent(out) :: field_typeid
integer :: nf90_inq_compound_fieldtype
nf90_inq_compound_fieldtype = nf_inq_compound_fieldtype(ncid, xtype, fieldid, field_typeid)
end function nf90_inq_compound_fieldtype
! -----------
function nf90_inq_compound_fieldndims(ncid, xtype, fieldid, ndims)
integer, intent(in) :: ncid
integer, intent(in) :: xtype
integer, intent(in) :: fieldid
integer, intent(out) :: ndims
integer :: nf90_inq_compound_fieldndims
nf90_inq_compound_fieldndims = nf_inq_compound_fieldndims(ncid, xtype, fieldid, ndims)
end function nf90_inq_compound_fieldndims
! -----------
function nf90_inq_cmp_fielddim_sizes(ncid, xtype, fieldid, dim_sizes)
integer, intent(in) :: ncid
integer, intent(in) :: xtype
integer, intent(in) :: fieldid
integer, intent(out) :: dim_sizes
integer :: nf90_inq_cmp_fielddim_sizes
nf90_inq_cmp_fielddim_sizes = nf_inq_compound_fielddim_sizes(ncid, xtype, fieldid, dim_sizes)
end function nf90_inq_cmp_fielddim_sizes
! -----------
function nf90_def_vlen(ncid, name, base_typeid, xtypeid)
integer, intent(in) :: ncid
character (len = *), intent(in) :: name
integer, intent(in) :: base_typeid
integer, intent(out) :: xtypeid
integer :: nf90_def_vlen
nf90_def_vlen = nf_def_vlen(ncid, name, base_typeid, xtypeid)
end function nf90_def_vlen
! -----------
function nf90_inq_vlen(ncid, xtype, name, datum_size, base_nc_type)
integer, intent(in) :: ncid
integer, intent(in) :: xtype
character (len = *), intent(out) :: name
integer, intent(out) :: datum_size
integer, intent(out) :: base_nc_type
integer :: nf90_inq_vlen
nf90_inq_vlen = nf_inq_vlen(ncid, xtype, name, datum_size, base_nc_type)
end function nf90_inq_vlen
! -----------
function nf90_free_vlen(vl)
character (len = *), intent(in) :: vl
integer :: nf90_free_vlen
nf90_free_vlen = nf_free_vlen(vl)
end function nf90_free_vlen
! ! -----------
function nf90_def_enum(ncid, base_typeid, name, typeid)
integer, intent(in) :: ncid
integer, intent(in) :: base_typeid
character (len = *), intent(in) :: name
integer, intent(out) :: typeid
integer :: nf90_def_enum
nf90_def_enum = nf_def_enum(ncid, base_typeid, name, typeid)
end function nf90_def_enum
! ! -----------
function nf90_inq_user_type(ncid, xtype, name, size, base_typeid, nfields, class)
integer, intent(in) :: ncid
integer, intent(in) :: xtype
character (len = *), intent(out) :: name
integer, intent(out) :: size
integer, intent(out) :: base_typeid
integer, intent(out) :: nfields
integer, intent(out) :: class
integer :: nf90_inq_user_type
nf90_inq_user_type = nf_inq_user_type(ncid, xtype, name, size, base_typeid, nfields, class)
end function nf90_inq_user_type
! -----------
function nf90_insert_enum(ncid, xtype, name, value)
integer, intent(in) :: ncid
integer, intent(in) :: xtype
character (len = *), intent(in) :: name
integer, intent(in) :: value
integer :: nf90_insert_enum
nf90_insert_enum = nf_insert_enum(ncid, xtype, name, value)
end function nf90_insert_enum
! -----------
function nf90_inq_enum(ncid, xtype, name, base_nc_type, base_size, num_members)
integer, intent(in) :: ncid
integer, intent(in) :: xtype
character (len = *), intent(out) :: name
integer, intent(out) :: base_nc_type
integer, intent(out) :: base_size
integer, intent(out) :: num_members
integer :: nf90_inq_enum
nf90_inq_enum = nf_inq_enum(ncid, xtype, name, base_nc_type, base_size, num_members)
end function nf90_inq_enum
! -----------
function nf90_inq_enum_member(ncid, xtype, idx, name, value)
integer, intent(in) :: ncid
integer, intent(in) :: xtype
integer, intent(in) :: idx
character (len = *), intent(out) :: name
integer, intent(in) :: value
integer :: nf90_inq_enum_member
nf90_inq_enum_member = nf_inq_enum_member(ncid, xtype, idx, name, value)
end function nf90_inq_enum_member
! -----------
function nf90_inq_enum_ident(ncid, xtype, value, idx)
integer, intent(in) :: ncid
integer, intent(in) :: xtype
integer, intent(in) :: value
integer, intent(out) :: idx
integer :: nf90_inq_enum_ident
nf90_inq_enum_ident = nf_inq_enum_ident(ncid, xtype, value, idx)
end function nf90_inq_enum_ident
! -----------
function nf90_def_opaque(ncid, size, name, xtype)
integer, intent(in) :: ncid
integer, intent(in) :: size
character (len = *), intent(in) :: name
integer, intent(out) :: xtype
integer :: nf90_def_opaque
nf90_def_opaque = nf_def_opaque(ncid, size, name, xtype)
end function nf90_def_opaque
! -----------
function nf90_inq_opaque(ncid, xtype, name, size)
integer, intent(in) :: ncid
integer, intent(in) :: xtype
character (len = *), intent(out) :: name
integer, intent(out) :: size
integer :: nf90_inq_opaque
nf90_inq_opaque = nf_inq_opaque(ncid, xtype, name, size)
end function nf90_inq_opaque
! -----------
function nf90_def_var_chunking(ncid, varid, contiguous, chunksizes)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(in) :: contiguous
integer, dimension(:), intent(in) :: chunksizes
integer :: nf90_def_var_chunking
nf90_def_var_chunking = nf_def_var_chunking(ncid, varid, contiguous, chunksizes)
end function nf90_def_var_chunking
! -----------
function nf90_def_var_deflate(ncid, varid, shuffle, deflate, deflate_level)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(in) :: shuffle
integer, intent(in) :: deflate
integer, intent(in) :: deflate_level
integer :: nf90_def_var_deflate
nf90_def_var_deflate = nf_def_var_deflate(ncid, varid, shuffle, deflate, deflate_level)
end function nf90_def_var_deflate
! -----------
function nf90_def_var_szip(ncid, varid, options_mask, pixels_per_block)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(in) :: options_mask
integer, intent(in) :: pixels_per_block
integer :: nf90_def_var_szip
nf90_def_var_szip = nf_def_var_szip(ncid, varid, options_mask, pixels_per_block)
end function nf90_def_var_szip
! -----------
function nf90_def_var_fletcher32(ncid, varid, fletcher32)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(in) :: fletcher32
integer :: nf90_def_var_fletcher32
nf90_def_var_fletcher32 = nf_def_var_fletcher32(ncid, varid, fletcher32)
end function nf90_def_var_fletcher32
! -----------
function nf90_inq_var_chunking(ncid, varid, contiguous, chunksizes)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(out) :: contiguous
integer, dimension(:), intent(out) :: chunksizes
integer :: nf90_inq_var_chunking
nf90_inq_var_chunking = nf_inq_var_chunking(ncid, varid, contiguous, chunksizes)
end function nf90_inq_var_chunking
! -----------
function nf90_inq_var_deflate(ncid, varid, shuffle, deflate, deflate_level)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(out) :: shuffle
integer, intent(out) :: deflate
integer, intent(out) :: deflate_level
integer :: nf90_inq_var_deflate
nf90_inq_var_deflate = nf_inq_var_deflate(ncid, varid, shuffle, deflate, deflate_level)
end function nf90_inq_var_deflate
! -----------
function nf90_inq_var_szip(ncid, varid, options_mask, pixels_per_block)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(out) :: options_mask
integer, intent(out) :: pixels_per_block
integer :: nf90_inq_var_szip
nf90_inq_var_szip = nf_inq_var_szip(ncid, varid, options_mask, pixels_per_block)
end function nf90_inq_var_szip
! -----------
function nf90_inq_var_fletcher32(ncid, varid, fletcher32)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(out) :: fletcher32
integer :: nf90_inq_var_fletcher32
nf90_inq_var_fletcher32 = nf_inq_var_fletcher32(ncid, varid, fletcher32)
end function nf90_inq_var_fletcher32
! -----------
function nf90_def_var_endian(ncid, varid, endian)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(in) :: endian
integer :: nf90_def_var_endian
nf90_def_var_endian = nf_def_var_endian(ncid, varid, endian)
end function nf90_def_var_endian
! -----------
function nf90_inq_var_endian(ncid, varid, endian)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(out) :: endian
integer :: nf90_inq_var_endian
nf90_inq_var_endian = nf_inq_var_endian(ncid, varid, endian)
end function nf90_inq_var_endian
! -----------
function nf90_def_var_filter(ncid, varid, filterid, nparams, params)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(in) :: filterid
integer, intent(in) :: nparams
integer, intent(in) :: params(*)
integer :: nf90_def_var_filter
nf90_def_var_filter = nf_def_var_filter(ncid, varid, filterid, nparams, params)
end function nf90_def_var_filter
! -----------
function nf90_inq_var_filter(ncid, varid, filterid, nparams, params)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(out) :: filterid
integer, intent(out) :: nparams
integer, dimension(:), intent(out) :: params
integer :: nf90_inq_var_filter
nf90_inq_var_filter = nf_inq_var_filter(ncid, varid, filterid, nparams, params)
end function nf90_inq_var_filter
! -----------
! function nf90_def_var_fill(ncid, varid, no_fill, fill)
! integer, intent(in) :: ncid
! integer, intent(in) :: varid
! integer, intent(in) :: no_fill
! integer, intent(in) :: fill
! integer :: nf90_def_var_fill
! nf90_def_var_fill = nf_def_var_fill(ncid, varid, no_fill, fill)
! end function nf90_def_var_fill
! -----------
! function nf90_inq_var_fill(ncid, varid, no_fill, fill)
! integer, intent(in) :: ncid
! integer, intent(in) :: varid
! integer, intent(out) :: no_fill
! integer, intent(out) :: fill
! integer :: nf90_inq_var_fill
! nf90_inq_var_fill = nf_inq_var_fill(ncid, varid, no_fill, fill)
! end function nf90_inq_var_fill
function nf90_def_var_fill_OneByteInt(ncid, varid, no_fill, fill)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(in) :: no_fill
integer(kind=OneByteInt), intent(in) :: fill
integer :: nf90_def_var_fill_OneByteInt
nf90_def_var_fill_OneByteInt = nf_def_var_fill(ncid, varid, no_fill, fill)
end function nf90_def_var_fill_OneByteInt
! -----------
function nf90_def_var_fill_TwoByteInt(ncid, varid, no_fill, fill)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(in) :: no_fill
integer(kind=TwoByteInt), intent(in) :: fill
integer :: nf90_def_var_fill_TwoByteInt
nf90_def_var_fill_TwoByteInt = nf_def_var_fill(ncid, varid, no_fill, fill)
end function nf90_def_var_fill_TwoByteInt
! -----------
function nf90_def_var_fill_FourByteInt(ncid, varid, no_fill, fill)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(in) :: no_fill
integer(kind=FourByteInt), intent(in) :: fill
integer :: nf90_def_var_fill_FourByteInt
nf90_def_var_fill_FourByteInt = nf_def_var_fill(ncid, varid, no_fill, fill)
end function nf90_def_var_fill_FourByteInt
! -----------
function nf90_def_var_fill_EightByteInt(ncid, varid, no_fill, fill)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(in) :: no_fill
integer(kind=EightByteInt), intent(in) :: fill
integer :: nf90_def_var_fill_EightByteInt
nf90_def_var_fill_EightByteInt = nf_def_var_fill(ncid, varid, no_fill, fill)
end function nf90_def_var_fill_EightByteInt
! -----------
function nf90_def_var_fill_FourByteReal(ncid, varid, no_fill, fill)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(in) :: no_fill
real(kind=FourByteReal), intent(in) :: fill
integer :: nf90_def_var_fill_FourByteReal
nf90_def_var_fill_FourByteReal = nf_def_var_fill(ncid, varid, no_fill, fill)
end function nf90_def_var_fill_FourByteReal
! -----------
function nf90_def_var_fill_EightByteReal(ncid, varid, no_fill, fill)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(in) :: no_fill
real(kind=EightByteReal), intent(in) :: fill
integer :: nf90_def_var_fill_EightByteReal
nf90_def_var_fill_EightByteReal = nf_def_var_fill(ncid, varid, no_fill, fill)
end function nf90_def_var_fill_EightByteReal
! -----------
function nf90_inq_var_fill_OneByteInt(ncid, varid, no_fill, fill)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(inout) :: no_fill
integer(kind=OneByteInt), intent(inout) :: fill
integer :: nf90_inq_var_fill_OneByteInt
nf90_inq_var_fill_OneByteInt = nf_inq_var_fill(ncid, varid, no_fill, fill)
end function nf90_inq_var_fill_OneByteInt
! -----------
function nf90_inq_var_fill_TwoByteInt(ncid, varid, no_fill, fill)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(inout) :: no_fill
integer(kind=TwoByteInt), intent(inout) :: fill
integer :: nf90_inq_var_fill_TwoByteInt
nf90_inq_var_fill_TwoByteInt = nf_inq_var_fill(ncid, varid, no_fill, fill)
end function nf90_inq_var_fill_TwoByteInt
! -----------
function nf90_inq_var_fill_FourByteInt(ncid, varid, no_fill, fill)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(inout) :: no_fill
integer(kind=FourByteInt), intent(inout) :: fill
integer :: nf90_inq_var_fill_FourByteInt
nf90_inq_var_fill_FourByteInt = nf_inq_var_fill(ncid, varid, no_fill, fill)
end function nf90_inq_var_fill_FourByteInt
! -----------
function nf90_inq_var_fill_EightByteInt(ncid, varid, no_fill, fill)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(inout) :: no_fill
integer(kind=EightByteInt), intent(inout) :: fill
integer :: nf90_inq_var_fill_EightByteInt
nf90_inq_var_fill_EightByteInt = nf_inq_var_fill(ncid, varid, no_fill, fill)
end function nf90_inq_var_fill_EightByteInt
! -----------
function nf90_inq_var_fill_FourByteReal(ncid, varid, no_fill, fill)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(inout) :: no_fill
real(kind=FourByteReal), intent(inout) :: fill
integer :: nf90_inq_var_fill_FourByteReal
nf90_inq_var_fill_FourByteReal = nf_inq_var_fill(ncid, varid, no_fill, fill)
end function nf90_inq_var_fill_FourByteReal
! -----------
function nf90_inq_var_fill_EightByteReal(ncid, varid, no_fill, fill)
integer, intent(in) :: ncid
integer, intent(in) :: varid
integer, intent(inout) :: no_fill
real(kind=EightByteReal), intent(inout) :: fill
integer :: nf90_inq_var_fill_EightByteReal
nf90_inq_var_fill_EightByteReal = nf_inq_var_fill(ncid, varid, no_fill, fill)
end function nf90_inq_var_fill_EightByteReal
! -----------
function nf90_put_att_any(ncid, varid, name, typeid, length, values)
integer, intent( in) :: ncid, varid
character(len = *), intent( in) :: name
integer, intent( in) :: typeid, length
character(len = *), intent( in) :: values
integer :: nf90_put_att_any
nf90_put_att_any = nf_put_att(ncid, varid, name, typeid, length, values)
end function nf90_put_att_any
! -----------
function nf90_get_att_any(ncid, varid, name, length, values)
integer, intent( in) :: ncid, varid
character(len = *), intent( in) :: name
integer, intent( in) :: length
character(len = *), intent( in) :: values
integer :: nf90_get_att_any
nf90_get_att_any = nf_get_att(ncid, varid, name, values)
end function nf90_get_att_any
! -----------
function nf90_put_var_any(ncid, varid, values, start, count, stride, map)
integer, intent( in) :: ncid, varid
character (len = *), intent( in) :: values
integer, dimension(:), optional, intent( in) :: start, count, stride, map
integer :: nf90_put_var_any
integer, dimension(nf90_max_var_dims) :: localStart, localCount, localStride
! Set local arguments to default values
localStart (:) = 1
localCount (1) = len_trim(values); localCount (2:) = 1
localStride(:) = 1
if(present(start)) localStart (:size(start) ) = start(:)
if(present(count)) localCount (:size(count) ) = count(:)
if(present(stride)) localStride(:size(stride)) = stride(:)
nf90_put_var_any = nf_put_vars(ncid, varid, localStart, localCount, localStride, values)
end function nf90_put_var_any
! -----------
function nf90_get_var_any(ncid, varid, values, start, count, stride, map)
integer, intent( in) :: ncid, varid
character (len = *), intent(out) :: values
integer, dimension(:), optional, intent( in) :: start, count, stride, map
integer :: nf90_get_var_any
integer, dimension(nf90_max_var_dims) :: localStart, localCount, localStride
! Set local arguments to default values
localStart (:) = 1
localCount (1) = len(values); localCount (2:) = 1
localStride(:) = 1
if(present(start)) localStart (:size(start) ) = start(:)
if(present(count)) localCount (:size(count) ) = count(:)
if(present(stride)) localStride(:size(stride)) = stride(:)
nf90_get_var_any = nf_get_vars(ncid, varid, localStart, localCount, localStride, values)
end function nf90_get_var_any
|