⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gridrange.java

📁 GEo 地理操作源代码
💻 JAVA
字号:
/*$************************************************************************************************ ** ** $Id: GridRange.java,v 1.3 2004/04/28 19:40:26 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/coverage/grid/GridRange.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.coverage.grid;/** * 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. * * @UML datatype CV_GridRange * @author <A HREF="http://www.opengis.org">OpenGIS&reg; consortium</A> * @version <A HREF="http://www.opengis.org/docs/01-004.pdf">Grid Coverage specification 1.0</A> */public interface GridRange {    /**     * The valid minimum inclusive grid coordinate.     * The sequence contains a minimum value for each dimension of the grid coverage.     * The lowest valid grid coordinate is zero.     *     * @return The valid minimum inclusive grid coordinate.     * @UML mandatory lo     */    int[] getLower();    /**     * The valid maximum exclusive grid coordinate.     * The sequence contains a maximum value for each dimension of the grid coverage.     *     * @return The valid maximum exclusive grid coordinate.     * @UML mandatory hi     */    int[] getUpper();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -