[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Convention attribute wrong in netcdf sst file



Hi John,

I almost finish the new NetCDF files.
Can you please have a look at head.txt before I send them to our ftp server.
I can send you one NetCDF file if you need.

Thank you!

Chunying


John Caron said the following on 2/9/2009 12:39 PM:
Hi Richard, Chunying:

Ken Richards at environcorp is trying to read the netcdf files at
ftp://eclipse.ncdc.noaa.gov/pub/OI-daily-v2/NetCDF/2004/AVHRR-AMSR

and having trouble. in looking at the file global attributes:

 :title = "Daily-OI-V2, final, Data (Ship, Buoy, AMSR-E, AVHRR, GSFC-ice)";
 :History = "Version 1.0";
 :creation_date = "2008-10-16";
 :Description = "Reynolds, et al.(2007) Daily High-resolution Blended Analyses. 
Available at
ftp://eclipse.ncdc.noaa.gov/pub/OI-daily/daily-sst.pdf  Climatology is based on 
1971-2000 OI.v2 SST,
Satellite data: AMSR Navy NOAA17 NOAA18 AVHRR, Ice data: GSFC ice";
 :Source = "NOAA/National Climatic Data Center";
 :Contact = "Dick Reynolds, email: address@hidden & Chunying Liu, email:
address@hidden";
 :netcdf_Convention = "COARDS";

The problem is that

 :netcdf_Convention = "COARDS";

should be

 :Conventions = "COARDS";

is it possible for you to change this? thanks.


----------------

Full Name: Ken Richmond
Email Address: address@hidden
Organization: ENVIRON

Description of problem: I'm unable to load any of the SST netcdfs from NOAA at
ftp://eclipse.ncdc.noaa.gov/pub/OI-daily-v2/NetCDF/2004/AVHRR-AMSR


--
Chunying Liu
National Climatic Data Center, RM 514
NOAA NESDIS (STG, Inc.) phone: 828-350-2409
151 Patton Ave.                             fax: 828-271-4328
Asheville, NC 28801              email: address@hidden
http://www.ncdc.noaa.gov/oa/climate/research/sst/oi-daily.php
netcdf avhrr-only-v2.20090212 {
dimensions:
        time = 1 ;
        zlev = 1 ;
        lat = 720 ;
        lon = 1440 ;
variables:
        float time(time) ;
                time:long_name = "Center time of the day" ;
                time:units = "days since 1978-01-01 00:00:00" ;
        float zlev(zlev) ;
                zlev:long_name = "Sea surface height" ;
                zlev:units = "meters" ;
                zlev:actual_range = "0, 0" ;
        float lat(lat) ;
                lat:long_name = "Latitude" ;
                lat:units = "degrees_north" ;
                lat:grids = "Uniform grid from -89.875 to 89.875 by 0.25" ;
        float lon(lon) ;
                lon:long_name = "Longitude" ;
                lon:units = "degrees_east" ;
                lon:grids = "Uniform grid from 0.125 to 359.875 by 0.25" ;
        short sst(time, zlev, lat, lon) ;
                sst:long_name = "Daily sea surface temperature" ;
                sst:units = "degrees C" ;
                sst:_FillValue = -999s ;
                sst:add_offset = 0.f ;
                sst:scale_factor = 0.01f ;
                sst:valid_min = -300s ;
                sst:valid_max = 4500s ;
        short anom(time, zlev, lat, lon) ;
                anom:long_name = "Daily sea surface temperature anomalies" ;
                anom:units = "degrees C" ;
                anom:_FillValue = -999s ;
                anom:add_offset = 0.f ;
                anom:scale_factor = 0.01f ;
                anom:valid_min = -1200s ;
                anom:valid_max = 1200s ;
        short err(time, zlev, lat, lon) ;
                err:long_name = "Estimated error standard deviation of 
analysed_sst" ;
                err:units = "degrees C" ;
                err:_FillValue = -999s ;
                err:add_offset = 0.f ;
                err:scale_factor = 0.01f ;
                err:valid_min = 0s ;
                err:valid_max = 1000s ;
        short ice(time, zlev, lat, lon) ;
                ice:long_name = "Sea ice concentration" ;
                ice:units = "percentage" ;
                ice:_FillValue = -999s ;
                ice:add_offset = 0.f ;
                ice:scale_factor = 0.01f ;
                ice:valid_min = 0s ;
                ice:valid_max = 100s ;

// global attributes:
                :Conventions = "CF-1.0" ;
                :title = "Daily-OI-V2, Final, Data (Ship, Buoy, AVHRR: 
NOAA17&18, NCEP-ice)" ;
                :History = "Version 1.0" ;
                :creation_date = "2009-02-26" ;
                :Description = "Reynolds, et al.(2007) Daily High-resolution 
Blended Analyses. Available at 
ftp://eclipse.ncdc.noaa.gov/pub/OI-daily/daily-sst.pdf  Climatology is based on 
1971-2000 OI.v2 SST, Satellite data: Navy NOAA17 NOAA18 AVHRR, Ice data: NCEP 
ice" ;
                :Source = "NOAA/National Climatic Data Center" ;
                :Contact = "Dick Reynolds, email: address@hidden & Chunying 
Liu, email: address@hidden" ;
}