org.opengis.coverage.grid
Interface GridRange

Show UML class diagram
All Superinterfaces:
GridEnvelope

Deprecated. Replaced by GridEnvelope.

@Deprecated
@UML(identifier="CV_GridRange",
     specification=OGC_01004)
public interface GridRange
extends GridEnvelope

Specifies the range of valid coordinates for each dimension of the coverage. For example this data type is used to access a block of grid coverage data values.

 

WARNING: THIS CLASS WILL CHANGE. Current API is derived from OGC Grid Coverages Implementation specification 1.0. We plan to replace it by new interfaces derived from ISO 19123 (Schema for coverage geometry and functions). Current interfaces should be considered as legacy and are included in this distribution only because they were part of GeoAPI 1.0 release. We will try to preserve as much compatibility as possible, but no migration plan has been determined yet.

Since:
GeoAPI 1.0
Version:
Grid Coverage specification 1.0

Method Summary
 int getLength(int dimension)
          Deprecated. Renamed as GridEnvelope.getSpan(int).
 GridCoordinates getLower()
          Deprecated. Renamed as GridEnvelope.getLow().
 int getLower(int dimension)
          Deprecated. Renamed as GridEnvelope.getLow(int).
 GridCoordinates getUpper()
          Deprecated. Replaced as GridEnvelope.getHigh() with 1 added to all ordinate values.
 int getUpper(int dimension)
          Deprecated. Renamed as GridEnvelope.getHigh(int) + 1.
 
Methods inherited from interface GridEnvelope
getDimension, getHigh, getHigh, getLow, getLow, getSpan
 

Method Detail

getLower

@Deprecated
@UML(identifier="lo",
     obligation=MANDATORY,
     specification=OGC_01004)
GridCoordinates getLower()
Deprecated. Renamed as GridEnvelope.getLow().

Returns the valid minimum inclusive grid coordinate. The sequence contains a minimum value for each dimension of the grid coverage.

Since:
GeoAPI 2.1

getUpper

@Deprecated
@UML(identifier="hi",
     obligation=MANDATORY,
     specification=OGC_01004)
GridCoordinates getUpper()
Deprecated. Replaced as GridEnvelope.getHigh() with 1 added to all ordinate values.

Returns the valid maximum exclusive grid coordinate. The sequence contains a maximum value for each dimension of the grid coverage.

Since:
GeoAPI 2.1

getLower

@Extension
@Deprecated
int getLower(int dimension)
Deprecated. Renamed as GridEnvelope.getLow(int).

Returns the valid minimum inclusive grid coordinate along the specified dimension.


getUpper

@Extension
@Deprecated
int getUpper(int dimension)
Deprecated. Renamed as GridEnvelope.getHigh(int) + 1.

Returns the valid maximum exclusive grid coordinate along the specified dimension.


getLength

@Extension
@Deprecated
int getLength(int dimension)
Deprecated. Renamed as GridEnvelope.getSpan(int).

Returns the number of integer grid coordinates along the specified dimension. This is equals to getUpper(dimension)-getLower(dimension).



Copyright © 1994-2010 Open Geospatial Consortium. All Rights Reserved.