esriFeatureType与esriGeometryType的区别与联系

简介:

原文esriFeatureType与esriGeometryType的区别与联系

 

esriFeatureType通常用来表示数据的存储结构,即物理层;

esriGeometryType通常用来表示数据的几何形状,即表现层。

esriGeometryType枚举类型详

 
常量 对象
esriGeometryNull
0 未知类型(Unknown)
esriGeometryPoint 1 点(Point)
esriGeometryMultipoint 2 多点(Multipoint)
esriGeometryLine 13 线段(Line)
esriGeometryCircularArc 14 圆弧(CircularArc)
esriGeometryEllipticArc 16 椭圆弧(EllipticArc)
esriGeometryBezier3Curve 15 贝兹曲线(BezierCurve)
esriGeometryPath 6 路径(Path)
esriGeometryPolyline 3 多段线(Polyline)
esriGeometryRing 11 环(Ring)
esriGeometryPolygon 4 多边形(Polygon)
esriGeometryEnvelope 5 外包(Envelope)
esriGeometryAny 7 任何类型(Any valid geometry)
esriGeometryBag 17 任意几何类型的集合(GeometryBag)
esriGeometryMultiPatch 9 表面几何(MultiPatch)
esriGeometryTriangleStrip 18 三角带(TriangleStrip)
esriGeometryTriangleFan 19 三角扇形(TriangleFan)
esriGeometryRay 20 射线(Ray)
esriGeometrySphere 21 球体(Sphere)
esriGeometryTriangles 22 三角形(Triangles)

 

 

 

 

 

esriFeatureType枚举类型详解
常量 描述 对象
esriFTSimple
1
Polygons, polylines, and points representing objects or places that have area, such as water bodies; linear objects, such as rivers; and localized positions, such as houses or sample sites.
Simple Feature.
esriFTSimpleJunction 7
Simple junction feature in a geometric network representing point objects, such as a fuse, service point, or telephone pole.
Simple Junction Feature.
esriFTSimpleEdge 8
Simple edge feature in a geometric network representing polyline objects, such as primary or secondary overheads.
Simple Edge Feature.
esriFTComplexJunction 9
Complex junction feature in a geometric network, not in general use.
Complex Junction Feature.
esriFTComplexEdge 10
Complex edge feature in a geometric network representing polyline objects such as primary overheads, which have midspan connectivity. Network resources flow through complex edge without interruption by midspan connectivity.
Complex Edge Feature.
esriFTAnnotation 11
Place or object names or identifiers, such as street names, hydrant ID numbers, land values, or elevation.
Annotation Feature.
esriFTCoverageAnnotation 12
Place or object names or identifiers, such as street names, hydrant ID numbers, land values, or elevation. Not supported in geodatabases, only supported in coverage datasets.
Coverage Annotation Feature.
esriFTDimension 13
Measurements, such as distances, lengths, widths, and depths.
Dimension Feature.
esriFTRasterCatalogItem 14
A raster dataset in a raster catalog that has information, such as footprints, names, metadata, and any other user-defined attributes.
Raster Catalog Item.
没有整理与归纳的知识,一文不值!高度概括与梳理的知识,才是自己真正的知识与技能。 永远不要让自己的自由、好奇、充满创造力的想法被现实的框架所束缚,让创造力自由成长吧! 多花时间,关心他(她)人,正如别人所关心你的。理想的腾飞与实现,没有别人的支持与帮助,是万万不能的。







  本文转自wenglabs博客园博客,原文链接:http://www.cnblogs.com/arxive/p/5905421.html,如需转载请自行联系原作者



相关文章
|
1月前
|
索引
for in 和 for of的区别
for in 和 for of的区别
|
1月前
|
小程序
bindtap和catchtap的区别?
bindtap和catchtap的区别?
13 0
|
13天前
|
索引
for each和for of的区别
for each和for of的区别
|
3月前
a++与++a的区别
a++与++a的区别。
16 4
||、&&、!的使用与区别
||、&&、!的使用与区别
61 0
|
算法 IDE Unix
C和C++的区别
C和C++的区别
159 0
c++ *和&的区别
c++ *和&的区别
290 0
<T>和<?>区别
简要讲述一下<T>和<?>区别,以及<T>的用法
<T>和<?>区别
|
关系型数据库
Where and Having区别
Where和Having的异同 (1)where是查询返回结果之前进行过滤的 (2)having是查询返回结果之后,对结果进行过滤的 (3)在SQL中增加 HAVING 子句原因是,where关键字无法与聚合函数一起使用,having子句常跟group by一同使用,过滤分组...
1458 0
|
容器 数据格式 XML
getMeasuredWidth和getWidth的区别
View的getWidth()和getMeasuredWidth()有什么区别吗? View的高宽是由View本身和Parent容器共同决定的。getMeasuredWidth()和getWidth()分别对应于视图绘制的measure和layout阶段。
1480 0