Uses of Class
org.apache.sis.coverage.grid.GridExtent
Packages that use GridExtent
Package
Description
A coverage backed by a regular grid.
Widgets showing
GridCoverage
images or sample values.Widgets for showing a map in a JavaFX application.
Base types for retrieving and saving tiles in resources.
-
Uses of GridExtent in org.apache.sis.coverage.grid
Fields in org.apache.sis.coverage.grid declared as GridExtentModifier and TypeFieldDescriptionprotected final GridExtent
GridGeometry.extent
The valid domain of a grid coverage, ornull
if unknown.Methods in org.apache.sis.coverage.grid that return GridExtentModifier and TypeMethodDescriptionGridExtent.expand
(long... margins) Returns a grid extent expanded by the given amount of cells on both sides along each dimension.GridGeometry.getExtent()
Returns the valid coordinate range of a grid coverage.GridDerivation.getIntersection()
Returns the extent of the modified grid geometry, ignoring subsampling or changes in resolution.GridExtent.insertDimension
(int offset, DimensionNameType axisType, long low, long high, boolean isHighIncluded) Returns a new grid extent with the specified dimension inserted at the given index in this grid extent.GridExtent.intersect
(GridExtent other) Returns the intersection of this grid extent with the given grid extent.GridExtent.reduceDimension
(int... dimensions) Deprecated.GridExtent.resize
(long... sizes) Sets the size of grid extent to the given values by moving low and high coordinates.GridExtent.selectDimensions
(int... dimensions) Returns a grid extent that encompass only some dimensions of this grid extent.GridExtent.subsample
(int... periods) Creates a new grid extent subsampled by the given amount of cells along each grid dimensions.FractionalGridCoordinates.toExtent
(GridExtent bounds, long... size) Creates a new grid extent around this grid coordinates.GridExtent.translate
(long... translation) Returns an extent translated by the given amount of cells compared to this extent.GridExtent.union
(GridExtent other) Returns the union of this grid extent with the given grid extent.GridExtent.upsample
(int... periods) Creates a new grid extent upsampled by the given amount of cells along each grid dimensions.GridExtent.withRange
(int index, long low, long high) Returns a grid extent identical to this grid extent except for the coordinate values in the specified dimension.Methods in org.apache.sis.coverage.grid with parameters of type GridExtentModifier and TypeMethodDescriptionGridExtent.intersect
(GridExtent other) Returns the intersection of this grid extent with the given grid extent.GridGeometry.relocate
(GridExtent newExtent) Returns a grid geometry with the given grid extent, which implies a new "real world" computation.BufferedGridCoverage.render
(GridExtent sliceExtent) Returns a two-dimensional slice of grid data as a rendered image.abstract RenderedImage
GridCoverage.render
(GridExtent sliceExtent) Returns a two-dimensional slice of grid data as a rendered image.GridCoverage2D.render
(GridExtent sliceExtent) Returns a grid data region as a rendered image.GridDerivation.subgrid
(GridExtent areaOfInterest, int... subsampling) Requests a grid geometry over a sub-region of the base grid geometry and optionally with subsampling.FractionalGridCoordinates.toExtent
(GridExtent bounds, long... size) Creates a new grid extent around this grid coordinates.GridExtent.union
(GridExtent other) Returns the union of this grid extent with the given grid extent.Constructors in org.apache.sis.coverage.grid with parameters of type GridExtentModifierConstructorDescriptionDisjointExtentException
(GridExtent source, GridExtent request, int dim) Creates an exception with an error message built from the given extents.GridGeometry
(GridExtent extent, Envelope envelope, GridOrientation orientation) Creates an axis-aligned grid geometry with an extent and an envelope.GridGeometry
(GridExtent extent, PixelInCell anchor, MathTransform gridToCRS, CoordinateReferenceSystem crs) Creates a new grid geometry from a grid extent and a mapping from cell coordinates to "real world" coordinates.GridGeometry
(GridGeometry other, GridExtent extent, MathTransform toOther) Creates a new grid geometry derived from the given grid geometry with a new extent and a modified transform.ImageRenderer
(GridCoverage coverage, GridExtent sliceExtent) Creates a new image renderer for the given slice extent. -
Uses of GridExtent in org.apache.sis.gui.coverage
Fields in org.apache.sis.gui.coverage with type parameters of type GridExtentModifier and TypeFieldDescriptionfinal ObjectProperty<GridExtent>
CoverageCanvas.sliceExtentProperty
A subspace of the grid coverage extent where all dimensions except two have a size of 1 cell.Methods in org.apache.sis.gui.coverage that return GridExtentModifier and TypeMethodDescriptionfinal GridExtent
CoverageCanvas.getSliceExtent()
Returns a subspace of the grid coverage extent where all dimensions except two have a size of 1 cell.Methods in org.apache.sis.gui.coverage that return types with arguments of type GridExtentModifier and TypeMethodDescriptionfinal Optional<GridExtent>
ImageRequest.getSliceExtent()
Returns the subspace of the grid coverage extent to render.final ReadOnlyProperty<GridExtent>
GridSliceSelector.selectedExtentProperty()
Returns the property for the currently selected grid extent.Methods in org.apache.sis.gui.coverage with parameters of type GridExtentModifier and TypeMethodDescriptionfinal void
CoverageCanvas.setSliceExtent
(GridExtent sliceExtent) Sets a subspace of the grid coverage extent where all dimensions except two have a size of 1 cell.Constructors in org.apache.sis.gui.coverage with parameters of type GridExtentModifierConstructorDescriptionImageRequest
(GridCoverage source, GridExtent slice) Creates a new request for loading an image from the specified coverage. -
Uses of GridExtent in org.apache.sis.gui.map
Methods in org.apache.sis.gui.map with parameters of type GridExtentModifier and TypeMethodDescriptionvoid
StatusBar.applyCanvasGeometry
(GridGeometry geometry, GridExtent sliceExtent, int xdim, int ydim) Configures this status bar for showing coordinates of a slice of a grid coverage. -
Uses of GridExtent in org.apache.sis.storage.tiling
Methods in org.apache.sis.storage.tiling with parameters of type GridExtentModifier and TypeMethodDescriptionlong
WritableTileMatrix.deleteTiles
(GridExtent indicesRanges) Deletes all existing tiles in the given region.TileMatrix.getTiles
(GridExtent indicesRanges, boolean parallel) Retrieves a stream of existing tiles in the specified region.
selectDimensions(int...)
for clarity.