实例介绍
netcdf软件 读写nc格式文件,海洋和大气方向很有用哦!
【实例截图】
【核心代码】
netcdf-4.1.3.tar
└── netcdf-4.1.3
├── COPYRIGHT
├── INSTALL
├── Makefile.am
├── Makefile.in
├── README
├── RELEASE_NOTES
├── acinclude.m4
├── aclocal.m4
├── compile
├── config.guess
├── config.h.in
├── config.sub
├── configure
├── configure.ac
├── cxx
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── README
│ ├── nctst.cpp
│ ├── ncvalues.cpp
│ ├── ncvalues.h
│ ├── netcdf.cpp
│ ├── netcdf.hh
│ ├── netcdfcpp.h
│ ├── ref_nctst.cdl
│ ├── ref_nctst_64bit_offset.cdl
│ ├── ref_nctst_netcdf4.cdl
│ ├── ref_nctst_netcdf4_classic.cdl
│ ├── run_nc4_tests.sh
│ ├── run_nc_tests.sh
│ ├── run_valgrind_tests.sh
│ ├── tst_failure.cpp
│ └── tst_many_writes.cpp
├── cxx4
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── README
│ ├── ncAtt.cpp
│ ├── ncAtt.h
│ ├── ncByte.cpp
│ ├── ncByte.h
│ ├── ncChar.cpp
│ ├── ncChar.h
│ ├── ncCheck.cpp
│ ├── ncCheck.h
│ ├── ncCompoundType.cpp
│ ├── ncCompoundType.h
│ ├── ncDim.cpp
│ ├── ncDim.h
│ ├── ncDouble.cpp
│ ├── ncDouble.h
│ ├── ncEnumType.cpp
│ ├── ncEnumType.h
│ ├── ncException.cpp
│ ├── ncException.h
│ ├── ncFile.cpp
│ ├── ncFile.h
│ ├── ncFloat.cpp
│ ├── ncFloat.h
│ ├── ncGroup.cpp
│ ├── ncGroup.h
│ ├── ncGroupAtt.cpp
│ ├── ncGroupAtt.h
│ ├── ncInt.cpp
│ ├── ncInt.h
│ ├── ncInt64.cpp
│ ├── ncInt64.h
│ ├── ncOpaqueType.cpp
│ ├── ncOpaqueType.h
│ ├── ncShort.cpp
│ ├── ncShort.h
│ ├── ncString.cpp
│ ├── ncString.h
│ ├── ncType.cpp
│ ├── ncType.h
│ ├── ncUbyte.cpp
│ ├── ncUbyte.h
│ ├── ncUint.cpp
│ ├── ncUint.h
│ ├── ncUint64.cpp
│ ├── ncUint64.h
│ ├── ncUshort.cpp
│ ├── ncUshort.h
│ ├── ncVar.cpp
│ ├── ncVar.h
│ ├── ncVarAtt.cpp
│ ├── ncVarAtt.h
│ ├── ncVlenType.cpp
│ ├── ncVlenType.h
│ ├── netcdf
│ ├── test_att.cpp
│ ├── test_dim.cpp
│ ├── test_group.cpp
│ ├── test_type.cpp
│ ├── test_utilities.h
│ ├── test_var.cpp
│ └── test_var2.cpp
├── depcomp
├── examples
│ ├── C
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── pres_temp_4D_rd.c
│ │ ├── pres_temp_4D_wr.c
│ │ ├── run_nc4_valgrind_tests.sh
│ │ ├── run_valgrind_tests.sh
│ │ ├── sfc_pres_temp_rd.c
│ │ ├── sfc_pres_temp_wr.c
│ │ ├── simple_nc4_rd.c
│ │ ├── simple_nc4_wr.c
│ │ ├── simple_xy_nc4_rd.c
│ │ ├── simple_xy_nc4_wr.c
│ │ ├── simple_xy_rd.c
│ │ └── simple_xy_wr.c
│ ├── CDL
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── create_sample_files.sh
│ │ ├── do_comps.sh
│ │ ├── pres_temp_4D.cdl
│ │ ├── sfc_pres_temp.cdl
│ │ └── simple_xy.cdl
│ ├── CXX
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── do_comps.sh
│ │ ├── pres_temp_4D_rd.cpp
│ │ ├── pres_temp_4D_wr.cpp
│ │ ├── sfc_pres_temp_rd.cpp
│ │ ├── sfc_pres_temp_wr.cpp
│ │ ├── simple_xy_rd.cpp
│ │ └── simple_xy_wr.cpp
│ ├── CXX4
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── do_comps.sh
│ │ ├── pres_temp_4D_rd.cpp
│ │ ├── pres_temp_4D_wr.cpp
│ │ ├── sfc_pres_temp_rd.cpp
│ │ ├── sfc_pres_temp_wr.cpp
│ │ ├── simple_xy_rd.cpp
│ │ ├── simple_xy_wr.cpp
│ │ └── simple_xy_wr_formats.cpp
│ ├── F77
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── do_comps.sh
│ │ ├── pres_temp_4D_rd.f
│ │ ├── pres_temp_4D_wr.f
│ │ ├── sfc_pres_temp_rd.f
│ │ ├── sfc_pres_temp_wr.f
│ │ ├── simple_xy_nc4_rd.f
│ │ ├── simple_xy_nc4_wr.f
│ │ ├── simple_xy_rd.f
│ │ └── simple_xy_wr.f
│ ├── F90
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── do_comps.sh
│ │ ├── nc4_pres_temp_4D_wr.f90
│ │ ├── nc4_sfc_pres_temp_wr.f90
│ │ ├── nc4_simple_xy_wr.f90
│ │ ├── pres_temp_4D_rd.f90
│ │ ├── pres_temp_4D_wr.f90
│ │ ├── run_f90_par_examples.sh
│ │ ├── run_nc4_comps.sh
│ │ ├── sfc_pres_temp_rd.f90
│ │ ├── sfc_pres_temp_wr.f90
│ │ ├── simple_xy_nc4_rd.f90
│ │ ├── simple_xy_nc4_wr.f90
│ │ ├── simple_xy_par_rd.f90
│ │ ├── simple_xy_par_wr.f90
│ │ ├── simple_xy_rd.f90
│ │ └── simple_xy_wr.f90
│ ├── Makefile.am
│ └── Makefile.in
├── f90
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── netcdf.f90
│ ├── netcdf3_file.f90
│ ├── netcdf4.f90
│ ├── netcdf4_constants.f90
│ ├── netcdf4_eightbyte.f90
│ ├── netcdf4_externals.f90
│ ├── netcdf4_file.f90
│ ├── netcdf4_func.f90
│ ├── netcdf4_variables.f90
│ ├── netcdf4_visibility.f90
│ ├── netcdf_attributes.f90
│ ├── netcdf_constants.f90
│ ├── netcdf_dims.f90
│ ├── netcdf_eightbyte.f90
│ ├── netcdf_expanded.f90
│ ├── netcdf_externals.f90
│ ├── netcdf_f90.3
│ ├── netcdf_file.f90
│ ├── netcdf_overloads.f90
│ ├── netcdf_text_variables.f90
│ ├── netcdf_variables.f90
│ ├── netcdf_visibility.f90
│ └── typeSizes.f90
├── fortran
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── cfortran.h
│ ├── fort-attio.c
│ ├── fort-control.c
│ ├── fort-dim.c
│ ├── fort-genatt.c
│ ├── fort-geninq.c
│ ├── fort-genvar.c
│ ├── fort-lib.c
│ ├── fort-lib.h
│ ├── fort-misc.c
│ ├── fort-nc4.c
│ ├── fort-v2compat.c
│ ├── fort-var1io.c
│ ├── fort-varaio.c
│ ├── fort-vario.c
│ ├── fort-varmio.c
│ ├── fort-varsio.c
│ ├── ncfortran.h
│ ├── netcdf2.inc
│ ├── netcdf3.inc
│ ├── netcdf4.inc
│ ├── netcdf_f77.3
│ └── nfconfig.in
├── h5_test
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── ref_tst_compounds.nc
│ ├── ref_tst_h_compounds.h5
│ ├── ref_tst_h_compounds2.h5
│ ├── run_par_tests.sh
│ ├── run_valgrind_tests.sh
│ ├── tst_h_atts.c
│ ├── tst_h_atts3.c
│ ├── tst_h_atts4.c
│ ├── tst_h_compounds.c
│ ├── tst_h_compounds2.c
│ ├── tst_h_dimscales.c
│ ├── tst_h_dimscales1.c
│ ├── tst_h_dimscales2.c
│ ├── tst_h_dimscales3.c
│ ├── tst_h_dimscales4.c
│ ├── tst_h_enums.c
│ ├── tst_h_files.c
│ ├── tst_h_files2.c
│ ├── tst_h_files4.c
│ ├── tst_h_grps.c
│ ├── tst_h_ints.c
│ ├── tst_h_mem.c
│ ├── tst_h_opaques.c
│ ├── tst_h_par.c
│ ├── tst_h_rd_cmp.c
│ ├── tst_h_strings.c
│ ├── tst_h_strings1.c
│ ├── tst_h_strings2.c
│ ├── tst_h_vars.c
│ ├── tst_h_vars2.c
│ ├── tst_h_vars3.c
│ ├── tst_h_vl.c
│ └── tst_h_wrt_cmp.c
├── include
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── ceconstraints.h
│ ├── err_macros.h
│ ├── fbits.h
│ ├── nc.h
│ ├── nc3dispatch.h
│ ├── nc_logging.h
│ ├── nc_tests.h
│ ├── nc_uri.h
│ ├── ncbytes.h
│ ├── ncdimscale.h
│ ├── ncdispatch.h
│ ├── nchashmap.h
│ ├── ncio.h
│ ├── nclist.h
│ ├── netcdf.h
│ ├── netcdf_f.h
│ ├── netcdf_par.h
│ └── utf8proc.h
├── install-sh
├── lib_flags.am
├── libcdmr
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── ast.h
│ ├── ast_byteio.c
│ ├── ast_byteio.h
│ ├── ast_curl.c
│ ├── ast_curl.h
│ ├── ast_debug.c
│ ├── ast_debug.h
│ ├── ast_internal.c
│ ├── ast_internal.h
│ ├── ast_runtime.c
│ ├── ast_runtime.h
│ ├── ast_util.c
│ ├── ast_util.h
│ ├── cceconstraints.c
│ ├── cceconstraints.h
│ ├── ccelex.c
│ ├── cceparse.c
│ ├── cceparselex.h
│ ├── ccetab.c
│ ├── ccetab.h
│ ├── crce.c
│ ├── crce.h
│ ├── crdebug.c
│ ├── crdebug.h
│ ├── crutil.c
│ ├── crutil.h
│ ├── curlwrap.c
│ ├── curlwrap.h
│ ├── ncStreamx.c
│ ├── ncStreamx.h
│ ├── ncaux.c
│ ├── ncaux.h
│ ├── nccr.c
│ ├── nccr.h
│ ├── nccrdispatch.c
│ ├── nccrdispatch.h
│ ├── nccrdump.c
│ ├── nccrdump.h
│ ├── nccrgetvara.c
│ ├── nccrmeta.c
│ ├── nccrmeta.h
│ ├── nccrnode.h
│ ├── nccrproto.c
│ ├── nccrproto.h
│ ├── nccrstub.c
│ └── t_cdmr.c
├── libcf
│ ├── COPYRIGHT
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── acinclude.m4
│ ├── aclocal.m4
│ ├── cfcheck
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── cfcheck.c
│ │ └── tst_cfcheck.sh
│ ├── compile
│ ├── config.guess
│ ├── config.h.in
│ ├── config.sub
│ ├── configure
│ ├── configure.ac
│ ├── depcomp
│ ├── doc
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── defines.texi
│ │ ├── libcf.info
│ │ ├── libcf.pdf
│ │ ├── libcf.ps
│ │ ├── libcf.texi
│ │ ├── mdate-sh
│ │ ├── stamp-vti
│ │ ├── texinfo.tex
│ │ └── version.texi
│ ├── gridspec
│ │ └── tools
│ │ ├── make_hgrid
│ │ │ └── run_tests.in
│ │ ├── make_topog
│ │ │ └── run_tests.in
│ │ └── make_vgrid
│ │ └── run_tests.in
│ ├── install-sh
│ ├── ltmain.sh
│ ├── m4
│ │ ├── libtool.m4
│ │ ├── ltoptions.m4
│ │ ├── ltsugar.m4
│ │ ├── ltversion.m4
│ │ └── lt~obsolete.m4
│ ├── missing
│ ├── nfconfig.in
│ └── src
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── cdTimeConv.c
│ ├── cddrs.h
│ ├── cdms.h
│ ├── cdmsint.h
│ ├── cdunif.h
│ ├── cfcvars.c
│ ├── cferror.c
│ ├── cferror.h
│ ├── cffiles.c
│ ├── cfsubsets.c
│ ├── cfvars.c
│ ├── drscdf.h
│ ├── libcf.h
│ ├── libcf_int.h
│ ├── nc_tests.h
│ ├── nccoord.c
│ ├── tst_coords.c
│ ├── tst_cvars.c
│ ├── tst_example_data.c
│ ├── tst_files.c
│ ├── tst_subsets.c
│ ├── tst_vars.c
│ └── tst_vert.c
├── libdap2
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── cache.c
│ ├── cdf3.c
│ ├── cdf4.c
│ ├── common34.c
│ ├── constraints3.c
│ ├── constraints3.h
│ ├── constraints4.c
│ ├── constraints4.h
│ ├── dapalign.c
│ ├── dapalign.h
│ ├── dapattr3.c
│ ├── dapcvt.c
│ ├── dapdebug.c
│ ├── dapdebug.h
│ ├── dapdump.c
│ ├── dapdump.h
│ ├── dapnc.h
│ ├── dapodom.c
│ ├── dapodom.h
│ ├── daputil.c
│ ├── daputil.h
│ ├── dce.y
│ ├── dceconstraints.c
│ ├── dceconstraints.h
│ ├── dcelex.c
│ ├── dceparse.c
│ ├── dceparselex.h
│ ├── dcetab.c
│ ├── dcetab.h
│ ├── getvara.h
│ ├── getvara3.c
│ ├── getvara4.c
│ ├── nccommon.h
│ ├── ncd3dispatch.c
│ ├── ncd3dispatch.h
│ ├── ncd4dispatch.c
│ ├── ncd4dispatch.h
│ ├── ncdap3.c
│ ├── ncdap3.h
│ ├── ncdap3a.c
│ ├── ncdap4.c
│ ├── ncdap4.h
│ └── ncdaperr.c
├── libdispatch
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── att.c
│ ├── copy.c
│ ├── dim.c
│ ├── dispatch.c
│ ├── error.c
│ ├── file.c
│ ├── nc4.c
│ ├── nc_uri.c
│ ├── ncbytes.c
│ ├── nchashmap.c
│ ├── nclist.c
│ ├── nclog.c
│ ├── nclog.h
│ ├── parallel.c
│ ├── v2i.c
│ └── var.c
├── liblib
│ ├── Makefile.am
│ ├── Makefile.in
│ └── stub.c
├── libsrc
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── attr.c
│ ├── attr.m4
│ ├── dim.c
│ ├── ffio.c
│ ├── lookup3.c
│ ├── nc.c
│ ├── nc3dispatch.c
│ ├── nclistmgr.c
│ ├── ncx.c
│ ├── ncx.h
│ ├── ncx.m4
│ ├── netcdf.3
│ ├── onstack.h
│ ├── posixio.c
│ ├── pstdint.h
│ ├── putget.c
│ ├── putget.m4
│ ├── rnd.h
│ ├── string.c
│ ├── utf8proc.c
│ ├── utf8proc_data.h
│ ├── v1hpg.c
│ └── var.c
├── libsrc4
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── error4.c
│ ├── nc4attr.c
│ ├── nc4dim.c
│ ├── nc4dispatch.c
│ ├── nc4dispatch.h
│ ├── nc4file.c
│ ├── nc4grp.c
│ ├── nc4hdf.c
│ ├── nc4internal.c
│ ├── nc4internal.h
│ ├── nc4type.c
│ ├── nc4var.c
│ └── ncfunc.c
├── ltmain.sh
├── m4
│ ├── libtool.m4
│ ├── ltoptions.m4
│ ├── ltsugar.m4
│ ├── ltversion.m4
│ └── lt~obsolete.m4
├── man4
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── defines.texi
│ ├── mdate-sh
│ ├── nccopy-man-1.html
│ ├── ncdump-man-1.html
│ ├── ncgen-man-1.html
│ ├── ncgen3-man-1.html
│ ├── netcdf-c.dvi
│ ├── netcdf-c.html
│ ├── netcdf-c.info
│ ├── netcdf-c.info-1
│ ├── netcdf-c.info-2
│ ├── netcdf-c.pdf
│ ├── netcdf-c.ps
│ ├── netcdf-c.texi
│ ├── netcdf-c.txt
│ ├── netcdf-cxx.dvi
│ ├── netcdf-cxx.html
│ ├── netcdf-cxx.info
│ ├── netcdf-cxx.pdf
│ ├── netcdf-cxx.ps
│ ├── netcdf-cxx.texi
│ ├── netcdf-cxx.txt
│ ├── netcdf-f77.dvi
│ ├── netcdf-f77.html
│ ├── netcdf-f77.info
│ ├── netcdf-f77.info-1
│ ├── netcdf-f77.info-2
│ ├── netcdf-f77.pdf
│ ├── netcdf-f77.ps
│ ├── netcdf-f77.texi
│ ├── netcdf-f77.txt
│ ├── netcdf-f90.dvi
│ ├── netcdf-f90.html
│ ├── netcdf-f90.info
│ ├── netcdf-f90.pdf
│ ├── netcdf-f90.ps
│ ├── netcdf-f90.texi
│ ├── netcdf-f90.txt
│ ├── netcdf-install.dvi
│ ├── netcdf-install.html
│ ├── netcdf-install.info
│ ├── netcdf-install.pdf
│ ├── netcdf-install.ps
│ ├── netcdf-install.texi
│ ├── netcdf-install.txt
│ ├── netcdf-man-3.html
│ ├── netcdf-tutorial.dvi
│ ├── netcdf-tutorial.html
│ ├── netcdf-tutorial.info
│ ├── netcdf-tutorial.pdf
│ ├── netcdf-tutorial.ps
│ ├── netcdf-tutorial.texi
│ ├── netcdf-tutorial.txt
│ ├── netcdf.dvi
│ ├── netcdf.html
│ ├── netcdf.info
│ ├── netcdf.m4
│ ├── netcdf.pdf
│ ├── netcdf.ps
│ ├── netcdf.texi
│ ├── netcdf.txt
│ ├── netcdf_f77-man.html
│ ├── netcdf_f77.3
│ ├── netcdf_f90-man.html
│ ├── pres_temp_4D.cdl
│ ├── pres_temp_4D_rd.c
│ ├── pres_temp_4D_rd.cpp
│ ├── pres_temp_4D_rd.f
│ ├── pres_temp_4D_rd.f90
│ ├── pres_temp_4D_wr.c
│ ├── pres_temp_4D_wr.cpp
│ ├── pres_temp_4D_wr.f
│ ├── pres_temp_4D_wr.f90
│ ├── sfc_pres_temp.cdl
│ ├── sfc_pres_temp_rd.c
│ ├── sfc_pres_temp_rd.cpp
│ ├── sfc_pres_temp_rd.f
│ ├── sfc_pres_temp_rd.f90
│ ├── sfc_pres_temp_wr.c
│ ├── sfc_pres_temp_wr.cpp
│ ├── sfc_pres_temp_wr.f
│ ├── sfc_pres_temp_wr.f90
│ ├── simple_nc4_rd.c
│ ├── simple_nc4_wr.c
│ ├── simple_xy.cdl
│ ├── simple_xy_nc4_rd.c
│ ├── simple_xy_nc4_rd.f
│ ├── simple_xy_nc4_rd.f90
│ ├── simple_xy_nc4_wr.c
│ ├── simple_xy_nc4_wr.f
│ ├── simple_xy_nc4_wr.f90
│ ├── simple_xy_par_rd.f90
│ ├── simple_xy_par_wr.f90
│ ├── simple_xy_rd.c
│ ├── simple_xy_rd.cpp
│ ├── simple_xy_rd.f
│ ├── simple_xy_rd.f90
│ ├── simple_xy_wr.c
│ ├── simple_xy_wr.cpp
│ ├── simple_xy_wr.f
│ ├── simple_xy_wr.f90
│ ├── stamp-1
│ ├── stamp-2
│ ├── stamp-3
│ ├── stamp-4
│ ├── stamp-5
│ ├── stamp-6
│ ├── stamp-vti
│ ├── texinfo.tex
│ ├── version-c.texi
│ ├── version-cxx.texi
│ ├── version-f77.texi
│ ├── version-f90.texi
│ ├── version-install.texi
│ ├── version-tutorial.texi
│ └── version.texi
├── missing
├── nc-config.in
├── nc_test
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── error.c
│ ├── error.h
│ ├── large_files.c
│ ├── nc_test.c
│ ├── quick_large_files.c
│ ├── run_valgrind_tests.sh
│ ├── t_nc.c
│ ├── test_get.c
│ ├── test_get.m4
│ ├── test_put.c
│ ├── test_put.m4
│ ├── test_read.c
│ ├── test_write.c
│ ├── tests.h
│ ├── tst_atts.c
│ ├── tst_big_rvar.c
│ ├── tst_big_var.c
│ ├── tst_big_var2.c
│ ├── tst_big_var6.c
│ ├── tst_large.c
│ ├── tst_misc.c
│ ├── tst_names.c
│ ├── tst_nofill.c
│ ├── tst_nofill2.c
│ ├── tst_nofill3.c
│ ├── tst_norm.c
│ ├── tst_small.c
│ └── util.c
├── nc_test4
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── bm_file.c
│ ├── bm_many_atts.c
│ ├── bm_many_objs.c
│ ├── cdm_sea_soundings.c
│ ├── ref_chunks1.cdl
│ ├── ref_chunks2.cdl
│ ├── ref_tst_compounds.nc
│ ├── ref_tst_dims.nc
│ ├── ref_tst_interops4.nc
│ ├── ref_tst_xplatform2_1.nc
│ ├── ref_tst_xplatform2_2.nc
│ ├── run_bm.sh
│ ├── run_bm_ar4.sh
│ ├── run_bm_elena.sh
│ ├── run_bm_radar_2D.sh
│ ├── run_bm_radar_2D_compression1.sh
│ ├── run_bm_radar_2D_endianness1.sh
│ ├── run_bm_test1.sh
│ ├── run_bm_test2.sh
│ ├── run_get_hdf4_files.sh
│ ├── run_hdf4_valgrind_tests.sh
│ ├── run_par_bm_radar_2D.sh
│ ├── run_par_bm_test.sh
│ ├── run_par_test.sh
│ ├── run_pnetcdf_test.sh
│ ├── run_tst_chunks.sh
│ ├── run_valgrind_tests.sh
│ ├── run_valgrind_tests2.sh
│ ├── t_type.c
│ ├── tst_ar4.c
│ ├── tst_ar4_3d.c
│ ├── tst_ar4_4d.c
│ ├── tst_ar5.c
│ ├── tst_atts.c
│ ├── tst_atts1.c
│ ├── tst_atts2.c
│ ├── tst_camrun.c
│ ├── tst_chunks.c
│ ├── tst_chunks2.c
│ ├── tst_chunks3.c
│ ├── tst_compounds.c
│ ├── tst_compounds2.c
│ ├── tst_compounds3.c
│ ├── tst_converts.c
│ ├── tst_converts2.c
│ ├── tst_coords.c
│ ├── tst_coords2.c
│ ├── tst_coords3.c
│ ├── tst_create_files.c
│ ├── tst_dims.c
│ ├── tst_dims2.c
│ ├── tst_dims3.c
│ ├── tst_endian_fill.c
│ ├── tst_enums.c
│ ├── tst_files.c
│ ├── tst_files2.c
│ ├── tst_files3.c
│ ├── tst_files4.c
│ ├── tst_files5.c
│ ├── tst_files6.c
│ ├── tst_fillbug.c
│ ├── tst_fills.c
│ ├── tst_fills2.c
│ ├── tst_grps.c
│ ├── tst_grps2.c
│ ├── tst_h_atts2.c
│ ├── tst_h_files3.c
│ ├── tst_h_many_atts.c
│ ├── tst_interops.c
│ ├── tst_interops2.c
│ ├── tst_interops3.c
│ ├── tst_interops4.c
│ ├── tst_interops5.c
│ ├── tst_interops6.c
│ ├── tst_large.c
│ ├── tst_large2.c
│ ├── tst_mem.c
│ ├── tst_mpi_parallel.c
│ ├── tst_nc4perf.c
│ ├── tst_opaques.c
│ ├── tst_parallel.c
│ ├── tst_parallel2.c
│ ├── tst_parallel3.c
│ ├── tst_parallel4.c
│ ├── tst_strings.c
│ ├── tst_strings2.c
│ ├── tst_sync.c
│ ├── tst_unlim_vars.c
│ ├── tst_utf8.c
│ ├── tst_v2.c
│ ├── tst_varms.c
│ ├── tst_vars.c
│ ├── tst_vars2.c
│ ├── tst_vars3.c
│ ├── tst_vars4.c
│ ├── tst_vl.c
│ ├── tst_xplatform.c
│ └── tst_xplatform2.c
├── ncdap_test
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── expected3
│ │ ├── 123.nc.dmp
│ │ ├── 123bears.nc.dmp
│ │ ├── 1990-S1700101.HDF.WVC_Lat.dmp
│ │ ├── 1998-6-avhrr.dat.dmp
│ │ ├── D1.dmp
│ │ ├── Drifters.dmp
│ │ ├── EOSDB.dmp
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── NestedSeq.dmp
│ │ ├── NestedSeq2.dmp
│ │ ├── OverideExample.dmp
│ │ ├── SimpleDrdsExample.dmp
│ │ ├── b31.dmp
│ │ ├── b31a.dmp
│ │ ├── bears.nc.dmp
│ │ ├── ber-2002-10-01.nc.dmp
│ │ ├── ceopL2AIRS2-2.nc.dmp
│ │ ├── coads_climatology2.nc.dmp
│ │ ├── data.nc.dmp
│ │ ├── fnoc1.nc.dmp
│ │ ├── in.nc.dmp
│ │ ├── in1.nc.dmp
│ │ ├── in_2.nc.dmp
│ │ ├── in_no_three_double_dmn.nc.dmp
│ │ ├── in_v.nc.dmp
│ │ ├── ingrid.dmp
│ │ ├── nestedDAS.dmp
│ │ ├── pbug0001b.dmp
│ │ ├── saco1.nc.dmp
│ │ ├── synth1.dmp
│ │ ├── synth2.dmp
│ │ ├── synth3.dmp
│ │ ├── synth4.dmp
│ │ ├── synth5.dmp
│ │ ├── synth6.dmp
│ │ ├── synth7.dmp
│ │ ├── synth8.dmp
│ │ ├── test.01.dmp
│ │ ├── test.02.dmp
│ │ ├── test.03.dmp
│ │ ├── test.04.dmp
│ │ ├── test.05.dmp
│ │ ├── test.06a.dmp
│ │ ├── test.07.dmp
│ │ ├── test.07a.dmp
│ │ ├── test.21.dmp
│ │ ├── test.22.dmp
│ │ ├── test.23.dmp
│ │ ├── test.31.dmp
│ │ ├── test.50.dmp
│ │ ├── test.53.dmp
│ │ ├── test.55.dmp
│ │ ├── test.56.dmp
│ │ ├── test.57.dmp
│ │ ├── test.66.dmp
│ │ ├── test.67.dmp
│ │ ├── test.68.dmp
│ │ ├── test.69.dmp
│ │ ├── test.PointFile.dmp
│ │ ├── test.an1.dmp
│ │ ├── test.dfp1.dmp
│ │ ├── test.dfr1.dmp
│ │ ├── test.dfr2.dmp
│ │ ├── test.dfr3.dmp
│ │ ├── test.gr1.dmp
│ │ ├── test.gr2.dmp
│ │ ├── test.gr3.dmp
│ │ ├── test.gr4.dmp
│ │ ├── test.gr5.dmp
│ │ ├── test.nc.dmp
│ │ ├── test.sds1.dmp
│ │ ├── test.sds2.dmp
│ │ ├── test.sds3.dmp
│ │ ├── test.sds4.dmp
│ │ ├── test.sds5.dmp
│ │ ├── test.sds6.dmp
│ │ ├── test.sds7.dmp
│ │ ├── test.vs1.dmp
│ │ ├── test.vs2.dmp
│ │ ├── test.vs3.dmp
│ │ ├── test.vs4.dmp
│ │ ├── test.vs5.dmp
│ │ ├── text.nc.dmp
│ │ └── whoi.dmp
│ ├── expected4
│ │ ├── 123.nc.dmp
│ │ ├── 123bears.nc.dmp
│ │ ├── 1990-S1700101.HDF.WVC_Lat.dmp
│ │ ├── 1998-6-avhrr.dat.dmp
│ │ ├── D1.dmp
│ │ ├── Drifters.dmp
│ │ ├── EOSDB.dmp
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── NestedSeq.dmp
│ │ ├── NestedSeq2.dmp
│ │ ├── OverideExample.dmp
│ │ ├── SimpleDrdsExample.dmp
│ │ ├── b31.dmp
│ │ ├── b31a.dmp
│ │ ├── bears.nc.dmp
│ │ ├── ber-2002-10-01.nc.dmp
│ │ ├── ceopL2AIRS2-2.nc.dmp
│ │ ├── data.nc.dmp
│ │ ├── fnoc1.nc.dmp
│ │ ├── in.nc.dmp
│ │ ├── in1.nc.dmp
│ │ ├── in_2.nc.dmp
│ │ ├── in_no_three_double_dmn.nc.dmp
│ │ ├── in_v.nc.dmp
│ │ ├── ingrid.dmp
│ │ ├── nestedDAS.dmp
│ │ ├── pbug0001b.dmp
│ │ ├── saco1.nc.dmp
│ │ ├── synth1.dmp
│ │ ├── synth2.dmp
│ │ ├── synth3.dmp
│ │ ├── synth4.dmp
│ │ ├── synth5.dmp
│ │ ├── synth6.dmp
│ │ ├── synth7.dmp
│ │ ├── synth8.dmp
│ │ ├── test.01.dmp
│ │ ├── test.02.dmp
│ │ ├── test.03.dmp
│ │ ├── test.04.dmp
│ │ ├── test.05.dmp
│ │ ├── test.06a.dmp
│ │ ├── test.07.dmp
│ │ ├── test.07a.dmp
│ │ ├── test.21.dmp
│ │ ├── test.22.dmp
│ │ ├── test.23.dmp
│ │ ├── test.31.dmp
│ │ ├── test.50.dmp
│ │ ├── test.53.dmp
│ │ ├── test.55.dmp
│ │ ├── test.56.dmp
│ │ ├── test.57.dmp
│ │ ├── test.66.dmp
│ │ ├── test.67.dmp
│ │ ├── test.68.dmp
│ │ ├── test.69.dmp
│ │ ├── test.PointFile.dmp
│ │ ├── test.an1.dmp
│ │ ├── test.dfp1.dmp
│ │ ├── test.dfr1.dmp
│ │ ├── test.dfr2.dmp
│ │ ├── test.dfr3.dmp
│ │ ├── test.gr1.dmp
│ │ ├── test.gr2.dmp
│ │ ├── test.gr3.dmp
│ │ ├── test.gr4.dmp
│ │ ├── test.gr5.dmp
│ │ ├── test.nc.dmp
│ │ ├── test.sds1.dmp
│ │ ├── test.sds2.dmp
│ │ ├── test.sds3.dmp
│ │ ├── test.sds4.dmp
│ │ ├── test.sds5.dmp
│ │ ├── test.sds6.dmp
│ │ ├── test.sds7.dmp
│ │ ├── test.vs1.dmp
│ │ ├── test.vs2.dmp
│ │ ├── test.vs3.dmp
│ │ ├── test.vs4.dmp
│ │ ├── test.vs5.dmp
│ │ ├── text.nc.dmp
│ │ └── whoi.dmp
│ ├── expectremote3
│ │ ├── D1.dmp
│ │ ├── Drifters.dmp
│ │ ├── EOSDB.dmp
│ │ ├── GLOBEC_cetaceans.1.dmp
│ │ ├── GLOBEC_cetaceans.2.dmp
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── NestedSeq.dmp
│ │ ├── NestedSeq2.dmp
│ │ ├── OverideExample.dmp
│ │ ├── SimpleDrdsExample.dmp
│ │ ├── b31.dmp
│ │ ├── b31a.dmp
│ │ ├── ingrid.dmp
│ │ ├── nestedDAS.dmp
│ │ ├── test.01.1.dmp
│ │ ├── test.01.dmp
│ │ ├── test.02.1.dmp
│ │ ├── test.02.dmp
│ │ ├── test.03.1.dmp
│ │ ├── test.03.2.dmp
│ │ ├── test.03.dmp
│ │ ├── test.04.1.dmp
│ │ ├── test.04.dmp
│ │ ├── test.05.1.dmp
│ │ ├── test.05.dmp
│ │ ├── test.06.1.dmp
│ │ ├── test.06a.dmp
│ │ ├── test.07.1.dmp
│ │ ├── test.07.3.dmp
│ │ ├── test.07.4.dmp
│ │ ├── test.07.dmp
│ │ ├── test.07a.dmp
│ │ ├── test.21.dmp
│ │ ├── test.22.dmp
│ │ ├── test.23.dmp
│ │ ├── test.31.dmp
│ │ ├── test.50.dmp
│ │ ├── test.53.dmp
│ │ ├── test.55.dmp
│ │ ├── test.56.dmp
│ │ ├── test.57.dmp
│ │ ├── test.66.dmp
│ │ ├── test.67.dmp
│ │ ├── test.68.dmp
│ │ ├── test.69.dmp
│ │ ├── test.an1.dmp
│ │ ├── test.dfp1.dmp
│ │ ├── test.gr1.dmp
│ │ ├── test.gr2.dmp
│ │ ├── test.gr3.dmp
│ │ ├── test.gr4.dmp
│ │ ├── test.gr5.dmp
│ │ ├── test.nc.dmp
│ │ ├── test.sds1.dmp
│ │ ├── test.sds2.dmp
│ │ ├── test.sds3.dmp
│ │ ├── test.sds4.dmp
│ │ ├── test.sds5.dmp
│ │ ├── test.vs1.dmp
│ │ ├── test.vs2.dmp
│ │ ├── test.vs3.dmp
│ │ ├── test.vs4.dmp
│ │ ├── test.vs5.dmp
│ │ └── whoi.dmp
│ ├── expectremote4
│ │ ├── D1.dmp
│ │ ├── Drifters.dmp
│ │ ├── EOSDB.dmp
│ │ ├── GLOBEC_cetaceans.1.dmp
│ │ ├── GLOBEC_cetaceans.2.dmp
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── NestedSeq.dmp
│ │ ├── NestedSeq2.dmp
│ │ ├── OverideExample.dmp
│ │ ├── SimpleDrdsExample.dmp
│ │ ├── b31.dmp
│ │ ├── b31a.dmp
│ │ ├── ingrid.dmp
│ │ ├── nestedDAS.dmp
│ │ ├── test.01.1.dmp
│ │ ├── test.01.dmp
│ │ ├── test.02.1.dmp
│ │ ├── test.02.dmp
│ │ ├── test.03.1.dmp
│ │ ├── test.03.2.dmp
│ │ ├── test.03.dmp
│ │ ├── test.04.1.dmp
│ │ ├── test.04.dmp
│ │ ├── test.05.1.dmp
│ │ ├── test.05.dmp
│ │ ├── test.06.1.dmp
│ │ ├── test.06a.dmp
│ │ ├── test.07.1.dmp
│ │ ├── test.07.3.dmp
│ │ ├── test.07.4.dmp
│ │ ├── test.07.dmp
│ │ ├── test.07a.dmp
│ │ ├── test.21.dmp
│ │ ├── test.22.dmp
│ │ ├── test.23.dmp
│ │ ├── test.31.dmp
│ │ ├── test.50.dmp
│ │ ├── test.53.dmp
│ │ ├── test.55.dmp
│ │ ├── test.56.dmp
│ │ ├── test.57.dmp
│ │ ├── test.66.dmp
│ │ ├── test.67.dmp
│ │ ├── test.68.dmp
│ │ ├── test.69.dmp
│ │ ├── test.an1.dmp
│ │ ├── test.dfp1.dmp
│ │ ├── test.gr1.dmp
│ │ ├── test.gr2.dmp
│ │ ├── test.gr3.dmp
│ │ ├── test.gr4.dmp
│ │ ├── test.gr5.dmp
│ │ ├── test.sds1.dmp
│ │ ├── test.sds2.dmp
│ │ ├── test.sds3.dmp
│ │ ├── test.sds4.dmp
│ │ ├── test.sds5.dmp
│ │ ├── test.vs1.dmp
│ │ ├── test.vs2.dmp
│ │ ├── test.vs3.dmp
│ │ ├── test.vs4.dmp
│ │ ├── test.vs5.dmp
│ │ └── whoi.dmp
│ ├── t_dap.c
│ ├── t_dap3a.c
│ ├── t_dap4.c
│ ├── test_cvt.c
│ ├── test_vara.c
│ ├── test_varm3.c
│ ├── testdata3
│ │ ├── 123.nc.das
│ │ ├── 123.nc.dds
│ │ ├── 123.nc.dods
│ │ ├── 123bears.nc.das
│ │ ├── 123bears.nc.dds
│ │ ├── 123bears.nc.dods
│ │ ├── 1990-S1700101.HDF.WVC_Lat.das
│ │ ├── 1990-S1700101.HDF.WVC_Lat.dds
│ │ ├── 1990-S1700101.HDF.WVC_Lat.dods
│ │ ├── 1998-6-avhrr.dat.das
│ │ ├── 1998-6-avhrr.dat.dds
│ │ ├── 1998-6-avhrr.dat.dods
│ │ ├── D1.das
│ │ ├── D1.dds
│ │ ├── D1.dods
│ │ ├── Drifters.das
│ │ ├── Drifters.dds
│ │ ├── Drifters.dods
│ │ ├── EOSDB.das
│ │ ├── EOSDB.dds
│ │ ├── EOSDB.dods
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── NestedSeq.das
│ │ ├── NestedSeq.dds
│ │ ├── NestedSeq.dods
│ │ ├── NestedSeq2.das
│ │ ├── NestedSeq2.dds
│ │ ├── NestedSeq2.dods
│ │ ├── OverideExample.das
│ │ ├── OverideExample.dds
│ │ ├── OverideExample.dods
│ │ ├── SimpleDrdsExample.das
│ │ ├── SimpleDrdsExample.dds
│ │ ├── SimpleDrdsExample.dods
│ │ ├── b31.das
│ │ ├── b31.dds
│ │ ├── b31.dods
│ │ ├── b31a.das
│ │ ├── b31a.dds
│ │ ├── b31a.dods
│ │ ├── bears.nc.das
│ │ ├── bears.nc.dds
│ │ ├── bears.nc.dods
│ │ ├── ber-2002-10-01.nc.das
│ │ ├── ber-2002-10-01.nc.dds
│ │ ├── ber-2002-10-01.nc.dods
│ │ ├── ceopL2AIRS2-2.nc.das
│ │ ├── ceopL2AIRS2-2.nc.dds
│ │ ├── ceopL2AIRS2-2.nc.dods
│ │ ├── ceopL2AIRS2.nc.das
│ │ ├── ceopL2AIRS2.nc.dds
│ │ ├── ceopL2AIRS2.nc.dods
│ │ ├── data.nc.das
│ │ ├── data.nc.dds
│ │ ├── data.nc.dods
│ │ ├── fnoc1.nc.das
│ │ ├── fnoc1.nc.dds
│ │ ├── fnoc1.nc.dods
│ │ ├── in.nc.das
│ │ ├── in.nc.dds
│ │ ├── in.nc.dods
│ │ ├── in1.nc.das
│ │ ├── in1.nc.dds
│ │ ├── in1.nc.dods
│ │ ├── in_2.nc.das
│ │ ├── in_2.nc.dds
│ │ ├── in_2.nc.dods
│ │ ├── in_no_three_double_dmn.nc.das
│ │ ├── in_no_three_double_dmn.nc.dds
│ │ ├── in_no_three_double_dmn.nc.dods
│ │ ├── in_v.nc.das
│ │ ├── in_v.nc.dds
│ │ ├── in_v.nc.dods
│ │ ├── ingrid.das
│ │ ├── ingrid.dds
│ │ ├── ingrid.dods
│ │ ├── nestedDAS.das
│ │ ├── nestedDAS.dds
│ │ ├── nestedDAS.dods
│ │ ├── pbug0001b.das
│ │ ├── pbug0001b.dds
│ │ ├── pbug0001b.dods
│ │ ├── saco1.nc.das
│ │ ├── saco1.nc.dds
│ │ ├── saco1.nc.dods
│ │ ├── synth1.das
│ │ ├── synth1.dds
│ │ ├── synth1.dods
│ │ ├── synth2.das
│ │ ├── synth2.dds
│ │ ├── synth2.dods
│ │ ├── synth3.das
│ │ ├── synth3.dds
│ │ ├── synth3.dods
│ │ ├── synth4.das
│ │ ├── synth4.dds
│ │ ├── synth4.dods
│ │ ├── synth5.das
│ │ ├── synth5.dds
│ │ ├── synth5.dods
│ │ ├── synth6.das
│ │ ├── synth6.dds
│ │ ├── synth6.dods
│ │ ├── synth7.das
│ │ ├── synth7.dds
│ │ ├── synth7.dods
│ │ ├── synth8.das
│ │ ├── synth8.dds
│ │ ├── synth8.dods
│ │ ├── test.01.das
│ │ ├── test.01.dds
│ │ ├── test.01.dods
│ │ ├── test.02.das
│ │ ├── test.02.dds
│ │ ├── test.02.dods
│ │ ├── test.03.das
│ │ ├── test.03.dds
│ │ ├── test.03.dods
│ │ ├── test.04.das
│ │ ├── test.04.dds
│ │ ├── test.04.dods
│ │ ├── test.05.das
│ │ ├── test.05.dds
│ │ ├── test.05.dods
│ │ ├── test.06.das
│ │ ├── test.06.dds
│ │ ├── test.06.dods
│ │ ├── test.06a.das
│ │ ├── test.06a.dds
│ │ ├── test.06a.dods
│ │ ├── test.07.das
│ │ ├── test.07.dds
│ │ ├── test.07.dods
│ │ ├── test.07a.das
│ │ ├── test.07a.dds
│ │ ├── test.07a.dods
│ │ ├── test.21.das
│ │ ├── test.21.dds
│ │ ├── test.21.dods
│ │ ├── test.22.das
│ │ ├── test.22.dds
│ │ ├── test.22.dods
│ │ ├── test.23.das
│ │ ├── test.23.dds
│ │ ├── test.23.dods
│ │ ├── test.31.das
│ │ ├── test.31.dds
│ │ ├── test.31.dods
│ │ ├── test.32.das
│ │ ├── test.32.dds
│ │ ├── test.32.dods
│ │ ├── test.50.das
│ │ ├── test.50.dds
│ │ ├── test.50.dods
│ │ ├── test.53.das
│ │ ├── test.53.dds
│ │ ├── test.53.dods
│ │ ├── test.55.das
│ │ ├── test.55.dds
│ │ ├── test.55.dods
│ │ ├── test.56.das
│ │ ├── test.56.dds
│ │ ├── test.56.dods
│ │ ├── test.57.das
│ │ ├── test.57.dds
│ │ ├── test.57.dods
│ │ ├── test.66.das
│ │ ├── test.66.dds
│ │ ├── test.66.dods
│ │ ├── test.67.das
│ │ ├── test.67.dds
│ │ ├── test.67.dods
│ │ ├── test.68.das
│ │ ├── test.68.dds
│ │ ├── test.68.dods
│ │ ├── test.69.das
│ │ ├── test.69.dds
│ │ ├── test.69.dods
│ │ ├── test.PointFile.das
│ │ ├── test.PointFile.dds
│ │ ├── test.PointFile.dods
│ │ ├── test.SwathFile.das
│ │ ├── test.SwathFile.dds
│ │ ├── test.SwathFile.dods
│ │ ├── test.an1.das
│ │ ├── test.an1.dds
│ │ ├── test.an1.dods
│ │ ├── test.dfp1.das
│ │ ├── test.dfp1.dds
│ │ ├── test.dfp1.dods
│ │ ├── test.dfr1.das
│ │ ├── test.dfr1.dds
│ │ ├── test.dfr1.dods
│ │ ├── test.dfr2.das
│ │ ├── test.dfr2.dds
│ │ ├── test.dfr2.dods
│ │ ├── test.dfr3.das
│ │ ├── test.dfr3.dds
│ │ ├── test.dfr3.dods
│ │ ├── test.gr1.das
│ │ ├── test.gr1.dds
│ │ ├── test.gr1.dods
│ │ ├── test.gr2.das
│ │ ├── test.gr2.dds
│ │ ├── test.gr2.dods
│ │ ├── test.gr3.das
│ │ ├── test.gr3.dds
│ │ ├── test.gr3.dods
│ │ ├── test.gr4.das
│ │ ├── test.gr4.dds
│ │ ├── test.gr4.dods
│ │ ├── test.gr5.das
│ │ ├── test.gr5.dds
│ │ ├── test.gr5.dods
│ │ ├── test.nc.das
│ │ ├── test.nc.dds
│ │ ├── test.nc.dods
│ │ ├── test.sds1.das
│ │ ├── test.sds1.dds
│ │ ├── test.sds1.dods
│ │ ├── test.sds2.das
│ │ ├── test.sds2.dds
│ │ ├── test.sds2.dods
│ │ ├── test.sds3.das
│ │ ├── test.sds3.dds
│ │ ├── test.sds3.dods
│ │ ├── test.sds4.das
│ │ ├── test.sds4.dds
│ │ ├── test.sds4.dods
│ │ ├── test.sds5.das
│ │ ├── test.sds5.dds
│ │ ├── test.sds5.dods
│ │ ├── test.sds6.das
│ │ ├── test.sds6.dds
│ │ ├── test.sds6.dods
│ │ ├── test.sds7.das
│ │ ├── test.sds7.dds
│ │ ├── test.sds7.dods
│ │ ├── test.vs1.das
│ │ ├── test.vs1.dds
│ │ ├── test.vs1.dods
│ │ ├── test.vs2.das
│ │ ├── test.vs2.dds
│ │ ├── test.vs2.dods
│ │ ├── test.vs3.das
│ │ ├── test.vs3.dds
│ │ ├── test.vs3.dods
│ │ ├── test.vs4.das
│ │ ├── test.vs4.dds
│ │ ├── test.vs4.dods
│ │ ├── test.vs5.das
│ │ ├── test.vs5.dds
│ │ ├── test.vs5.dods
│ │ ├── testfile.nc.das
│ │ ├── testfile.nc.dds
│ │ ├── testfile.nc.dods
│ │ ├── text.nc.das
│ │ ├── text.nc.dds
│ │ ├── text.nc.dods
│ │ ├── whoi.das
│ │ ├── whoi.dds
│ │ └── whoi.dods
│ ├── tst_longremote3.sh
│ ├── tst_longremote4.sh
│ ├── tst_ncdap.sh
│ ├── tst_ncdap3.sh
│ ├── tst_ncdap4.sh
│ ├── tst_ncdap_shared.sh
│ ├── tst_remote.sh
│ ├── tst_remote3.sh
│ └── tst_remote4.sh
├── ncdump
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── cdl.h
│ ├── cdl4
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── bigf1.cdl
│ │ ├── bigf2.cdl
│ │ ├── bigf3.cdl
│ │ ├── bigr1.cdl
│ │ ├── bigr2.cdl
│ │ ├── bigr3.cdl
│ │ ├── c0.cdl
│ │ ├── example_good.cdl
│ │ ├── fills.cdl
│ │ ├── n3time.cdl
│ │ ├── nc_enddef.cdl
│ │ ├── nc_sync.cdl
│ │ ├── pres_temp_4D.cdl
│ │ ├── ref_const_test.cdl
│ │ ├── ref_ctest1_nc4.cdl
│ │ ├── ref_ctest1_nc4c.cdl
│ │ ├── ref_dimscope.cdl
│ │ ├── ref_nctst.cdl
│ │ ├── ref_nctst_64bit_offset.cdl
│ │ ├── ref_nctst_netcdf4.cdl
│ │ ├── ref_nctst_netcdf4_classic.cdl
│ │ ├── ref_solar.cdl
│ │ ├── ref_tst_chardata.cdl
│ │ ├── ref_tst_comp.cdl
│ │ ├── ref_tst_comp2.cdl
│ │ ├── ref_tst_comp3.cdl
│ │ ├── ref_tst_enum_data.cdl
│ │ ├── ref_tst_group_data.cdl
│ │ ├── ref_tst_nans.cdl
│ │ ├── ref_tst_opaque_data.cdl
│ │ ├── ref_tst_small.cdl
│ │ ├── ref_tst_solar_1.cdl
│ │ ├── ref_tst_solar_2.cdl
│ │ ├── ref_tst_special_atts.cdl
│ │ ├── ref_tst_special_atts3.cdl
│ │ ├── ref_tst_string_data.cdl
│ │ ├── ref_tst_unicode.cdl
│ │ ├── ref_tst_unlim2.cdl
│ │ ├── ref_tst_utf8.cdl
│ │ ├── ref_tst_vlen_data.cdl
│ │ ├── ref_typescope.cdl
│ │ ├── sfc_pres_temp.cdl
│ │ ├── simple_xy.cdl
│ │ ├── small.cdl
│ │ ├── small2.cdl
│ │ ├── test0.cdl
│ │ ├── tst_ncml.cdl
│ │ ├── unlimtest1.cdl
│ │ └── unlimtest2.cdl
│ ├── chunkspec.c
│ ├── chunkspec.h
│ ├── ctest.c
│ ├── ctest64.c
│ ├── dimmap.c
│ ├── dimmap.h
│ ├── dumplib.c
│ ├── dumplib.h
│ ├── expected4
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── c0.dmp
│ │ ├── example_good.dmp
│ │ ├── fills.dmp
│ │ ├── n3time.dmp
│ │ ├── nc_enddef.dmp
│ │ ├── nc_sync.dmp
│ │ ├── pres_temp_4D.dmp
│ │ ├── ref_const_test.dmp
│ │ ├── ref_ctest1_nc4.dmp
│ │ ├── ref_ctest1_nc4c.dmp
│ │ ├── ref_dimscope.dmp
│ │ ├── ref_nctst.dmp
│ │ ├── ref_nctst_64bit_offset.dmp
│ │ ├── ref_nctst_netcdf4.dmp
│ │ ├── ref_nctst_netcdf4_classic.dmp
│ │ ├── ref_solar.dmp
│ │ ├── ref_tst_chardata.dmp
│ │ ├── ref_tst_comp.dmp
│ │ ├── ref_tst_comp2.dmp
│ │ ├── ref_tst_comp3.dmp
│ │ ├── ref_tst_enum_data.dmp
│ │ ├── ref_tst_group_data.dmp
│ │ ├── ref_tst_nans.dmp
│ │ ├── ref_tst_opaque_data.dmp
│ │ ├── ref_tst_small.dmp
│ │ ├── ref_tst_solar_1.dmp
│ │ ├── ref_tst_solar_2.dmp
│ │ ├── ref_tst_special_atts.dmp
│ │ ├── ref_tst_special_atts3.dmp
│ │ ├── ref_tst_string_data.dmp
│ │ ├── ref_tst_unicode.dmp
│ │ ├── ref_tst_unlim2.dmp
│ │ ├── ref_tst_utf8.dmp
│ │ ├── ref_tst_vlen_data.dmp
│ │ ├── ref_typescope.dmp
│ │ ├── sfc_pres_temp.dmp
│ │ ├── simple_xy.dmp
│ │ ├── small.dmp
│ │ ├── small2.dmp
│ │ ├── test0.dmp
│ │ ├── tst_ncml.dmp
│ │ ├── unlimtest1.dmp
│ │ └── unlimtest2.dmp
│ ├── indent.c
│ ├── indent.h
│ ├── isnan.h
│ ├── nccopy.1
│ ├── nccopy.c
│ ├── ncdump.1
│ ├── ncdump.c
│ ├── ncdump.h
│ ├── nciter.c
│ ├── nciter.h
│ ├── nctime.c
│ ├── nctime.h
│ ├── ref1.ncml
│ ├── ref_ctest.c
│ ├── ref_ctest1_nc4.cdl
│ ├── ref_ctest1_nc4c.cdl
│ ├── ref_ctest64.c
│ ├── ref_nc_test_netcdf4.cdl
│ ├── ref_nc_test_netcdf4_4_0.nc
│ ├── ref_times.cdl
│ ├── ref_tst_comp.cdl
│ ├── ref_tst_compounds2.cdl
│ ├── ref_tst_compounds2.nc
│ ├── ref_tst_compounds3.cdl
│ ├── ref_tst_compounds3.nc
│ ├── ref_tst_compounds4.cdl
│ ├── ref_tst_compounds4.nc
│ ├── ref_tst_enum_data.cdl
│ ├── ref_tst_fillbug.cdl
│ ├── ref_tst_format_att.cdl
│ ├── ref_tst_format_att_64.cdl
│ ├── ref_tst_group_data.cdl
│ ├── ref_tst_group_data_v23.cdl
│ ├── ref_tst_nans.cdl
│ ├── ref_tst_noncoord.cdl
│ ├── ref_tst_opaque_data.cdl
│ ├── ref_tst_small.cdl
│ ├── ref_tst_solar_1.cdl
│ ├── ref_tst_solar_2.cdl
│ ├── ref_tst_special_atts.cdl
│ ├── ref_tst_special_atts3.cdl
│ ├── ref_tst_string_data.cdl
│ ├── ref_tst_unicode.cdl
│ ├── ref_tst_utf8.cdl
│ ├── ref_tst_vlen_data.cdl
│ ├── rewrite-scalar.c
│ ├── run_back_comp_tests.sh
│ ├── run_tests.sh
│ ├── run_utf8_tests.sh
│ ├── small.cdl
│ ├── small2.cdl
│ ├── test0.cdl
│ ├── tst_64bit.sh
│ ├── tst_brecs.cdl
│ ├── tst_calendars.cdl
│ ├── tst_calendars.sh
│ ├── tst_chunking.c
│ ├── tst_comp.c
│ ├── tst_comp2.c
│ ├── tst_compress.c
│ ├── tst_create_files.c
│ ├── tst_enum_data.c
│ ├── tst_fillbug.c
│ ├── tst_fillbug.sh
│ ├── tst_group_data.c
│ ├── tst_h_rdc0.c
│ ├── tst_lengths.sh
│ ├── tst_mslp.cdl
│ ├── tst_nans.c
│ ├── tst_nccopy3.sh
│ ├── tst_nccopy4.sh
│ ├── tst_ncgen4.sh
│ ├── tst_ncgen4_classic.sh
│ ├── tst_ncgen4_cycle.sh
│ ├── tst_ncgen4_diff.sh
│ ├── tst_ncgen4_shared.sh
│ ├── tst_ncml.cdl
│ ├── tst_netcdf4.sh
│ ├── tst_netcdf4_4.sh
│ ├── tst_opaque_data.c
│ ├── tst_output.sh
│ ├── tst_special_atts.c
│ ├── tst_string_data.c
│ ├── tst_unicode.c
│ ├── tst_utf8.c
│ ├── tst_vlen_data.c
│ ├── utils.c
│ ├── utils.h
│ ├── vardata.c
│ └── vardata.h
├── ncgen
│ ├── ConvertUTF.c
│ ├── ConvertUTF.h
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── bindata.c
│ ├── bytebuffer.c
│ ├── bytebuffer.h
│ ├── c0.cdl
│ ├── cdata.c
│ ├── cvt.c
│ ├── data.c
│ ├── data.h
│ ├── debug.c
│ ├── debug.h
│ ├── dump.c
│ ├── dump.h
│ ├── escapes.c
│ ├── f77data.c
│ ├── genbin.c
│ ├── genc.c
│ ├── genchar.c
│ ├── generr.c
│ ├── generr.h
│ ├── genf77.c
│ ├── genj.c
│ ├── genlib.c
│ ├── genlib.h
│ ├── getfill.c
│ ├── includes.h
│ ├── internals.html
│ ├── jdata.c
│ ├── list.c
│ ├── list.h
│ ├── main.c
│ ├── ncgen.1
│ ├── ncgen.h
│ ├── ncgen.l
│ ├── ncgen.y
│ ├── ncgentab.c
│ ├── ncgenyy.c
│ ├── nciter.c
│ ├── nciter.h
│ ├── odom.c
│ ├── odom.h
│ ├── offsets.c
│ ├── offsets.h
│ ├── ref_camrun.cdl
│ ├── run_nc4_tests.sh
│ ├── run_tests.sh
│ ├── semantics.c
│ ├── util.c
│ └── util.h
├── ncgen3
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── c0.cdl
│ ├── escapes.c
│ ├── generic.h
│ ├── genlib.c
│ ├── genlib.h
│ ├── getfill.c
│ ├── init.c
│ ├── load.c
│ ├── main.c
│ ├── ncgen.h
│ ├── ncgen.l
│ ├── ncgen.y
│ ├── ncgen3.1
│ ├── ncgentab.c
│ ├── ncgentab.h
│ ├── ncgenyy.c
│ ├── run_nc4_tests.sh
│ └── run_tests.sh
├── nctest
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── README
│ ├── add.c
│ ├── add.h
│ ├── atttests.c
│ ├── cdftests.c
│ ├── compare_test_files.sh
│ ├── dimtests.c
│ ├── driver.c
│ ├── emalloc.c
│ ├── emalloc.h
│ ├── error.c
│ ├── error.h
│ ├── misctest.c
│ ├── rec.c
│ ├── ref_nctest_64bit_offset.nc
│ ├── ref_nctest_classic.nc
│ ├── slabs.c
│ ├── testcdf.h
│ ├── tests.h
│ ├── tst_rename.c
│ ├── val.c
│ ├── val.h
│ ├── vardef.c
│ ├── varget.c
│ ├── vargetg.c
│ ├── varput.c
│ ├── varputg.c
│ ├── vartests.c
│ ├── vputget.c
│ └── vputgetg.c
├── netcdf.pc.in
├── nf_test
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── create_fills.sh
│ ├── f90tst_fill.f90
│ ├── f90tst_fill2.f90
│ ├── f90tst_grps.f90
│ ├── f90tst_nc4_par.f90
│ ├── f90tst_parallel.f90
│ ├── f90tst_parallel2.f90
│ ├── f90tst_parallel3.f90
│ ├── f90tst_vars.f90
│ ├── f90tst_vars2.f90
│ ├── f90tst_vars3.f90
│ ├── f90tst_vars4.f90
│ ├── f90tst_vars_vlen.f90
│ ├── fills.cdl
│ ├── fortlib.c
│ ├── ftest.F
│ ├── ftst_groups.F
│ ├── ftst_parallel.F
│ ├── ftst_parallel_nasa.F
│ ├── ftst_types.F
│ ├── ftst_types2.F
│ ├── ftst_types3.F
│ ├── ftst_v2.F
│ ├── ftst_vars.F
│ ├── ftst_vars2.F
│ ├── ftst_vars3.F
│ ├── ftst_vars4.F
│ ├── ftst_vars5.F
│ ├── ftst_vars6.F
│ ├── handle_err.F
│ ├── nf_error.F
│ ├── nf_test.F
│ ├── run_f77_par_test.sh
│ ├── run_f90_par_test.sh
│ ├── test_get.F
│ ├── test_get.m4
│ ├── test_put.F
│ ├── test_put.m4
│ ├── test_read.F
│ ├── test_write.F
│ ├── tests.inc
│ ├── tst_f77_v2.F
│ ├── tst_f90.f90
│ ├── tst_f90_nc4.f90
│ ├── tst_flarge.f90
│ ├── tst_io.f90
│ ├── tst_types.f90
│ ├── tst_types2.f90
│ └── util.F
├── oc
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── constraints.h
│ ├── curlfunctions.c
│ ├── curlfunctions.h
│ ├── dap.y
│ ├── daplex.c
│ ├── dapparse.c
│ ├── dapparselex.h
│ ├── daptab.c
│ ├── daptab.h
│ ├── http.c
│ ├── http.h
│ ├── oc.c
│ ├── oc.h
│ ├── ocbytes.c
│ ├── ocbytes.h
│ ├── occlientparams.c
│ ├── occlientparams.h
│ ├── occompile.c
│ ├── occontent.c
│ ├── occontent.h
│ ├── ocdata.c
│ ├── ocdata.h
│ ├── ocdatatypes.h
│ ├── ocdebug.c
│ ├── ocdebug.h
│ ├── ocdrno.c
│ ├── ocdrno.h
│ ├── ocdump.c
│ ├── ocdump.h
│ ├── ocinternal.c
│ ├── ocinternal.h
│ ├── oclist.c
│ ├── oclist.h
│ ├── oclog.c
│ ├── oclog.h
│ ├── ocnode.c
│ ├── ocnode.h
│ ├── ocuri.c
│ ├── ocuri.h
│ ├── ocutil.c
│ ├── ocutil.h
│ ├── ocxdr_stdio.c
│ ├── rc.c
│ ├── rc.h
│ ├── read.c
│ └── read.h
├── test_prog.F
├── test_prog.c
├── test_prog.f90
└── udunits
├── ANNOUNCEMENT
├── CHANGE_LOG
├── LICENSE
├── Makefile.am
├── Makefile.in
├── aclocal.m4
├── compile
├── config.guess
├── config.h.in
├── config.sub
├── configure
├── configure.ac
├── depcomp
├── expat
│ ├── COPYING
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── ascii.h
│ ├── asciitab.h
│ ├── expat.h
│ ├── expat_config.h.in
│ ├── expat_external.h
│ ├── iasciitab.h
│ ├── internal.h
│ ├── latin1tab.h
│ ├── nametab.h
│ ├── utf8tab.h
│ ├── xmlparse.c
│ ├── xmlrole.c
│ ├── xmlrole.h
│ ├── xmltok.c
│ ├── xmltok.h
│ ├── xmltok_impl.c
│ ├── xmltok_impl.h
│ └── xmltok_ns.c
├── failure.texi
├── install-sh
├── lib
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── converter.c
│ ├── converter.h
│ ├── error.c
│ ├── formatter.c
│ ├── idToUnitMap.c
│ ├── idToUnitMap.h
│ ├── parser.c
│ ├── parser.y
│ ├── prefix.c
│ ├── scanner.c
│ ├── scanner.l
│ ├── status.c
│ ├── systemMap.c
│ ├── systemMap.h
│ ├── testUnits-1.c
│ ├── testUnits.c
│ ├── udunits-1.c
│ ├── udunits.h
│ ├── udunits2-accepted.xml
│ ├── udunits2-base.xml
│ ├── udunits2-common.xml
│ ├── udunits2-derived.xml
│ ├── udunits2-prefixes.xml
│ ├── udunits2.h
│ ├── udunits2.xml
│ ├── udunits2lib.html
│ ├── udunits2lib.info
│ ├── udunits2lib.pdf
│ ├── udunits2lib.texi
│ ├── unitAndId.c
│ ├── unitAndId.h
│ ├── unitToIdMap.c
│ ├── unitToIdMap.h
│ ├── unitcore.c
│ ├── ut_free_system.c
│ ├── xml.c
│ ├── xmlFailures
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── badDef.xml
│ │ ├── baseAndDimensionless.xml
│ │ ├── dupBaseAlias.xml
│ │ ├── dupBaseName.xml
│ │ ├── dupBaseSymbol.xml
│ │ ├── inconsistentPrefixEncoding.xml
│ │ ├── misplacedBase.xml
│ │ ├── missingBase.xml
│ │ ├── prefixEncoding.xml
│ │ ├── prefixName.xml
│ │ ├── prefixSymbol.xml
│ │ └── prefixValue.xml
│ └── xmlSuccesses
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── include.xml
│ └── prefixes.xml
├── ltmain.sh
├── make.texi
├── mdate-sh
├── missing
├── prog
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── udunits2.c
│ ├── udunits2prog.html
│ ├── udunits2prog.info
│ ├── udunits2prog.pdf
│ └── udunits2prog.texi
├── stamp-vti
├── success.texi
├── test
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── redo-results
│ └── results.tab
├── texinfo.tex
├── udunits2.html
├── udunits2.info
├── udunits2.pdf
├── udunits2.texi
├── version.texi
└── ylwrap
55 directories, 1846 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论