You are here

function _weather_parse_icao in Weather 7

Same name and namespace in other branches
  1. 5.6 weather_parser.inc \_weather_parse_icao()
  2. 5 weather_parser.inc \_weather_parse_icao()
  3. 6.5 weather_parser.inc \_weather_parse_icao()

Extract ICAO code.

ICAO = International Civil Aviation Organization, this is a four letter airport code, e. g. EDDH

Parameters

string $metar_raw: Raw METAR data to parse.

object $metar: METAR data object, may be altered.

1 call to _weather_parse_icao()
weather_parse_metar in ./weather_parser.inc
Parses a raw METAR data string.

File

./weather_parser.inc, line 247
Retrieves and parses raw METAR data and stores result in database.

Code

function _weather_parse_icao($metar_raw, &$metar) {
  if (preg_match('/^([A-Z]{4}|K[A-Z0-9]{3})$/', $metar_raw) and !isset($metar->icao)) {
    $metar->icao = $metar_raw;
  }
}