protected static class LocalElevationModel.LocalTile extends Object
| Modifier and Type | Field and Description | 
|---|---|
| protected BufferWrapper | elevationsThe elevations. | 
| protected double | maxElevationThe maximum elevation contained in this tile's raster. | 
| protected double | minElevationThe minimum elevation contained in this tile's raster. | 
| protected double | missingDataFlagThe elevation model's missing data flag. | 
| protected Sector | sectorThe sector the tile covers. | 
| protected int | tileHeightThe number of rows in the raster. | 
| protected int | tileWidthThe number of elevation values in a row of the raster. | 
| Modifier | Constructor and Description | 
|---|---|
| protected  | LocalTile(Sector sector,
         double missingDataFlag,
         int tileWidth,
         int tileHeight,
         BufferWrapper elevations,
         Double minEl,
         Double maxEl)Constructs a new elevations tile. | 
| Modifier and Type | Method and Description | 
|---|---|
| protected void | computeMinMaxElevations()Determines the minimum and maximum elevations of this tile. | 
| protected boolean | isMissingData(double value)Determines whether a value signifies missing data -- voids. | 
protected final BufferWrapper elevations
protected double maxElevation
protected double minElevation
protected final double missingDataFlag
protected final Sector sector
protected final int tileHeight
protected final int tileWidth
protected LocalTile(Sector sector, double missingDataFlag, int tileWidth, int tileHeight, BufferWrapper elevations, Double minEl, Double maxEl)
sector - the sector the tile covers.missingDataFlag - the elevation model's missing data flag.tileWidth - the number of elevation values in a row of this tile's elevation raster.tileHeight - the number of rows in this tile's elevation raster.elevations - the elevations.minEl - the minimum elevation of this tile. May be null, in which case the minimum is
                        determined.maxEl - the maximum elevation of this tile. May be null, in which case the maximum is
                        determined.protected void computeMinMaxElevations()
protected boolean isMissingData(double value)
value - the value to test.