long_name
for a human-readable descriptive name used
for labeling plots, for example:
T:long_name = "surface temperature"; // Use this T:plot_label = "surface temperature"; // not this!
units
attribute, use syntax of
the udunits
package, when possible. For example:
T:units = "celsius" ; // Use this T:units = "degreesC" ; // not this concentration:units = "1.0e-6" ; // Use this concentration:units = "ppm" ; // not this
standard_name
attribute from the
CF standard names
list, if applicable, to identify the physical quantity that a
variable represents.
float can_tmp(time, lat, lon) ; can_tmp:standard_name = "canopy_temperature" ; // This float canopy_temperature(time, lat, lon) ; // not just this