|
| 1 | +# This file controls the conversion from Zarr format to CF-compliant NetCDF files in weathergen.evaluate.zarr_nc.zarr_to_netcdf. |
| 2 | +# It defines the mapping of variable and dimension names, their standard names, units, and level types. |
| 3 | +variables: |
| 4 | + q: |
| 5 | + var: q |
| 6 | + long: specific_humidity_on_pressure_level |
| 7 | + std: specific_humidity |
| 8 | + wg_unit: kg kg**-1 |
| 9 | + std_unit: kg kg-1 |
| 10 | + level_type: pl |
| 11 | + t: |
| 12 | + var: t |
| 13 | + long: temperature_on_pressure_levels |
| 14 | + std: air_temperature |
| 15 | + wg_unit: K |
| 16 | + std_unit: K |
| 17 | + level_type: pl |
| 18 | + u: |
| 19 | + var: u |
| 20 | + long: u_wind_on_pressure_levels |
| 21 | + std: x_wind |
| 22 | + wg_unit: m s**-1 |
| 23 | + std_unit: m s-1 |
| 24 | + level_type: pl |
| 25 | + v: |
| 26 | + var: v |
| 27 | + long: v_wind_on_pressure_levels |
| 28 | + std: y_wind |
| 29 | + wg_unit: m s**-1 |
| 30 | + std_unit: m s-1 |
| 31 | + level_type: pl |
| 32 | + z: |
| 33 | + var: z |
| 34 | + long: geopotential_height_on_pressure_levels |
| 35 | + std: geopotential_height |
| 36 | + wg_unit: m**2 s**-2 |
| 37 | + std_unit: m |
| 38 | + level_type: pl |
| 39 | + 10u: |
| 40 | + var: u10 |
| 41 | + long: u_wind_at_10m |
| 42 | + std: x_wind |
| 43 | + wg_unit: m s**-1 |
| 44 | + std_unit: m s-1 |
| 45 | + level_type: sfc |
| 46 | + 10v: |
| 47 | + var: v10 |
| 48 | + long: v_wind_at_10m |
| 49 | + std: y_wind |
| 50 | + wg_unit: m s**-1 |
| 51 | + std_unit: m s-1 |
| 52 | + level_type: sfc |
| 53 | + 2d: |
| 54 | + var: d2m |
| 55 | + long: 2m_dewpoint_temperature |
| 56 | + std: dew_point_temperature |
| 57 | + wg_unit: K |
| 58 | + std_unit: K |
| 59 | + level_type: sfc |
| 60 | + 2t: |
| 61 | + var: t2m |
| 62 | + long: 2m_temperature |
| 63 | + std: air_temperature |
| 64 | + #near-surface (usually, 2 meter) : https://pcmdi.llnl.gov/mips/cmip3/variableList.html |
| 65 | + wg_unit: K |
| 66 | + std_unit: K |
| 67 | + level_type: sfc |
| 68 | + msl: |
| 69 | + var: msl |
| 70 | + long: mean_sea_level_pressure |
| 71 | + std: air_pressure_at_mean_sea_level |
| 72 | + wg_unit: Pa |
| 73 | + std_unit: Pa |
| 74 | + level_type: sfc |
| 75 | + skt: |
| 76 | + var: skt |
| 77 | + # The standard name for skin temperature is sea_surface_skin_temperature, which is defined as "The temperature of the very thin layer at the surface of the sea that is in contact with the atmosphere". |
| 78 | + # It is strongly recommended that a variable with this standard name should have a units_metadata attribute, with one of the values "on-scale" or "difference", whichever is appropriate for the data, because it is essential to know whether the temperature is on-scale (meaning relative to the origin of the scale indicated by the units) or refers to temperature differences (implying that the origin of the temperature scale is irrevelant) |
| 79 | + long: skin_temperature |
| 80 | + std: sea_surface_skin_temperature |
| 81 | + wg_unit: K |
| 82 | + std_unit: K |
| 83 | + level_type: sfc |
| 84 | + sp: |
| 85 | + var: sp |
| 86 | + long: surface_pressure |
| 87 | + std: surface_air_pressure |
| 88 | + wg_unit: Pa |
| 89 | + std_unit: Pa |
| 90 | + level_type: sfc |
| 91 | + |
| 92 | + |
| 93 | +coordinates: |
| 94 | + sfc: |
| 95 | + valid_time: valid_time |
| 96 | + lat: latitude |
| 97 | + lon: longitude |
| 98 | + stream: stream |
| 99 | + forecast_step: forecast_period |
| 100 | + forecast_ref_time: forecast_ref_time |
| 101 | + pl: |
| 102 | + pressure_level: pressure |
| 103 | + valid_time: valid_time |
| 104 | + lat: latitude |
| 105 | + lon: longitude |
| 106 | + stream: stream |
| 107 | + forecast_step: forecast_period |
| 108 | + forecast_ref_time: forecast_ref_time |
| 109 | +dimensions: |
| 110 | + valid_time: |
| 111 | + wg: valid_time |
| 112 | + std: time |
| 113 | + lat: |
| 114 | + wg: latitude |
| 115 | + std: latitude |
| 116 | + std_unit: degrees_north |
| 117 | + lon: |
| 118 | + wg: longitude |
| 119 | + std: longitude |
| 120 | + std_unit: degrees_east |
| 121 | + pressure_level: |
| 122 | + wg: pressure |
| 123 | + std: air_pressure |
| 124 | + std_unit: hPa |
| 125 | + forecast_ref_time: |
| 126 | + wg: forecast_ref_time |
| 127 | + std: forecast_ref_time |
| 128 | + forecast_step: |
| 129 | + wg: forecast_period |
| 130 | + std: forecast_period |
| 131 | + stream: |
| 132 | + wg: stream |
| 133 | + std: stream |
| 134 | + #TODO maybe absorb stream as an attribute |
| 135 | + # forecast_step: forecast_step |
| 136 | + # don't want forecast_step anyway |
| 137 | + |
0 commit comments