projectedcs.java
来自「OpenMap是一个基于JavaBeansTM的开发工具包。利用OpenMap你」· Java 代码 · 共 32 行
JAVA
32 行
package org.geotiff.epsg;/** * Represents the Projected coordinate system. * * @author: Niles D. Ritter */public class ProjectedCS extends HorizontalCS { GeographicCS geographicCS; /** * Protected Constructor; use the factory method in HorizontalCS to make * this. */ protected ProjectedCS(int code) { super(code); // NB: Must construct the GeographicCS // associated with this PCS!! } /** * Standard accessor. */ public HorizontalCS getGeographicCS() { return geographicCS; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?