esriFeatureType与esriGeometryType的区别与联系

时间:2021-07-24 06:22:12

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与esriGeometryType的区别与联系
 
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.

esriFeatureType与esriGeometryType的区别与联系的更多相关文章

  1. Arcgis engine 指定图层对要素进行创建、删除等操作

    Arcgis engine 指定图层创建点要素 在指定的图层上创建一个点要素,点要素的位置是通过X,Y坐标指定的,下面是具体的注释 .其中 和IFeatureClassWrite接口有关的代码不要好像 ...

  2. c#与java的区别

    经常有人问这种问题,用了些时间java之后,发现这俩玩意除了一小部分壳子长的还有能稍微凑合上,基本上没什么相似之处,可以说也就是马甲层面上的相似吧,还是比较短的马甲... 一般C#多用于业务系统的开发 ...

  3. jquery和Js的区别和基础操作

    jqery的语法和js的语法一样,算是把js升级了一下,这两种语法可以一起使用,只不过是用jqery更加方便 一个页面想要使用jqery的话,先要引入一下jqery包,jqery包从网上下一个就可以, ...

  4. 【原】nodejs全局安装和本地安装的区别

    来微信支付有2年多了,从2年前的互联网模式转变为O2O模式,主要的场景是跟线下的商户去打交道,不像以往的互联网模式,有产品经理提需求,我们帮忙去解决问题. 转型后是这样的,团队成员更多需要去寻找业务的 ...

  5. 探究@property申明对象属性时copy与strong的区别

    一.问题来源 一直没有搞清楚NSString.NSArray.NSDictionary--属性描述关键字copy和strong的区别,看别人的项目中属性定义有的用copy,有的用strong.自己在开 ...

  6. X86和X86_64和X64有什么区别?

    x86是指intel的开发的一种32位指令集,从386开始时代开始的,一直沿用至今,是一种cisc指令集,所有intel早期的cpu,amd早期的cpu都支持这种指令集,ntel官方文档里面称为&qu ...

  7. Java中Comparable与Comparator的区别

    相同 Comparable和Comparator都是用来实现对象的比较.排序 要想对象比较.排序,都需要实现Comparable或Comparator接口 Comparable和Comparator都 ...

  8. MySQL中interactive_timeout和wait_timeout的区别

    在用mysql客户端对数据库进行操作时,打开终端窗口,如果一段时间没有操作,再次操作时,常常会报如下错误: ERROR (HY000): Lost connection to MySQL server ...

  9. 设置line-height:1.5和line-height:150%或者line-height:150px的区别

    直接正题: 看一下line-height可能的值: 其实可以分为两类: (1)不带单位的(如line-height:1.5),这种是推荐使用的: (2)带单位的(如line-heigth:30px/1 ...

随机推荐

  1. 1472. Martian Army

    http://acm.timus.ru/problem.aspx?space=1&num=1472 题目大意: 一颗树,根节点(1) 的值为 1.0,所有叶子节点的值为 0.0 ,其他节点值任 ...

  2. 【Unity】13.1 场景视图中的GI可视化

    分类:Unity.C#.VS2015 创建日期:2016-05-19 一.简介 在场景视图中设计不同的场景内容时,可以根据需要勾选相关的渲染选项,以便让场景仅显示其中的一部分或者全部渲染效果. 在这些 ...

  3. android 学习随笔二十五(动画:补间动画)

    补间动画(TweenAnimation) * 原形态变成新形态时为了过渡变形过程,生成的动画就叫补间动画(为了让对象从初始状态向结束状态改变的过程更加自然而自动生成的动画效果)* 位移.旋转.缩放.透 ...

  4. 使用QEMU调试Linux内核代码

    http://blog.chinaunix.net/uid-20729583-id-1884617.html http://www.linuxidc.com/Linux/2014-08/105510. ...

  5. ECSHOP错误Redefining already defined constructor for class如何解决

    本地PHP环境PHP5.4,安装ecshop2.7.3后,很多地方会报如下的错 Redefining already defined constructor for class XXX 使用和类名相同 ...

  6. 阿里云使用js 实现OSS图片上传、获取OSS图片列表、获取图片外网访问地址(读写权限私有、读写权限公共);

    详情请参考:https://help.aliyun.com/document_detail/32069.html?spm=a2c4g.11186623.6.763.ZgC59a 或者https://h ...

  7. 插件使用一树形插件---zTree

    zTree是一款挺好用的树形插件,中文文档齐全,demo丰富. 官方网站是 http://www.treejs.cn/v3/main.php#_zTreeInfo 源码网站 https://githu ...

  8. Ubuntu 18.04 更新源

    [原因] 使用国外的源,在更新软件的时候会很慢,换成国内的源会快很多. [命令] 1.备份源文件 sudo cp /etc/apt/sources.list /etc/apt/sources.list ...

  9. sublime text 2 php 语法错误检查

    使用sublime text 2 编写php程序的时候,保存代码的时候,直接检查出语法错误,有利于提高效率. 1.安装sublime text 2 package menu : preferences ...

  10. vs git 推送远程会失败.

    Gitblit使用admin创建版本库.   使用VS无法推送到远程服务器. VS 2017 Git failed with a fatal error 可能是帐号不应不上.   本地上帐号与服务器的 ...