-
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
-
相关阅读:
【Web自动化测试——代码篇五】常用方法——鼠标键盘事件
【Web自动化测试——代码篇四】常用方法——常见元素操作
【Web自动化测试——代码篇三】常用方法——控制浏览器
【Web自动化测试——代码篇二】条条大路找元素
【Web自动化测试——代码篇一】简单的Web自动化脚本
ON DUPLICATE KEY UPDATE 当记录不存在时插入,当记录存在时更新
Replace INTO与INSERT INTO的不同之处
JS 实现 Tab标签切换功能
SQL LEFT JOIN 关键字
php面向对象_get(),_set()的用法
-
原文地址:https://www.cnblogs.com/nn0p/p/4384241.html
Copyright © 2020-2023
润新知