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