avwx.static.airsigmet
AIRMET / SIGMET static vales.
1"""AIRMET / SIGMET static vales.""" 2 3AIRMET_KEY = "airmet" 4 5BULLETIN_TYPES = { 6 "WS": "sigmet", 7 "WV": "volcanic ash", 8 "WC": "tropical cyclone", 9 "WA": AIRMET_KEY, 10} 11 12INTENSITY = { 13 "NC": "No change", 14 "INTSF": "Intensifying", 15 "WKN": "Weakening", 16} 17 18# More to less specific when overlapping 19WEATHER_TYPES = { 20 "DMSHG LINE TS": "Diminishing line of thunderstorms", 21 "AREA TS": "Thunderstorms in the area", 22 "LINE TS": "Line of thunderstorms", 23 "OBSC TS": "Obscured thunderstorms", 24 "EMBD TS": "Embedded thunderstorms", 25 "FRQ TS": "Frequent thunderstorms", 26 "SQL TS": "Squall line thunderstorms", 27 "OBSC TSGR": "Obscured thunderstorms with hail", 28 "EMBD TSGR": "Embedded thunderstorms with hail", 29 "FRQ TSGR": "Frequent thunderstorms with hail", 30 "SQL TSGR": "Squall line thunderstorms with hail", 31 "MOD TURB": "Moderate Turbulence", 32 "SEV TURB": "Severe turbulence", 33 "TURB": "Turbulence", 34 "MOD ICE (FZRA)": "Moderate icing due to freezing rain", 35 "SEV ICE (FZRA)": "Severe icing due to freezing rain", 36 "MOD ICE": "Moderate icing", 37 "SEV ICE": "Severe icing", 38 "SEV MTW": "Severe mountain wave", 39 "HVY DS": "Heavy duststorm", 40 "HVY SS": "Heavy sandstorm", 41 "RDOACT CLD": "Radioactive cloud", 42 "VA ERUPTION": "Volcanic eruption", 43 "VA CLD": "Volcanic cloud", 44 "MTNS OBSC": "Mountain Obscuration", 45 "MTNS OBSCN": "Mountain Obscuration", 46 "CB": "Cumulonimbus", 47}
AIRMET_KEY =
'airmet'
BULLETIN_TYPES =
{'WS': 'sigmet', 'WV': 'volcanic ash', 'WC': 'tropical cyclone', 'WA': 'airmet'}
INTENSITY =
{'NC': 'No change', 'INTSF': 'Intensifying', 'WKN': 'Weakening'}
WEATHER_TYPES =
{'DMSHG LINE TS': 'Diminishing line of thunderstorms', 'AREA TS': 'Thunderstorms in the area', 'LINE TS': 'Line of thunderstorms', 'OBSC TS': 'Obscured thunderstorms', 'EMBD TS': 'Embedded thunderstorms', 'FRQ TS': 'Frequent thunderstorms', 'SQL TS': 'Squall line thunderstorms', 'OBSC TSGR': 'Obscured thunderstorms with hail', 'EMBD TSGR': 'Embedded thunderstorms with hail', 'FRQ TSGR': 'Frequent thunderstorms with hail', 'SQL TSGR': 'Squall line thunderstorms with hail', 'MOD TURB': 'Moderate Turbulence', 'SEV TURB': 'Severe turbulence', 'TURB': 'Turbulence', 'MOD ICE (FZRA)': 'Moderate icing due to freezing rain', 'SEV ICE (FZRA)': 'Severe icing due to freezing rain', 'MOD ICE': 'Moderate icing', 'SEV ICE': 'Severe icing', 'SEV MTW': 'Severe mountain wave', 'HVY DS': 'Heavy duststorm', 'HVY SS': 'Heavy sandstorm', 'RDOACT CLD': 'Radioactive cloud', 'VA ERUPTION': 'Volcanic eruption', 'VA CLD': 'Volcanic cloud', 'MTNS OBSC': 'Mountain Obscuration', 'MTNS OBSCN': 'Mountain Obscuration', 'CB': 'Cumulonimbus'}