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

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 ...
随机推荐
- nginx设置不使用缓存 add_header Cache-Control no-cache
nginx设置不使用缓存 server { listen 443; #域名 server_name www.dev.163.com; #字符集 charset utf-8; ssl on; ssl_c ...
- 什么是JDK
Java Development Kit (JDK) 是太阳微系统针对Java开发人员发布的免费软件开发工具包(SDK,Software development kit).JDK 是整个Java的核心 ...
- Subversion与TortoiseSVN的安装
首先介绍一下Subversion与TortoiseSVN两者之间的关系: Subversion是一种集中分享信息的系统,它的核心是版本库,储存所有的数据.版本库按照文件树形式储存数据-包括文件和目录. ...
- WEB用户访问控制方法
分享到 一键分享 QQ空间 新浪微博 百度云收藏 人人网 腾讯微博 百度相册 开心网 腾讯朋友 百度贴吧 豆瓣网 搜狐微博 百度新首页 QQ好友 和讯微博 更多... 百度分享 一直以来,我对用户/权 ...
- C#Random()函数详解
随机数的使用很普遍,可用它随机显示图片,用它防止无聊的人在论坛灌水还可以用来加密信息等等.本文讨论如何在一段数字区间内随机生成若干个互不相同的随机数,比如在从1到20间随机生成6个互不相同的整数,并通 ...
- [转] matlab figure最大化
http://blog.163.com/yinhexiwen@126/blog/static/6404826620122942057214/ % figure 窗口最大化,坐标轴也随着窗口变大而相应变 ...
- LintCode "Count of Smaller Number before itself"
Warning: input could be > 10000... Solution by segment tree: struct Node { Node(), left(nullptr), ...
- POJ #2479 - Maximum sum
Hi, I'm back. This is a realy classic DP problem to code. 1. You have to be crystal clear about what ...
- Php检测文件编码方法
<?php /** * 检测文件编码 * @param string $file 文件路径 * @return string|null 返回 编码名 或 null */ function det ...
- [Serializable]的应用--注册码的生成,加密和验证
1.首先定义注册类RegisterEntity [Serializable] public class RegisterEntity { public string RegisterKey; publ ...