hard code tiling level 1 for GOESR + NEXRCOMP
This commit is contained in:
parent
5c47ae44c1
commit
250c9ed29f
1 changed files with 4 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue