esriSRProjCS3Type Constants
![]() |
ArcGIS Developer Help (Geometry) |
|
esriSRProjCS3Type Constants
More projected coordinate systems.
| Constant | Value | Description |
|---|---|---|
| esriSRProjCS_World_Aitoff | 54043 | Aitoff. |
| esriSRProjCS_World_CrasterParabolic | 54046 | Craster Parabolic. |
| esriSRProjCS_World_FlatPolarQuartic | 54045 | Flat Polar Quartic. |
| esriSRProjCS_World_HammerAitoff | 54044 | Hammer-Aitoff. |
| esriSRProjCS_World_Times | 54048 | Times. |
| esriSRProjCS_World_VerticalPerspective | 54049 | Vertical Near-side Perspective - geosynchronous orbit. |
| esriSRProjCS_World_WinkelTripelNGS | 54042 | Winkel Tripel (NGS). |
| esriSRProjCS_Sphere_Aitoff | 53043 | Aitoff. |
| esriSRProjCS_Sphere_CrasterParabolic | 53046 | Craster Parabolic. |
| esriSRProjCS_Sphere_FlatPolarQuartic | 53045 | Flat Polar Quartic. |
| esriSRProjCS_Sphere_HammerAitoff | 53044 | Hammer-Aitoff. |
| esriSRProjCS_Sphere_Times | 53048 | Times. |
| esriSRProjCS_Sphere_VerticalPerspective | 53049 | Vertical Near-side Perspective - geosynchronous orbit. |
| esriSRProjCS_Sphere_WinkelTripelNGS | 53042 | Winkel Tripel (NGS). |
| esriSRProjCS_WGS1984_NPoleGnomonic | 102034 | North Pole Gnomonic. |
| esriSRProjCS_WGS1984_SPoleGnomonic | 102036 | South Pole Gnomonic. |
| esriSRProjCS_WGS1984_NPoleOrthographic | 102035 | North Pole Orthographic. |
| esriSRProjCS_WGS1984_SPoleOrthographic | 102037 | South Pole Orthographic. |
| esriSRProjCS_TheWorldFromSpace | 102038 | The World from Space. |
Product Availability
Remarks
This enumeration contains entries for some of the predefined projected coordinate systems. Please see esriSRProjCSType, esriSRProjCS2Type, and esriSRProjCS4Type for other predefined projected coordinate systems. A value corresponds to the factory code used in the Projection Engine library.
See Also
esriSRProjCSType Constants | esriSRProjCS2Type Constants | esriSRProjCS4Type Constants
Send feedback on this page esriSRProjCS3Type Constants的更多相关文章
- esriSRProjCS4Type Constants
ArcGIS Developer Help (Geometry) esriSRProjCS4Type Constants See Also esriSRProjCSType Constants ...
- esriSRProjCS2Type Constants
ArcGIS Developer Help (Geometry) esriSRProjCS2Type Constants See Also esriSRProjCSType Constants ...
- esriSRProjCSType Constants
ArcGIS Developer Help (Geometry) esriSRProjCSType Constants See Also esriSRProjCS2Type Constant ...
- some OpenGL constants
some OpenGL constants This is from (https://github.com/peterderivaz/pyopengles/blob/master/gl2.py) G ...
- CLR via C# 3rd - 07 - Constants and Fields
1. Constants A constant is a symbol that has a never-changing value. When defining a constant ...
- JavaScript Patterns 5.7 Object Constants
Principle Make variables shouldn't be changed stand out using all caps. Add constants as static prop ...
- 深入浅出OOP(五): C#访问修饰符(Public/Private/Protected/Internal/Sealed/Constants)
访问修饰符(或者叫访问控制符)是面向对象语言的特性之一,用于对类.类成员函数.类成员变量进行访问控制.同时,访问控制符也是语法保留关键字,用于封装组件. Public, Private, Protec ...
- Effective Java 30 Use Enums instead of int constants
Enumerated type is a type whose legal values consist of a fixed set of constants, such as the season ...
- Task Scheduler Error and Success Constants (Windows)
If an error occurs, the Task Scheduler APIs can return one of the following error codes as an HRESUL ...
随机推荐
- JS动态广告浏览
<script language="JavaScript"> function addEventSimple(obj,evt,fn){ if(obj.addEventL ...
- struts2异常处理及类型转换
一.struts2对异常的处理 1.自定义局部异常: <action> <exception-mapping result="sonException" exce ...
- SwiftyJSON 中文介绍
SwiftyJSON makes it easy to deal with JSON data in Swift. Why is the typical JSON handling in Swift ...
- 转:Scrapy安装、爬虫入门教程、爬虫实例(豆瓣电影爬虫)
Scrapy在window上的安装教程见下面的链接:Scrapy安装教程 上述安装教程已实践,可行.(本来打算在ubuntu上安装Scrapy的,但是Ubuntu 磁盘空间太少了,还没扩展磁盘空间,所 ...
- Review Board——在线代码审查工具
代码审查(Code Review)不但可以提高质量,而且还是一个知识共享和指导的极好的手段.不幸的是,准备工作的辛苦和工具支持的缺乏让代码审查很容易被延至“稍后再议”.Review Board的目标便 ...
- 导入和导出表空间:复制文件比mysqldump&restore快
#生成测试数据server1:mysql> CREATE TABLE test (c1 INT PRIMARY KEY)engine = innodb;Query OK, 0 rows affe ...
- js调用ajax
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...
- WCF学习心得------(七)消息协定
第七章 消息协定 7.1 消息协定概述 通常情况下,在定义消息的架构时只使用数据协定就足够,但是有时需要精确控制如何将类型映射到通过网络传输的SOAP消息.对于这种情况,通常解决方案是插入自定义的SO ...
- eclipse debug小技巧
测试 Expressions 代码 public static void main(String[] args) { int x=100; System.out.println("----& ...
- UI-导航控制器的使用
1.初始化导航栏控制器 2..设置导航栏的标题 3.跳到下一个页面 4.返回上一个页面 5.自定义返回页面 6.导航栏上的自定义返回按钮 7.两个导航栏显示隐藏的常用方法(当前页不显示)
