|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
ObjectGeneralGridEnvelope
@Immutable public class GeneralGridEnvelope
Defines a range of grid coverage coordinates.
CAUTION:
ISO 19123 defines high coordinates as inclusive.
We follow this specification for all getters methods, but keep in mind that this is the
opposite of Java2D usage where Rectangle maximal values are exclusive. When the
context is ambiguous, an explicit isHighIncluded argument is required.
GridEnvelope2D,
Serialized Form
| coverage/geotk-coverage (download) | View source code for this class |
| Constructor Summary | |
|---|---|
GeneralGridEnvelope(Envelope envelope,
PixelInCell anchor,
boolean isHighIncluded)
Casts the specified envelope into a grid envelope. |
|
GeneralGridEnvelope(GridEnvelope envelope)
Creates a new grid envelope as a copy of the given one. |
|
GeneralGridEnvelope(int[] low,
int[] high,
boolean isHighIncluded)
Constructs a new grid envelope. |
|
GeneralGridEnvelope(Raster raster,
int dimension)
Constructs multi-dimensional grid envelope defined by a Raster. |
|
GeneralGridEnvelope(Rectangle rect,
int dimension)
Constructs a multi-dimensional grid envelope defined by a Rectangle. |
|
GeneralGridEnvelope(RenderedImage image,
int dimension)
Constructs multi-dimensional grid envelope defined by a RenderedImage. |
|
| Method Summary | |
|---|---|
boolean |
equals(Object object)
Compares the specified object with this grid envelope for equality. |
int |
getDimension()
Returns the number of dimensions. |
GridCoordinates |
getHigh()
Returns the valid maximum inclusive grid coordinates. |
int |
getHigh(int dimension)
Returns the valid maximum inclusive grid coordinate along the specified dimension. |
GridCoordinates |
getLow()
Returns the valid minimum inclusive grid coordinates. |
int |
getLow(int dimension)
Returns the valid minimum inclusive grid coordinate along the specified dimension. |
int |
getSpan(int dimension)
Returns the number of integer grid coordinates along the specified dimension. |
GeneralGridEnvelope |
getSubGridEnvelope(int lower,
int upper)
Returns a new grid envelope that encompass only some dimensions of this grid envelope. |
int |
hashCode()
Returns a hash value for this grid envelope. |
Rectangle |
toRectangle()
Returns a Rectangle with the same bounds as this GeneralGridEnvelope. |
String |
toString()
Returns a string representation of this grid envelope. |
| Methods inherited from class Object |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public GeneralGridEnvelope(GridEnvelope envelope)
envelope - The grid envelope to copy.
public GeneralGridEnvelope(int[] low,
int[] high,
boolean isHighIncluded)
low - The valid minimum inclusive grid coordinate. The array contains a minimum
value (inclusive) for each dimension of the grid coverage. The lowest valid
grid coordinate is often zero, but this is not mandatory.high - The valid maximum grid coordinate. The array contains a maximum
value for each dimension of the grid coverage.isHighIncluded - true if the high values are inclusive (as in ISO 19123
specification), or false if they are exclusive (as in Java usage).
This argument does not apply to low values, which are always inclusive.getLow(),
getHigh()
public GeneralGridEnvelope(Rectangle rect,
int dimension)
Rectangle.
The two first dimensions are set to the
[x … x+width-1] and
[y … y+height-1]
inclusive ranges respectively.
Extra dimensions (if any) are set to the [0…0] inclusive range.
rect - The grid coordinates as a rectangle.dimension - Number of dimensions for this grid envelope.
Must be equals or greater than 2.
public GeneralGridEnvelope(Raster raster,
int dimension)
Raster.
The two first dimensions are set to the
[x … x+width-1] and
[y … y+height-1]
inclusive ranges respectively.
Extra dimensions (if any) are set to the [0…0] inclusive range.
raster - The raster for which to construct a grid envelope.dimension - Number of dimensions for this grid envelope.
Must be equals or greater than 2.
public GeneralGridEnvelope(RenderedImage image,
int dimension)
RenderedImage.
The two first dimensions are set to the
[x … x+width-1] and
[y … y+height-1]
inclusive ranges respectively.
Extra dimensions (if any) are set to the [0…0] inclusive range.
image - The image for which to construct a grid envelope.dimension - Number of dimensions for this grid envelope.
Must be equals or greater than 2.
public GeneralGridEnvelope(Envelope envelope,
PixelInCell anchor,
boolean isHighIncluded)
throws IllegalArgumentException
Note about rounding mode
It would have been possible to round the minimal value
toward floor and the maximal value
toward ceil in order to make sure that the grid envelope encompass
fully the envelope - like what Java2D does when converting Rectangle2D
to Rectangle). But this approach may increase by 1 or 2 units the image
width or height. For
example the range [-0.25 … 99.75] (which is exactly 101 units wide) would be casted
to [-1 … 100], which is 102 units wide. This leads to unexpected results when using
grid envelope with image operations like "Affine". For avoiding such changes in size, it is necessary to use the same rounding mode
for both minimal and maximal values. The selected rounding mode is nearest integer in this implementation.
Anchor
According OpenGIS specification, grid
geometry maps pixel's center. But envelopes typically encompass all pixels. This means
that grid coordinates (0,0) has an envelope starting at (-0.5, -0.5). In order to revert
back such envelope to a grid envelope, it is necessary to add 0.5 to every coordinates
(including the maximum value since it is exclusive in a grid envelope). This offset is
applied only if anchor is PixelInCell.CELL_CENTER. Users who don't want
such offset should specify PixelInCell.CELL_CORNER.
The convention is specified as a PixelInCell code instead than the more detailed
PixelOrientation because the latter is restricted to
the two-dimensional case while the former can be used for any number of dimensions.
envelope - The envelope to use for initializing this grid envelope.anchor - Whatever envelope coordinates map to pixel center or pixel corner. Should be
PixelInCell.CELL_CENTER for OGC convention (an offset of 0.5 will be
added to every envelope coordinate values), or PixelInCell.CELL_CORNER
for Java2D/JAI convention (no offset will be added).isHighIncluded - true if the envelope maximal values are inclusive, or false if
they are exclusive. This argument does not apply to minimal values, which are
always inclusive.
IllegalArgumentException - If anchor is not valid.GeneralEnvelope.GeneralEnvelope(GridEnvelope, PixelInCell,
org.opengis.referencing.operation.MathTransform,
org.opengis.referencing.crs.CoordinateReferenceSystem)| Method Detail |
|---|
public int getDimension()
getDimension in interface GridEnvelopepublic GridCoordinates getLow()
getLow in interface GridEnvelopepublic GridCoordinates getHigh()
getHigh in interface GridEnvelopepublic int getLow(int dimension)
getLow in interface GridEnvelopegetLow()public int getHigh(int dimension)
getHigh in interface GridEnvelopegetHigh()public int getSpan(int dimension)
getHigh(dimension) - getLow(dimension) + 1.
getSpan in interface GridEnvelope
public GeneralGridEnvelope getSubGridEnvelope(int lower,
int upper)
throws IndexOutOfBoundsException
lower and extending to dimension upper-1 inclusive. Thus the dimension
of the sub grid envelope is upper - lower.
lower - The first dimension to copy, inclusive.upper - The last dimension to copy, exclusive.
IndexOutOfBoundsException - if an index is out of bounds.
public Rectangle toRectangle()
throws IllegalStateException
Rectangle with the same bounds as this GeneralGridEnvelope.
This is a convenience method for inter-operability with Java2D.
IllegalStateException - if this grid envelope is not two-dimensional.public int hashCode()
hashCode in class Objectpublic boolean equals(Object object)
equals in class Objectobject - The object to compare with this grid envelope for equality.
true if the given object is equal to this grid envelope.public String toString()
toString in class Object
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||