Exemplo n.º 1
0
def parse_in(report: str) -> (MetarData, Units):
    """
    Parser for the International METAR variant
    """
    units = Units(**IN_UNITS)
    wxresp = {"raw": report}
    clean = _core.sanitize_report_string(report)
    wxdata, wxresp["remarks"] = _core.get_remarks(clean)
    wxdata = _core.dedupe(wxdata)
    wxdata = _core.sanitize_report_list(wxdata)
    wxresp["sanitized"] = " ".join(wxdata + [wxresp["remarks"]])
    wxdata, wxresp["station"], wxresp["time"] = _core.get_station_and_time(wxdata)
    wxdata, wxresp["runway_visibility"] = _core.get_runway_visibility(wxdata)
    if "CAVOK" not in wxdata:
        wxdata, wxresp["clouds"] = _core.get_clouds(wxdata)
    wxdata, wxresp["wind_direction"], wxresp["wind_speed"], wxresp["wind_gust"], wxresp[
        "wind_variable_direction"
    ] = _core.get_wind(wxdata, units)
    wxdata, wxresp["altimeter"] = _core.get_altimeter(wxdata, units, "IN")
    if "CAVOK" in wxdata:
        wxresp["visibility"] = _core.make_number("CAVOK")
        wxresp["clouds"] = []
        wxdata.remove("CAVOK")
    else:
        wxdata, wxresp["visibility"] = _core.get_visibility(wxdata, units)
    wxresp["other"], wxresp["temperature"], wxresp["dewpoint"] = _core.get_temp_and_dew(
        wxdata
    )
    condition = _core.get_flight_rules(
        wxresp["visibility"], _core.get_ceiling(wxresp["clouds"])
    )
    wxresp["flight_rules"] = FLIGHT_RULES[condition]
    wxresp["remarks_info"] = remarks.parse(wxresp["remarks"])
    wxresp["time"] = _core.make_timestamp(wxresp["time"])
    return MetarData(**wxresp), units
Exemplo n.º 2
0
 def test_get_remarks(self):
     """
     Remarks get removed first with the remaining components split into a list
     """
     for raw, wx, rmk in (
         ("1 2 3 A2992 RMK Hi", ["1", "2", "3", "A2992"], "RMK Hi"),
         ("1 2 3 A2992 Hi", ["1", "2", "3", "A2992"], "Hi"),
         ("1 2 Q0900 NOSIG", ["1", "2", "Q0900"], "NOSIG"),
         ("1 2 3 BLU+ Hello", ["1", "2", "3"], "BLU+ Hello"),
     ):
         testwx, testrmk = _core.get_remarks(raw)
         self.assertEqual(wx, testwx)
         self.assertEqual(rmk, testrmk)
Exemplo n.º 3
0
 def test_get_remarks(self):
     """
     Remarks get removed first with the remaining components split into a list
     """
     for raw, wx, rmk in (('1 2 3 A2992 RMK Hi', ['1', '2', '3',
                                                  'A2992'], 'RMK Hi'),
                          ('1 2 3 A2992 Hi', ['1', '2', '3', 'A2992'],
                           'Hi'), ('1 2 Q0900 NOSIG', ['1', '2',
                                                       'Q0900'], 'NOSIG'),
                          ('1 2 3 BLU+ Hello', ['1', '2',
                                                '3'], 'BLU+ Hello')):
         testwx, testrmk = _core.get_remarks(raw)
         self.assertEqual(wx, testwx)
         self.assertEqual(rmk, testrmk)