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

📄 boundingpolygon.java

📁 GEo 地理操作源代码
💻 JAVA
字号:
/*$************************************************************************************************ ** ** $Id: BoundingPolygon.java,v 1.2 2004/03/09 20:02:54 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/metadata/extent/BoundingPolygon.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.metadata.extent;// OpenGIS direct dependenciesimport org.opengis.spatialschema.geometry.Geometry;/** * Boundary enclosing the dataset, expressed as the closed set of * (<var>x</var>,<var>y</var>) coordinates of the polygon. The last * point replicates first point. * * @UML abstract EX_BoundingPolygon * @author ISO 19115 * @author <A HREF="http://www.opengis.org">OpenGIS&reg; consortium</A> * @version 5.0 */public interface BoundingPolygon extends GeographicExtent {    /**     * Returns the sets of points defining the bounding polygon.     *     * @UML mandatory polygon     *     * @revisit The UML allow an arbitrary number of object to be returned. Should we return     *          an array? Furthermore, the UML return the most general type ({@link Geometry}).     *          We could returns an array of some more restrictive type, or allow this method     *          to returns some aggregate.     */    public Geometry getPolygon();}

⌨️ 快捷键说明

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