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

📄 projection.java

📁 GEo 地理操作源代码
💻 JAVA
字号:
/*$************************************************************************************************ ** ** $Id: Projection.java,v 1.1 2004/05/06 15:51:51 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/referencing/operation/Projection.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.referencing.operation;// OpenGIS dependenciesimport org.opengis.referencing.operation.Conversion;/** * A {@linkplain org.opengis.referencing.operation.Conversion conversion} transforming * (<var>longitude</var>,<var>latitude</var>) coordinates to cartesian coordinates * (<var>x</var>,<var>y</var>). * * <P ALIGN="justify">An unofficial list of projections and their parameters can * be found <A HREF="http://www.remotesensing.org/geotiff/proj_list/">there</A>. * Most projections expect the following parameters: *  <code>"semi_major"</code> (mandatory), *  <code>"semi_minor"</code> (mandatory), *  <code>"central_meridian"</code> (default to 0), *  <code>"latitude_of_origin"</code> (default to 0), *  <code>"scale_factor"</code> (default to 1), *  <code>"false_easting"</code> (default to 0) and *  <code>"false_northing"</code> (default to 0). * * @author <A HREF="http://www.opengis.org">OpenGIS&reg; consortium</A> * @version 2.0 * * @see org.opengis.referencing.crs.ProjectedCRS * @see <A HREF="http://mathworld.wolfram.com/MapProjection.html">Map projections on MathWorld</A> */public interface Projection extends Conversion {}

⌨️ 快捷键说明

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