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

📄 projection.java

📁 geotools的源码
💻 JAVA
字号:
package uk.ac.leeds.ccg.geotools.projections;

import uk.ac.leeds.ccg.geotools.GeoRectangle;

public interface Projection{
    
    public double[] project(double lon,double lat);
    public double[] unproject(double x,double y);
		/** given a geographical extent work out the minimum bounding rectangle
		 *  that contains that rectangle when projected - you may clip the
		 * rectangle returned to reflect what is sensible for this projection
		 */
		public GeoRectangle 
			projectedExtent(uk.ac.leeds.ccg.geotools.GeoRectangle r);
    public GeoRectangle unprojectedExtent(GeoRectangle r);
    public GeoRectangle clipToSafe(GeoRectangle r);    
}

⌨️ 快捷键说明

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