cisdm_dbo_imma1.json 4.82 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
{
    "header": {
        "format": "fixed_width",
        "delimiter": ","
    },
    "elements": {
        "Identifier": {
            "description": "WMO Buoy number",
            "field_length": 5,
            "column_type": "object"
        },
        "Odate": {
            "description": "Observation date",
            "field_length": 8,
            "column_type": "str"
        },
        "Otime": {
            "description": "Observation time",
            "field_length": 4,
            "column_type": "str"
        },
        "Lat": {
            "description": "Latitude (positive North)",
            "field_length": 9,
            "column_type": "float16",
            "valid_max": 90.0,
            "valid_min": -90.0,
            "decimal_places": 4,
            "units": "degrees"
        },
        "Lon": {
            "description": "Longitude (positive West)",
            "field_length": 9,
            "column_type": "float16",
            "valid_max": 180.0,
            "valid_min": -180.0,
            "decimal_places": 4,
            "units": "degrees"
        },
        "QC_POS": {
            "description": "Quality control flag for position",
            "field_length": 1,
            "column_type": "key",
            "missing_value":"P",
            "codetable": "qc_flags"
        },
        "PDT": {
            "description": "Position date",
            "field_length": 8,
            "column_type": "str"
        },
        "PTM": {
            "description": "Position time",
            "field_length": 4,
            "column_type": "str"
        },
        "Drogue": {
            "description": "Drogue depth",
            "field_length": 7,
            "column_type": "float16",
            "valid_max": 99999.0,
            "valid_min": 0.0,
            "decimal_places": 1,
            "units": "metre"
        },
        "SST": {
            "description": "Sea surface temperature",
            "field_length": 7,
            "column_type": "float16",
            "valid_max": 99.99,
            "valid_min": -99.99,
            "decimal_places": 2,
            "units": "degree Celsius"
        },
        "QC_SST": {
            "description": "Quality control flag for SST",
            "field_length": 1,
            "column_type": "key",
            "missing_value":"P",
            "codetable": "qc_flags"
        },
        "Airtemp": {
            "description": "Air temperature",
            "field_length": 7,
            "column_type": "float16",
            "valid_max": 99.99,
            "valid_min": -99.99,
            "decimal_places": 2,
            "units": "degree Celsius"
        },
        "QC_AirT": {
            "description": "Quality control flag for Air temp",
            "field_length": 1,
            "column_type": "key",
            "missing_value":"P",
            "codetable": "qc_flags"
        },
        "Pressure": {
            "description": "Air Pressure at sea level",
            "field_length": 7,
            "column_type": "float32",
            "valid_max": 1074.6,
            "valid_min": 870.0,
            "decimal_places": 2,
            "units": "hectopascal"
        },
        "QC_Pr": {
            "description": "Quality control flag for pressure",
            "field_length": 1,
            "column_type": "key",
            "missing_value":"P",
            "codetable": "qc_flags"
        },
        "WSp": {
            "description": "Wind speed",
            "field_length": 7,
            "column_type": "float16",
            "valid_max": 99.99,
            "valid_min": 0.0,
            "decimal_places": 2,
            "units": "metres per second"

        },
        "QC_Wsp": {
            "description": "Quality control flag for Wind Speed",
            "field_length": 1,
            "column_type": "key",
            "missing_value":"P",
            "codetable": "qc_flags"
        },
        "WDir": {
            "description": "Wind direction relative to true North",
            "field_length": 7,
            "column_type": "float16",
            "valid_max": 360.0,
            "valid_min": 0.0,
            "decimal_places": 2,
            "units": "degrees true"
        },
        "QC_WD": {
            "description": "Quality control flag for Wind direction",
            "field_length": 1,
            "column_type": "key",
            "missing_value":"P",
            "codetable": "qc_flags"
        },
        "RelHum": {
            "description": "Relative humidity (%)",
            "field_length": 7,
            "column_type": "float16",
            "valid_max": 100.0,
            "valid_min": 0.0,
            "decimal_places": 2
        },
        "QC_RH": {
            "description": "Quality control flag for relative humidity",
            "field_length": 1,
            "column_type": "key",
            "missing_value":"P",
            "codetable": "qc_flags"
        }
    }
}