hard code tiling level 1 for GOESR + NEXRCOMP

This commit is contained in:
mjames-upc 2017-05-04 14:34:40 -06:00
parent 5c47ae44c1
commit 250c9ed29f

View file

@ -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);