From 250c9ed29f644e099c5872ca9618184f71c2a745 Mon Sep 17 00:00:00 2001 From: mjames-upc Date: Thu, 4 May 2017 14:34:40 -0600 Subject: [PATCH] hard code tiling level 1 for GOESR + NEXRCOMP --- .../raytheon/edex/plugin/satellite/dao/SatelliteDao.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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);