You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
geotiff2netcdf.py produces netCDFs that are not CF compliant. The problem is the type of several attributes of the projection variable lambert_azimuthal_equal_area:
------------------
Checking variable: lambert_azimuthal_equal_area
------------------
ERROR: (5.6): Attribute longitude_of_projection_origin of incorrect data type (Appendix F)
ERROR: (5.6): Attribute semi_major_axis of incorrect data type (Appendix F)
ERROR: (5.6): Attribute false_northing of incorrect data type (Appendix F)
ERROR: (5.6): Attribute false_easting of incorrect data type (Appendix F)
ERROR: (5.6): Attribute latitude_of_projection_origin of incorrect data type (Appendix F)
ERROR: (5.6): Attribute semi_minor_axis of incorrect data type (Appendix F)
The type needs to be of a numerical type not string. See very bottom of this webpage for reference
The text was updated successfully, but these errors were encountered:
geotiff2netcdf.py
produces netCDFs that are not CF compliant. The problem is the type of several attributes of the projection variablelambert_azimuthal_equal_area
:The type needs to be of a numerical type not string. See very bottom of this webpage for reference
The text was updated successfully, but these errors were encountered: