-
netCDF
NetCDF
- started in 1989
- most used in geoscience community
- array-oriented
- self-describing
header
, describe:
- the layout of rest of the file
- arbitrary file metadata in the form of name/value attributes
- machine-independent
- endianness being addressed in the libraries
netCDF classic model
![classic model](https://www.unidata.ucar.edu/software/netcdf/docs/nc-classic-uml.png "Classic Model")
- classic format(default)
- variables
- types (char, byte, short, int, float, double)
- dimensions
- attributes
- 64-bit offset format
- support large variables and sizes
- netCDF4/HDF5 format
- HDF5 data format, with some restrictions
netCDF file parts
![file parts](https://www.unidata.ucar.edu/software/netcdf/workshops/2012/performance/images/c-classic-fmt.png "File Parts")
- The header, containing information about dimensions, attributes, variables, and all attribute values.
- The fixed-size data, containing data values for variables that don't have an unlimited dimension (if there are any)
- The record data, containing data values for variables that have an unlimited dimension (if there are any)
This format has some characteristics important for performance:
- no extra space in the header (by default) or fixed-size data part
- little storage overhead
- a file can grow efficiently only by appending records to the end, growing all record variables together
-
相关阅读:
IIs6基础上发布WebApi注意事项
VS2010下开发WebApi 基本步骤
C# 两个datatable中的数据快速比较返回交集或差集
myeclipse快捷键使用
Java中时间
数组排序后插入
所有的jsp页面都放到WEB-INF目录
jsp内置对象浅谈
JSP九大内置对象的作用和用法总结?
JSP九大内置对象及四个作用域
-
原文地址:https://www.cnblogs.com/nn0p/p/4384241.html
Copyright © 2020-2023
润新知