Uses of Interface
org.orekit.rugged.raster.TileUpdater
-
Packages that use TileUpdater Package Description org.orekit.rugged.api This package provides the principal class of Rugged library API, as well as the builder for Rugged instances.org.orekit.rugged.intersection This package provides the interface for Digital Elevation Model intersection algorithm, as well as some simple implementations.org.orekit.rugged.intersection.duvenhage This package provides the Digital Elevation Model intersection using Bernardt Duvenhage's algorithm.org.orekit.rugged.raster This package provides the interface used to update Digital Elevation Model tiles to be implemented by the user, the interface representing a raster tile, as well as a simple model. -
-
Uses of TileUpdater in org.orekit.rugged.api
Methods in org.orekit.rugged.api that return TileUpdater Modifier and Type Method Description TileUpdater
RuggedBuilder. getTileUpdater()
Get the updater used to load Digital Elevation Model tiles.Methods in org.orekit.rugged.api with parameters of type TileUpdater Modifier and Type Method Description RuggedBuilder
RuggedBuilder. setDigitalElevationModel(TileUpdater newTileUpdater, int newMaxCachedTiles)
Set the user-providedtile updater
.RuggedBuilder
RuggedBuilder. setDigitalElevationModel(TileUpdater newTileUpdater, int newMaxCachedTiles, boolean newIsOverlappingTiles)
Set the user-providedtile updater
. -
Uses of TileUpdater in org.orekit.rugged.intersection
Constructors in org.orekit.rugged.intersection with parameters of type TileUpdater Constructor Description BasicScanAlgorithm(TileUpdater updater, int maxCachedTiles, boolean isOverlappingTiles)
Simple constructor. -
Uses of TileUpdater in org.orekit.rugged.intersection.duvenhage
Constructors in org.orekit.rugged.intersection.duvenhage with parameters of type TileUpdater Constructor Description DuvenhageAlgorithm(TileUpdater updater, int maxCachedTiles, boolean flatBody, boolean isOverlappingTiles)
Simple constructor. -
Uses of TileUpdater in org.orekit.rugged.raster
Constructors in org.orekit.rugged.raster with parameters of type TileUpdater Constructor Description TilesCache(TileFactory<T> factory, TileUpdater updater, int maxTiles, boolean isOverlappingTiles)
Simple constructor.
-