Alternative WXSIM Display Problem Today - SOLVED

I’m not sure why, but today my wsWxsim display has lost the icons across the top in the Saratoga version while they’re still there in the ‘start3in1.php’ version. This may be related to today’s NOAA changeover to a new icon system, but I’m not sure.

I’ve attached images that illustrate the problem.


It turns out that all I had to do was uncomment line 260 in ‘wsIconUrl.php’:

		case 'noaa':
			#$iconIn = str_replace('.jpg', '', $iconIn);
			if ( isset ($arrLookupNoaa[$iconIn]) ) {

to

		case 'noaa':
			$iconIn = str_replace('.jpg', '', $iconIn);
			if ( isset ($arrLookupNoaa[$iconIn]) ) {