diff --git a/edexOsgi/com.raytheon.edex.plugin.satellite/src/com/raytheon/edex/plugin/satellite/dao/SatelliteDao.java b/edexOsgi/com.raytheon.edex.plugin.satellite/src/com/raytheon/edex/plugin/satellite/dao/SatelliteDao.java index 5a7d9d41dc..17f7b301f5 100644 --- a/edexOsgi/com.raytheon.edex.plugin.satellite/src/com/raytheon/edex/plugin/satellite/dao/SatelliteDao.java +++ b/edexOsgi/com.raytheon.edex.plugin.satellite/src/com/raytheon/edex/plugin/satellite/dao/SatelliteDao.java @@ -171,8 +171,10 @@ public class SatelliteDao extends PluginDao { }); - // If these are 1-4km UCAR NEXRCOMP composites, show full res (no tiling) - if (satRecord.getSectorID().equals("NEXRCOMP")){ + // If these are 1-4km UCAR NEXRCOMP composites, or GOES-16(R) images, + // show full res (no tiling) + if (satRecord.getSource().equals("WCDAS") || + satRecord.getSource().equals("UCAR")){ satRecord.setInterpolationLevels(1); } else { satRecord.setInterpolationLevels(levels);