Hi there,
METAR plugin does not display anymore METAR data but “METAR not available” message.
It seems that NOAA has moved some METAR services.
Plugin can be updated directly with the following two lines :
REPLACE
$fileName = ‘https://weather.noaa.gov/pub/data/observations/metar/stations/’ . $loc . ‘.TXT’;
WITH
$fileName = ‘https://tgftp.nws.noaa.gov/data/observations/metar/stations/’ . $loc . ‘.TXT’;
REPLACE
$fileName = ‘ftp://tgftp.nws.noaa.gov/data/forecasts/taf/stations/’ . $loc . ‘.TXT’;
WITH
$fileName = ‘ftp:// tgftp.nws.noaa.gov/data/observations/metar/stations/’ . $loc . ‘.TXT’;
Any chance you are going to add notams to this plugin.
Thx