function _weather_parse_stop in Weather 5
Same name and namespace in other branches
- 5.6 weather_parser.inc \_weather_parse_stop()
- 6.5 weather_parser.inc \_weather_parse_stop()
- 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;
}
}