实例介绍
NetCDF files are self-describing, network-transparent, directly accessible, and extendible. `Self-describing' means that a netCDF file includes information about the data it contains. `Network-transparent' means that a netCDF file is represented in a form that can be accessed by computers with dif
【实例截图】
【核心代码】
netcdf-3.6.3.tar
└── netcdf-3.6.3
├── acinclude.m4
├── aclocal.m4
├── compile
├── config.guess
├── config.h.in
├── config.sub
├── configure
├── configure.ac
├── COPYRIGHT
├── cxx
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── nctst.cpp
│ ├── ncvalues.cpp
│ ├── ncvalues.h
│ ├── netcdf.cpp
│ ├── netcdfcpp.h
│ ├── netcdf.hh
│ ├── README
│ ├── ref_nctst_64bit_offset.cdl
│ ├── ref_nctst.cdl
│ ├── ref_nctst_netcdf4.cdl
│ ├── ref_nctst_netcdf4_classic.cdl
│ ├── run_nc4_tests.sh
│ ├── run_nc_tests.sh
│ └── tst_failure.cpp
├── cxx4
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── ncatt.cpp
│ ├── ncdim.cpp
│ ├── ncexception.cpp
│ ├── ncfile.cpp
│ ├── ncgroup.cpp
│ ├── ncvalues.cpp
│ ├── ncvalues.h
│ ├── ncvar.cpp
│ ├── netcdfcpp4.h
│ ├── tst_file.cpp
│ ├── tst_filerw.cpp
│ ├── tst_simple.cpp
│ ├── tst_suite.cpp
│ ├── tst_suite.h
│ └── tst_suiterunner.cpp
├── depcomp
├── dods.m4
├── examples
│ ├── C
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── pres_temp_4D_rd.c
│ │ ├── pres_temp_4D_wr.c
│ │ ├── 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
│ │ ├── create_sample_files.sh
│ │ ├── do_comps.sh
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── pres_temp_4D.cdl
│ │ ├── sfc_pres_temp.cdl
│ │ └── simple_xy.cdl
│ ├── CXX
│ │ ├── do_comps.sh
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── 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
│ │ ├── do_comps.sh
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── 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
│ ├── F77
│ │ ├── do_comps.sh
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── 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
│ │ ├── do_comps.sh
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── 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_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_rd.f90
│ │ └── simple_xy_wr.f90
│ ├── Makefile.am
│ └── Makefile.in
├── f90
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── netcdf4_constants.f90
│ ├── netcdf4_externals.f90
│ ├── netcdf4.f90
│ ├── netcdf4_func.f90
│ ├── netcdf4_visibility.f90
│ ├── netcdf_attributes.f90
│ ├── netcdf_constants.f90
│ ├── netcdf_dims.f90
│ ├── netcdf_expanded.f90
│ ├── netcdf_externals.f90
│ ├── netcdf.f90
│ ├── netcdf_f90.3
│ ├── netcdf_file.f90
│ ├── netcdf_overloads.f90
│ ├── netcdf_text_variables.f90
│ ├── netcdf_variables.f90
│ ├── netcdf_visibility.f90
│ └── typeSizes.f90
├── fortran
│ ├── 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
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── ncfortran.h
│ ├── netcdf2.inc
│ ├── netcdf3.inc
│ ├── netcdf4.inc
│ ├── netcdf_f77.3
│ ├── netcdf.inc
│ └── nfconfig.in
├── INSTALL
├── install-sh
├── libsrc
│ ├── attr.c
│ ├── attr.m4
│ ├── dim.c
│ ├── error.c
│ ├── fbits.h
│ ├── ffio.c
│ ├── libvers.c
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── nc3convert.h
│ ├── nc3local.h
│ ├── nc.c
│ ├── nc.h
│ ├── ncio.h
│ ├── ncx.c
│ ├── ncx.h
│ ├── ncx.m4
│ ├── netcdf.3
│ ├── netcdf3.h
│ ├── netcdf3l.h
│ ├── netcdf.h
│ ├── onstack.h
│ ├── posixio.c
│ ├── putget.c
│ ├── putget.m4
│ ├── rnd.h
│ ├── string.c
│ ├── t_nc.c
│ ├── utf8proc.c
│ ├── utf8proc_data.h
│ ├── utf8proc.h
│ ├── v1hpg.c
│ ├── v2i.c
│ └── var.c
├── libsrc4
│ ├── error.c
│ ├── error.h
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── nc4attr.c
│ ├── nc4dim.c
│ ├── nc4file.c
│ ├── nc4grp.c
│ ├── nc4hdf.c
│ ├── nc4internal.c
│ ├── nc4internal.h
│ ├── nc4type.c
│ ├── nc4var.c
│ ├── ncfunc.c
│ ├── nc_tests.h
│ ├── netcdf3.h
│ ├── netcdf_base.h
│ ├── netcdf.h
│ ├── ref_tst_compounds.nc
│ ├── ref_tst_h_compounds.h5
│ ├── run_par_tests.sh
│ ├── tst_atts.c
│ ├── tst_compounds2.c
│ ├── tst_compounds.c
│ ├── tst_converts2.c
│ ├── tst_converts.c
│ ├── tst_dims.c
│ ├── tst_enums.c
│ ├── tst_files.c
│ ├── tst_grps.c
│ ├── tst_h_atts2.c
│ ├── tst_h_atts.c
│ ├── tst_h_compounds2.c
│ ├── tst_h_compounds.c
│ ├── tst_h_dimscales2.c
│ ├── tst_h_dimscales.c
│ ├── tst_h_enums.c
│ ├── tst_h_files.c
│ ├── tst_h_grps.c
│ ├── tst_h_opaques.c
│ ├── tst_h_par.c
│ ├── tst_h_rd_cmp.c
│ ├── tst_h_strings.c
│ ├── tst_h_vars2.c
│ ├── tst_h_vars.c
│ ├── tst_h_vl2.c
│ ├── tst_h_vl.c
│ ├── tst_h_wrt_cmp.c
│ ├── tst_interops.c
│ ├── tst_lists.c
│ ├── tst_opaques.c
│ ├── tst_strings.c
│ ├── tst_unlim_vars.c
│ ├── tst_utf8.c
│ ├── tst_v2.c
│ ├── tst_varms.c
│ ├── tst_vars2.c
│ ├── tst_vars.c
│ └── tst_vl.c
├── ltmain.sh
├── Makefile.am
├── Makefile.in
├── man
│ ├── defines.texi
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── mdate-sh
│ ├── ncdump-man-1.html
│ ├── ncgen-man-1.html
│ ├── netcdf-c.dvi
│ ├── netcdf-c.html
│ ├── netcdf-c.info
│ ├── 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.dvi
│ ├── netcdf-f77.dvi
│ ├── netcdf-f77.html
│ ├── netcdf-f77.info
│ ├── netcdf_f77-man.html
│ ├── netcdf-f77.pdf
│ ├── netcdf-f77.ps
│ ├── netcdf-f77.texi
│ ├── netcdf-f77.txt
│ ├── netcdf-f90.dvi
│ ├── netcdf-f90.html
│ ├── netcdf-f90.info
│ ├── netcdf_f90-man.html
│ ├── netcdf-f90.pdf
│ ├── netcdf-f90.ps
│ ├── netcdf-f90.texi
│ ├── netcdf-f90.txt
│ ├── netcdf.html
│ ├── netcdf.info
│ ├── netcdf-install.dvi
│ ├── netcdf-install.html
│ ├── netcdf-install.info
│ ├── netcdf-install.pdf
│ ├── netcdf-install.ps
│ ├── netcdf-install.texi
│ ├── netcdf-install.txt
│ ├── netcdf.m4
│ ├── netcdf-man-3.html
│ ├── netcdf.pdf
│ ├── netcdf.ps
│ ├── netcdf.texi
│ ├── netcdf-tutorial.dvi
│ ├── netcdf-tutorial.html
│ ├── netcdf-tutorial.info
│ ├── netcdf-tutorial.pdf
│ ├── netcdf-tutorial.ps
│ ├── netcdf-tutorial.texi
│ ├── netcdf-tutorial.txt
│ ├── netcdf.txt
│ ├── 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_xy.cdl
│ ├── 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.texi
│ └── version-tutorial.texi
├── man4
│ ├── defines.texi
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── mdate-sh
│ ├── ncdump-man-1.html
│ ├── ncgen-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-cxx4.dvi
│ ├── netcdf-cxx4.html
│ ├── netcdf-cxx4.info
│ ├── netcdf-cxx4.pdf
│ ├── netcdf-cxx4.ps
│ ├── netcdf-cxx4.texi
│ ├── netcdf-cxx4.txt
│ ├── netcdf-cxx.dvi
│ ├── netcdf-cxx.html
│ ├── netcdf-cxx.info
│ ├── netcdf-cxx.pdf
│ ├── netcdf-cxx.ps
│ ├── netcdf-cxx.texi
│ ├── netcdf-cxx.txt
│ ├── netcdf.dvi
│ ├── netcdf-f77.dvi
│ ├── netcdf-f77.html
│ ├── netcdf-f77.info
│ ├── netcdf-f77.info-1
│ ├── netcdf-f77.info-2
│ ├── netcdf_f77-man.html
│ ├── netcdf-f77.pdf
│ ├── netcdf-f77.ps
│ ├── netcdf-f77.texi
│ ├── netcdf-f77.txt
│ ├── netcdf-f90.dvi
│ ├── netcdf-f90.html
│ ├── netcdf-f90.info
│ ├── netcdf_f90-man.html
│ ├── netcdf-f90.pdf
│ ├── netcdf-f90.ps
│ ├── netcdf-f90.texi
│ ├── netcdf-f90.txt
│ ├── netcdf.html
│ ├── netcdf.info
│ ├── netcdf-install.dvi
│ ├── netcdf-install.html
│ ├── netcdf-install.info
│ ├── netcdf-install.pdf
│ ├── netcdf-install.ps
│ ├── netcdf-install.texi
│ ├── netcdf-install.txt
│ ├── netcdf.m4
│ ├── netcdf-man-3.html
│ ├── netcdf.pdf
│ ├── netcdf.ps
│ ├── netcdf.texi
│ ├── netcdf-tutorial.dvi
│ ├── netcdf-tutorial.html
│ ├── netcdf-tutorial.info
│ ├── netcdf-tutorial.pdf
│ ├── netcdf-tutorial.ps
│ ├── netcdf-tutorial.texi
│ ├── netcdf-tutorial.txt
│ ├── netcdf.txt
│ ├── 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_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-7
│ ├── stamp-vti
│ ├── texinfo.tex
│ ├── version-c.texi
│ ├── version-cxx4.texi
│ ├── version-cxx.texi
│ ├── version-f77.texi
│ ├── version-f90.texi
│ ├── version-install.texi
│ ├── version.texi
│ └── version-tutorial.texi
├── missing
├── ncdap.m4
├── ncdump
│ ├── ctest64.c
│ ├── ctest.c
│ ├── dumplib.c
│ ├── dumplib.h
│ ├── indent.c
│ ├── indent.h
│ ├── isnan.h
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── ncdump.1
│ ├── ncdump.c
│ ├── ncdump.h
│ ├── ref1.ncml
│ ├── ref_ctest1_nc4c.cdl
│ ├── ref_ctest1_nc4.cdl
│ ├── ref_tst_comp.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_string_data.cdl
│ ├── ref_tst_unicode.cdl
│ ├── ref_tst_utf8.cdl
│ ├── ref_tst_vlen_data.cdl
│ ├── rewrite-scalar.c
│ ├── run_tests.sh
│ ├── run_utf8_tests.sh
│ ├── small2.cdl
│ ├── small.cdl
│ ├── test0.cdl
│ ├── tst_64bit.sh
│ ├── tst_comp.c
│ ├── tst_create_files.c
│ ├── tst_enum_data.c
│ ├── tst_group_data.c
│ ├── tst_h_rdc0.c
│ ├── tst_lengths.sh
│ ├── tst_nans.c
│ ├── tst_ncml.cdl
│ ├── tst_netcdf4_4.sh
│ ├── tst_netcdf4.sh
│ ├── tst_opaque_data.c
│ ├── tst_output.sh
│ ├── tst_string_data.c
│ ├── tst_unicode.c
│ ├── tst_utf8.c
│ ├── tst_vlen_data.c
│ ├── vardata.c
│ └── vardata.h
├── ncgen
│ ├── c0.cdl
│ ├── escapes.c
│ ├── generic.h
│ ├── genlib.c
│ ├── genlib.h
│ ├── getfill.c
│ ├── init.c
│ ├── load.c
│ ├── main.c
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── ncgen.1
│ ├── ncgen.h
│ ├── ncgen.l
│ ├── ncgentab.c
│ ├── ncgentab.h
│ ├── ncgenyy.c
│ ├── run_nc4_tests.sh
│ └── run_tests.sh
├── nc_test
│ ├── error.c
│ ├── error.h
│ ├── large_files.c
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── nc_test.c
│ ├── nc_tests.h
│ ├── quick_large_files.c
│ ├── test_get.c
│ ├── test_get.m4
│ ├── test_put.c
│ ├── test_put.m4
│ ├── test_read.c
│ ├── tests.h
│ ├── test_write.c
│ ├── tst_big_var.c
│ ├── tst_large.c
│ ├── tst_misc.c
│ ├── tst_names.c
│ ├── tst_norm.c
│ ├── tst_small.c
│ └── util.c
├── nctest
│ ├── add.c
│ ├── add.h
│ ├── atttests.c
│ ├── cdftests.c
│ ├── compare_test_files.sh
│ ├── dimtests.c
│ ├── driver.c
│ ├── emalloc.c
│ ├── emalloc.h
│ ├── error.c
│ ├── error.h
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── misctest.c
│ ├── README
│ ├── rec.c
│ ├── ref_nctest_64bit_offset.nc
│ ├── ref_nctest_classic.nc
│ ├── slabs.c
│ ├── testcdf.h
│ ├── tests.h
│ ├── val.c
│ ├── val.h
│ ├── vardef.c
│ ├── varget.c
│ ├── vargetg.c
│ ├── varput.c
│ ├── varputg.c
│ ├── vartests.c
│ ├── vputget.c
│ └── vputgetg.c
├── nc_test4
│ ├── bm_file.c
│ ├── cdm_sea_soundings.c
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── tests.h
│ ├── tst_create_files.c
│ ├── tst_large.c
│ ├── tst_parallel3.c
│ └── tst_parallel.c
├── nf_test
│ ├── create_fills.sh
│ ├── f90tst_vars.f90
│ ├── fills.cdl
│ ├── fortlib.c
│ ├── ftest.F
│ ├── ftst_groups.F
│ ├── ftst_types2.F
│ ├── ftst_types.F
│ ├── ftst_vars2.F
│ ├── ftst_vars3.F
│ ├── ftst_vars4.F
│ ├── ftst_vars5.F
│ ├── ftst_vars.F
│ ├── handle_err.f
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── nf_error.F
│ ├── nf_test.F
│ ├── test_get.F
│ ├── test_get.m4
│ ├── test_put.F
│ ├── test_put.m4
│ ├── test_read.F
│ ├── tests.inc
│ ├── test_write.F
│ ├── tst_f77_v2.F
│ ├── tst_f90.f90
│ ├── tst_flarge.f90
│ ├── tst_io.f90
│ ├── tst_types.f90
│ └── util.F
├── README
├── RELEASE_NOTES
└── win32
├── Makefile.am
├── Makefile.in
└── NET
├── config.h
├── examples
│ ├── app.ico
│ ├── app.rc
│ ├── AssemblyInfo.cpp
│ ├── Form1.cpp
│ ├── Form1.h
│ ├── Form1.resX
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── stdafx.cpp
│ ├── stdafx.h
│ └── tst_netcdf.vcproj
├── getopt.c
├── libsrc
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── netcdf.cpp
│ ├── netcdf.vcproj
│ ├── nfconfig.inc
│ ├── stdafx.cpp
│ └── stdafx.h
├── Makefile.am
├── Makefile.in
├── ncdump
│ ├── Makefile.am
│ ├── Makefile.in
│ └── ncdump.vcproj
├── ncgen
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── ncgen.cpp
│ ├── ncgen.vcproj
│ └── run_tests.bat
├── nc_test
│ ├── large_files.vcproj
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── nc_test.vcproj
│ ├── quick_large_files.vcproj
│ └── run_tests.bat
├── nctest
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── nctest.vcproj
│ └── run_tests.bat
└── netcdf.sln
30 directories, 687 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论