metar-parser
metar-parser copied to clipboard
✈️ Parse METAR information into structured JavaScript object
Results
2
metar-parser issues
Sort by
recently updated
recently updated
newest added
example: EDDF 221420Z AUTO 20013KT 160V230 CAVOK 33/17 Q1011 TEMPO SHRA output: ``` { raw_text: 'EDDF 221420Z AUTO 20013KT 160V230 CAVOK 33/17 Q1011 TEMPO SHRA', raw_parts: [ 'EDDF', '221420Z', 'AUTO',...
Currently there are four types of clouds being considered in the code: `export type MetarCloudCode = "FEW" | "SCT" | "BKN" | "OVC"` However, as per [Weather.gov](https://www.weather.gov/media/wrh/mesowest/metar_decode_key.pdf), a fifth type...