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 ...
随机推荐
- PDA通过SocketTcp+Json和SuperSocket通信方式
从Pda请求到服务器处理请求,并返回结果,Pda拿到结果的流程.
- Spring MVC与Struts2的区别
1. 机制:spring mvc的入口是servlet,而struts2是filter,这样就导致了二者的机制不同. 2. 性能:spring会稍微比struts快.spring mvc是基于方法的设 ...
- 在Eclipse中使用JUnit4进行单元测试
在Eclipse中使用JUnit4进行单元测试(初级篇) 在Eclipse中使用JUnit4进行单元测试(中级篇) 在Eclipse中使用JUnit4进行单元测试(高级篇)
- 解决“未启用当前数据库的 SQL Server Service Broker,因此查询通知不受支持。如果希望使用通知,请为此数据库启用 Service Broker”错误
转自:http://blog.csdn.net/andrew_wx/article/details/6947317 解决办法: ALTER DATABASE 数据库名称 SET NEW_BROKER ...
- php接二进制文件
PHP默认只识别application/x-www.form-urlencoded标准的数据类型. 因此,对型如text/xml 或者 soap 或者 application/octet-stream ...
- Python Beautiful Soup模块的安装
以安装Beautifulsoup4为例: 1.到网站上下载:http://www.crummy.com/software/BeautifulSoup/bs4/download/ 2.解压文件到C:\P ...
- android学习笔记28——Activity生命周期
Activity生命周期 Activity的活动状态由android已Activity栈的形式管理,当前活动的Activity位于栈顶.随着不同应用的运行,每个Activity都有可能从活动状态转入非 ...
- php全角字符转换为半角函数
<?php /** * 全角字符转换为半角 * * @param string $str * @return string public function Sbc2Dbc($str) { $ar ...
- HTTP协议的安全性--全站HTTPS
HTTP Basic Authentication很容易让攻击者监听并获取用户名密码.使用Base64来encode用户名密码也只是为将用户名和口令中的不兼容字符转换为均与HTTP协议兼容的字符集. ...
- PLSQL_基础系列12_替换函数用法REPLACE / TRANSLATE / REGEXP_REPLACE
20150806 Created By BaoXinjian
