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 ...
随机推荐
- tagName和nodeName的区别
首先介绍DOM里常见的三种节点类型(总共有12种,如docment):元素节点,属性节点以及文本节点,例如<h2 class="title">head</h2 ...
- How to send Email using C#
try { MailMessage mail = new MailMessage(); SmtpClient SmtpServer = new SmtpClient("smtp.gmail. ...
- android虚拟机(ROOT)权限
自己找的一个比较好用的pc端安卓模拟器,蓝手指总所周知吧,这个是较高版本但不是最新的一个版本,关键是自带root功能,对于破解安卓存档类游戏还是有用的.安卓版本4.4.2 BlueStacks 0.9 ...
- JDBC - Oracle PreparedStatement (GeneratedKey kind) ArrayIndexOutOfBoundsException
问题: Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 12at oracle.jdbc. ...
- 转:vs发布window应用程序时出错:未能签名 ...\setup.exe
在vs发布window应用程序过程中,提示“SignTool 报告了一个错误‘未能签名 ...\setup.exe.SignTool 错误: ISignCode::Sign 返回的错误: 0x80 ...
- SQL Server 2008维护计划 出错 无法实现自动备份
,MaintenancePlan.Subplan_1,错误,0,HBZGQ\TESTSQLSERVER,MaintenancePlan.Subplan_1,(作业结果),,该作业失败. 用户 sa 调 ...
- OpenSSL 双向认证
在使用OpenSSL进行SSL双向认证时,需要在服务器和客户端配置如下接口函数: SSL_CTX_set_verify(SSL_CTX* ctx,int mode,int (*verify_callb ...
- 55. Jump Game
Given an array of non-negative integers, you are initially positioned at the first index of the arra ...
- 只有一个Service或Broadcast Reciver的android应用
Service是android四大组件中与Activity最相似的组件,都可以代表可执行的程序. Service与Activity的区别在于: (1).Service一直在后台运行,没有用户界面. ...
- (C/C++) 算法,编程题
注: 如下的题目皆来自互联网,答案是结合了自己的习惯稍作了修改. 1. 求一个数的二进制中的1的个数. int func(int x) { ; while (x) { count++; x = x&a ...
