There seems to be a problem with the monthly 9km POC data after May 2014, has anyone else noticed this? File sizes become much smaller and seem corrupted?
https://oceandata.sci.gsfc.nasa.gov/MODIS-Aqua/Mapped/Monthly/9km/poc/
MODIS-Aqua POC data June 2014 onwards
-
- Posts: 1
- Joined: Tue Aug 22, 2017 10:44 am America/New_York
-
- Subject Matter Expert
- Posts: 269
- Joined: Thu Mar 05, 2009 10:25 am America/New_York
- Been thanked: 2 times
MODIS-Aqua POC data June 2014 onwards
The SMI files after May 2014 are produced by l3mapgen instead of smigen. The new files are smaller since the poc data is stored as a scaled 16 bit int instead of a 32 bit float. As you noticed, the file size is almost 3 times smaller. From the NetCDF metadata:
short poc(lat, lon) ;
poc:scale_factor = 0.2f ;
poc:add_offset = 6400.f ;
poc:_FillValue = -32767s ;
so:
pocVal(float) = poc(short) * scale_factor + add_offset
The files look fine. Can you point me to a file that seems corrupt?
don
short poc(lat, lon) ;
poc:scale_factor = 0.2f ;
poc:add_offset = 6400.f ;
poc:_FillValue = -32767s ;
so:
pocVal(float) = poc(short) * scale_factor + add_offset
The files look fine. Can you point me to a file that seems corrupt?
don