You are here

function _weather_parse_stop in Weather 5

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

Decide whether to stop parsing

Parameters

string Raw METAR data to parse:

array Parsed METAR data, will be altered:

Return value

boolean

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

File

./weather_parser.inc, line 59

Code

function _weather_parse_stop($metar_raw, &$metar) {
  if (preg_match('/^(BECMG|TEMPO|NOSIG|RMK)$/', $metar_raw)) {
    return true;
  }
  else {
    return false;
  }
}