By default the netCDF4 python library will pack values when saving if you specify add_offset and scale_factor attributes as per:
Iris unpacks just fine but I can't figure out any way to set scale_factor and add_offset when saving. Trying to add them as cube attributes gives an error, as they are treated as reserved/forbidden and iris.fileformats.netcdf.save doesn't seem to have any keyword arguments with support for this.
iris.fileformats.netcdf.saver does have a method called update_global_attributes, but that doesn't seem to do what I want either.
Am I missing something obvious?