I noticed that in netCDF4 1.2.0 the variable.mask is True but the values are not masked.
print nc.variables['oswLon'][:]
array([[ 9.96920997e+36]], dtype=float32)
<type 'netCDF4._netCDF4.Variable'>
float32 oswLon(oswAzSize, oswRaSize)
units: degree (decimal)
long_name: longitude
unlimited dimensions:
current shape = (1, 1)
filling off
nc.variables['oswLon'][0,0]==netCDF4.default_fillvals['f4']
True
nc.variables['oswLon'].mask
True