Previous: Overview Next: Using Less Space for Data Table of contents Frames User guide
2007 Unidata NetCDF Workshop for Developers and Data Providers > Performance

7.1 NetCDF-3 File Format
Understanding the netCDF format can make clear why some netCDF operations are more expensive than others

A netCDF classic or 64-bit offset file is stored in three parts:

  1. The header, containing information about dimensions, attributes, and variables
  2. The fixed-size data, containing data values for variables that don't have an unlimited dimension
  3. The record data, containing data values for variables that have an unlimited dimension

By default, the header has almost no extra space; it is just large enough to contain the dimensions, variables, and attributes (including all the attribute values) rounded up to a whole number of disk blocks.

To avoid copying data when the file schema changes

 


Previous: Overview Next: Using Less Space for Data Table of contents Frames User guide
2007 Unidata NetCDF Workshop for Developers and Data Providers > Performance