Airpressure map Atlantic Ocean not showing

A lot of websites shows also the airpressure map from the Atlantic Ocean… I inserted the link to the map in a iframe but getting a error . Connection refused…

Howto fix this

Your frames.php shows

$show   = true; 
#$show   = false; // remove the # on position 1 if you do not want the atlantic map
#
#      Two maps from the northern hemisphere oceans
#
#                       Atlantic Ocean pressure map
if ($show == false) {
$frame                  = 'baromap';
$frm_ttls[$frame]       = 'Atlantic Ocean pressure map';  // name in menu
$frm_src[$frame]        = 'https://ocean.weather.gov/A_sfc_full_ocean_color.png';
$frm_type[$frame]       = 'img';       // set this to 'img' if you want to display an image only
}

Try to fix
if ($show == false)
to
if ($show == true)

1 Like

even with true same error

$show = true;
#$show = false;
if ($show == true) {
$frame = ‘Luchtdruk’;
$frm_ttls[$frame] = ‘Luchtdruk oceaan’; // name in menu
$frm_src[$frame] = ‘https://ocean.weather.gov/A_sfc_full_ocean_color.png’;
$frm_wdth[$frame] = 1280; // optional set this to the width if resizing is to ugly
$frm_hgth[$frame] = 800;
}

Got it :slight_smile: my mistake :slight_smile: thnx