实例介绍
netcdf的Fortran链接库,使Fortran编程时可以直接调用netcdf动态库
【实例截图】
【核心代码】
16359647574445229638.zip
└── netcdf-fortran-4.4.4
├── acinclude.m4
├── aclocal.m4
├── CMakeExtras
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── sizeof_ptrdiff_t.c
│ └── test_c_ptrdiff_t.f90
├── CMakeLists.txt
├── compile
├── config.guess
├── config.h.cmake.in
├── config.h.in
├── config.sub
├── configure
├── configure.ac
├── COPYRIGHT
├── CTestConfig.cmake.in
├── depcomp
├── docs
│ ├── cfortran.doc
│ ├── CMakeLists.txt
│ ├── Doxyfile.in
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── netcdf-50x50.png
│ ├── netcdf_fortran.3
│ ├── netcdf.m4
│ └── texinfo.tex
├── examples
│ ├── CMakeLists.txt
│ ├── F77
│ │ ├── CMakeLists.txt
│ │ ├── 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
│ │ ├── CMakeLists.txt
│ │ ├── 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_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_wr2.f90
│ │ ├── simple_xy_par_wr.f90
│ │ ├── simple_xy_rd.f90
│ │ └── simple_xy_wr.f90
│ ├── Makefile.am
│ └── Makefile.in
├── F03Interfaces_LICENSE
├── fortran
│ ├── CMakeLists.txt
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── module_netcdf4_f03.f90
│ ├── module_netcdf4_nc_interfaces.f90
│ ├── module_netcdf4_nf_interfaces.F90
│ ├── module_netcdf_f03.f90
│ ├── module_netcdf_fortv2_c_interfaces.f90
│ ├── module_netcdf_nc_data.F90
│ ├── module_netcdf_nc_interfaces.f90
│ ├── module_netcdf_nf_data.F90
│ ├── module_netcdf_nf_interfaces.F90
│ ├── netcdf2.inc
│ ├── netcdf3_file.f90
│ ├── netcdf3.inc
│ ├── netcdf4_eightbyte.f90
│ ├── netcdf4_externals.f90
│ ├── netcdf4.f90
│ ├── netcdf4_file.f90
│ ├── netcdf4_func.f90
│ ├── netcdf4.inc
│ ├── netcdf4_overloads.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
│ ├── netcdf_file.f90
│ ├── netcdf.inc
│ ├── netcdf_overloads.f90
│ ├── netcdf_text_variables.f90
│ ├── netcdf_variables.f90
│ ├── netcdf_visibility.f90
│ ├── nf_attio.F90
│ ├── nf_control.F90
│ ├── nf_dim.f90
│ ├── nf_fortv2.f90
│ ├── nf_genatt.f90
│ ├── nf_geninq.f90
│ ├── nf_genvar.f90
│ ├── nf_lib.c
│ ├── nf_logging.F90
│ ├── nf_misc.f90
│ ├── nf_nc4.f90
│ ├── nf_v2compat.c
│ ├── nf_var1io.F90
│ ├── nf_varaio.F90
│ ├── nf_vario.F90
│ ├── nf_varmio.F90
│ ├── nf_varsio.F90
│ └── typeSizes.f90
├── install-sh
├── libsrc
│ ├── cfortran.h
│ ├── CMakeLists.txt
│ ├── 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
│ ├── netcdf_f77.3
│ ├── netcdf_f.h
│ ├── nfconfig.in
│ ├── nfconfig.inc
│ └── nfconfig.in.cmake
├── ltmain.sh
├── m4
│ ├── libtool.m4
│ ├── lt~obsolete.m4
│ ├── ltoptions.m4
│ ├── ltsugar.m4
│ └── ltversion.m4
├── Makefile.am
├── Makefile.in
├── missing
├── netcdf-fortran.pc.in
├── nf03_test
│ ├── CMakeLists.txt
│ ├── create_fills.sh
│ ├── f03lib.c
│ ├── f03lib_f_interfaces.f90
│ ├── f03test.F
│ ├── f03tst_groups.F
│ ├── f03tst_open_mem.F
│ ├── f03tst_parallel.F
│ ├── f03tst_types2.F
│ ├── f03tst_types3.F
│ ├── f03tst_types.F
│ ├── f03tst_v2.F
│ ├── f03tst_vars2.F
│ ├── f03tst_vars3.F
│ ├── f03tst_vars4.F
│ ├── f03tst_vars5.F
│ ├── f03tst_vars6.F
│ ├── f03tst_vars.F
│ ├── fills.cdl
│ ├── handle_err.F
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── module_tests.F90
│ ├── nf03_error.F
│ ├── nf03_test.F
│ ├── run_f77_par_test.sh
│ ├── test03_get.F
│ ├── test03_put.F
│ ├── test03_read.F
│ ├── test03_write.F
│ ├── tst03_f77_v2.F
│ └── util03.F
├── nf-config.cmake.in
├── nf-config.in
├── nf_test
│ ├── CMakeLists.txt
│ ├── create_fills.sh
│ ├── f03lib.c
│ ├── f03lib_f_interfaces.f90
│ ├── f90tst_fill2.f90
│ ├── f90tst_fill.f90
│ ├── f90tst_grps.f90
│ ├── f90tst_nc4_par.f90
│ ├── f90tst_parallel2.f90
│ ├── f90tst_parallel3.f90
│ ├── f90tst_parallel.f90
│ ├── f90tst_path.f90
│ ├── f90tst_rengrps.f90
│ ├── f90tst_vars2.f90
│ ├── f90tst_vars3.f90
│ ├── f90tst_vars4.f90
│ ├── f90tst_vars.f90
│ ├── f90tst_vars_vlen.f90
│ ├── fills.cdl
│ ├── fortlib.c
│ ├── ftest.F
│ ├── ftst_groups.F
│ ├── ftst_parallel.F
│ ├── ftst_parallel_nasa.F
│ ├── ftst_path.F
│ ├── ftst_rengrps.F
│ ├── ftst_types2.F
│ ├── ftst_types3.F
│ ├── ftst_types.F
│ ├── ftst_v2.F
│ ├── ftst_vars2.F
│ ├── ftst_vars3.F
│ ├── ftst_vars4.F
│ ├── ftst_vars5.F
│ ├── ftst_vars6.F
│ ├── ftst_vars.F
│ ├── handle_err.F
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── nf_error.F
│ ├── nf_test.F
│ ├── ref_fills.nc
│ ├── 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
│ ├── tests.inc
│ ├── test_write.F
│ ├── tst_f77_v2.F
│ ├── tst_f90.f90
│ ├── tst_f90_nc4.f90
│ ├── tst_flarge.f90
│ ├── tst_io.f90
│ ├── tst_types2.f90
│ ├── tst_types.f90
│ └── util.F
├── README.md
├── RELEASE_NOTES.md
└── test-driver
11 directories, 250 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论