kikita & Maps

GIS,spatial and artificial intellegence learning and share

每种软件都有自己的数据规范,ArcGIS也不例外,当数据不满足ArcGIS的规范时,就会遇到各种无响应和崩溃。

有关数据几何错误总是问题相对较多的部分。其中,shapefile作为一种开放的格式,除了ArcGIS程序可以读写,也可以按照数据规范在非ArcGIS环境中生产。后者生产的数据通常包含这样那样的问题,这些问题都是几何错误的范畴。

帮助原文说的精辟:

The shapefile is an open format to which many software packages write. Unfortunately, some of these software packages—sometimes due to bugs, sometimes due to lack of knowledge—do not follow the documented specification of the shapefile format.

简单罗列下ArcGIS中不能允许的几何错误类型:

  • 短线段/Short segment
    Some segments are shorter than allowed by the system units of the spatial reference associated with the geometry.

  • 空几何/Null geometry
    The feature has no geometry or nothing in the SHAPE field.

  • 不正确的环顺序/Incorrect ring ordering
    The polygon is topologically simple, but its rings may not be oriented correctly (outer rings—clockwise, inner rings—counterclockwise).

  • 不正确的线段方向/Incorrect segment orientation
    Individual segments are not consistently oriented. The “to” point of seg i should be incident on the “from” point of seg i+1.

  • 自相交/Self intersections
    A polygon must not intersect itself.

  • 非封闭环/Unclosed rings
    The last segment in a ring must have its “to” point incident on the “from” point of the first segment.

  • 空部分/Empty parts
    The geometry has multiple parts and one of them is empty (has no geometry).

  • 重复折点/Duplicate vertex
    The geometry has two or more vertices with identical coordinates.

  • 属性不匹配/Mismatched attributes
    The Z or M coordinate of a line segment’s endpoint does not match the Z or M coordinate of the coincident endpoint on the next segment.

  • 不连续部分/Discontinuous parts
    One of the geometry’s part is made up of disconnected or discontinuous parts.

  • 空Z值/Empty Z values
    The geometry has one or more vertex with empty Z value (NaN, for example).

以上的错误,可以用使用工具 Check Geometry 进行检查,工具会生成有关几何错误的报表。使用 Repaired Geometry 工具进行修复。

在西方国家罗马字母阵营中,字体分为两大种类:Sans Serif和Serif,打字机体虽然也属于Sans Serif,但由于是等宽字体,所以另外独立出 Monospace 这一种类,例如在Web中,表示代码时常常要使用等宽字体。

Serif的意思是,在字的笔画开始及結束的地方有额外的装饰,而且笔画的粗细会因直橫的不同而有不同。相反的,Sans Serif则沒有这些额外的装饰,笔画粗细大致差不多。如下图:

可以看出,我们平时所用的Georgia、Times New Roman等就属于Serif字体,而Arial、Tahoma、Verdana等则属于Sans Serif字体。对中文而言,同样存在这两大种类,很明显,宋体、细明体(繁体中常用)等就属于Serif,而黑体、幼圆等则属于Sans Serif。


Serif 和 Sans Serif 的一般比较:

  • Serif的字体容易辨认,因此易读性较高。反之Sans Serif 则较醒目,但在行文阅读的情況下,Sans Serif 容易造成字母辨认的困扰,常会有来回重读及上下行错乱的情形。

  • Serif 强调了字母笔画的开始及结束,因此较易前后连续性的辨识。

  • Serif 强调一个word,而非单一的字母,反之Sans Serif则强调个别字母。

  • 在小字体的场合,通常 Sans Serif 比 Serif 更清晰。


适用用途

  • 通常文章的內文、正文使用的是易读性较佳的 Serif 字体,这可增加易读性,而且长时间阅读下因为会以word为单位来阅读,较不容易疲倦。而标题、表格內用字则采用较醒目的Sans Serif字体,它需要显著、醒目,但不必长时间盯著这些字来阅读。

  • 像宣传品、海报类,为求醒目,它的短篇的段落也会采用Sans Serif字体。但在书籍、报刊杂志,正文有相当篇幅的情形下,则应采用Serif字体来减轻读者阅读上的负担。在Web设计及浏览器设置中也应遵循此原则为是。

Read more »

中文原文链接:

http://blog.csdn.net/arcgis_all/article/details/8363728

esri原文链接:

http://www.arcgis.com/home/item.html?id=38fede3935a440e49cf316dcae6aae47


重点提出来,方便配置:

(1)先找到 webviewer 文件夹,在CE工作空间下ce.lib 文件夹下;

(2)将 webviewer 文件夹丢到 wwwroot 文件夹下;

(3)计算机管理中,webviewer目录中,双击打开右边的窗口中选中MIME类型,添加类型,如下图:


Read more »

在命令行中,将目录更改为许可管理器安装位置。Windows 上的默认位置是 C:\Program Files (x86)\ArcGIS\License10.1\bin

在命令的末尾添加 -verbose,可以在命令窗口中显示进度和错误消息。


以静默方式授权:

softwareauthorizationls.exe -s -lif -ver10.1 "c:\temp\<*.prvs>"

当离线授权时,此命令还可以与 ***.resps** 文件结合使用。当授权单机版 Desktop 或 Engine 许可时,可使用 *.prvc 和 *.respc。

为离线授权创建一个 .txt 授权文件:

softwareauthorizationls.exe -s -lif -ver 10.1 "C:\Temp\<.prvs>" -out "C:\Temp\authorize.txt"


以静默方式取消授权:

Read more »
0%