Custom Query (124 matches)
Results (34 - 36 of 124)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#39 | fixed | Error in check of units attribute for coordinate variables | cf-checker@… | ros |
Description |
3.1 of the convention states that "The units attribute is required for all variables that represent dimensional quantities." Yet a Netcdf file like the following does not generate errors indicating that the units attribute is missing for any of the coordinate variables. dimensions: longitude = 144 ; latitude = 91 ; press = 10 ; species = 6 ; rec = UNLIMITED ; // (12 currently) word = 13 ; variables: float concentrations(rec, species, press, latitude, longitude) ; concentrations:long_name = "CFC concentrations" ; concentrations:Units = "pptv" ; float longitude(longitude) ; float latitude(latitude) ; float press(press) ; float species(species) ; species:long_name = "species" ; species:coord_labels = "species" ; species:selection_category = "NULL" ; float rec(rec) ; rec:long_name = "month" ; rec:coord_labels = "month" ; rec:selection_category = "NULL" ; char const_labels(species, word) ; const_labels:selection_category = "NULL" ; char month(rec, word) ; month:selection_category = "NULL" ; } |
|||
#40 | fixed | CF Checker falls over when standard_name attribute is the empty string. | cf-checker@… | ros |
Description |
The CF checker was falling over in the event of a standard_name attribute which was an empty string, as it did "string.split(.....)[0]" on the attribute value. |
|||
#41 | fixed | Upgrade CF checker to CF-1.3 | ros | ros |
Description |
CF-1.3 additional requirements include:
Section 3.5 Flags
Recommendations:
|