You are here

function _weather_parse_stop in Weather 7

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

Decide whether to stop parsing.

Parameters

string $metar_raw: Raw METAR data to parse.

Return value

boolean TRUE or FALSE.

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

File

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

Code

function _weather_parse_stop($metar_raw) {
  if (preg_match('/^(BECMG|TEMPO|NOSIG|RMK)$/', $metar_raw)) {
    return TRUE;
  }
  else {
    return FALSE;
  }
}