The Topo to Raster tool returns errors 010235 and 010067转
Problem: The Topo to Raster tool returns errors 010235 and 010067
Description
The Topo to Raster geoprocessing tool is used to interpolate hydrologically-correct digital elevation models (DEMs) from feature data. In some instances, running the tool results in ArcMap crashing and returning the following errors:
010235: Returned error from <value>.
010067: Error in executing grid expression.
Cause
There are several possible causes for this issue:
A. A very small cell size is set for the output raster.
B. An input feature class that is large in size is used.
C. More than two feature classes are used as Input feature data.
Solution or Workaround
The options below address each of the causes mentioned above. Depending on the cause, use one of the options below to resolve the error.
Option A:
The Topo to Raster Tool has a limitation of generating an output of 5500 x 5500 cells. When a very small cell size is set for the output raster, this limitation can be reached. Increase the output cell size in the Topo to Raster window to avoid error.
Option B:
If the large size of an input feature class seems to be causing issues, split the data to create smaller processing extents and then run the Topo to Raster tool separately on each of the extents. The separate outputs can be assembled in a mosaic dataset to create a single data source.
Option C:
When using more than two feature classes as Input feature data, create a triangulated irregular network (TIN) or a terrain dataset using the feature classes, and convert the output to a raster dataset.
Related Information
- ArcMap: Topo to Raster
- ArcMap: Creating a mosaic dataset.
- ArcMap: Create TIN
- ArcMap: Building a terrain dataset using the New Terrain wizard
- ArcMap: TIN To Raster
- ArcMap: Terrain To Raster
- BUG-000085466
The Topo to Raster tool returns errors 010235 and 010067转的更多相关文章
- Get Raster Properties获得栅格的信息
Summary Returns the properties of a raster dataset. Usage The property returned will be displayed in ...
- Thinking Clearly about Performance
http://queue.acm.org/detail.cfm?id=1854041 The July/August issue of acmqueue is out now acmqueue is ...
- C++ Core Guidelines
C++ Core Guidelines September 9, 2015 Editors: Bjarne Stroustrup Herb Sutter This document is a very ...
- svn 出现冲突时可以使用 meld . 命令合并。 而git的冲突合并详见内容
1.可以在任意目录使用 git mergetool --tool-help 查看 git 所支持的merge tools. 2.可以使用如下配置去设置merge tool 和 diff tool ...
- LVM实践
[root@ftp:/root] > fdisk -l Disk /dev/sda: 53.7 GB, 53687091200 bytes, 104857600 sectors Units = ...
- 之前工作过程中自定义的代码生成器模版,codesimit
动软代码生成器 和codesmith 5年前的东西,或许有些过时 动软的功能有限,改的也比较简单,已弃. codesmith可定制性强,当时自已改的,提高了团队的整体工作效率. codesmith代码 ...
- ArcGIS空间分析工具
1. 3D分析 1.1. 3D Features toolset 工具 工具 描述 3D Features toolset (3D 要素工具集) Add Z Information 添加 Z 信息 添 ...
- innodb_strict_mode
When innodb_strict_mode is ON, InnoDB returns errors rather than warnings for certain conditions. Th ...
- simplexml_load_string获取xml节点里的属性值
http://stackoverflow.com/questions/14359658/get-xml-attribute-using-simplexml-load-string 问: I am us ...
随机推荐
- 使用管道和cronolog切割日志
安装cronolog git clone https://github.com/fordmason/cronolog ./configure make && make install ...
- vue之给a标签赋值
<li v-for="(bp,index) in bpLists"> <a class="bidPublicityTitle" :href=& ...
- Java 协变返回类型
协变返回类型表示在导出类的被覆盖方法可以返回基类方法的返回类型的某种导出类型 //: polymorphism/covarianreturn.java package object; class Gr ...
- Codeforces 219C Color Stripe(思维+字符串)
题目链接:http://codeforces.com/problemset/problem/219/C 题目大意: 给出一个字符串,只包含k种字符,问最少修改多少个字符(不增长新的种类)能够得到一个新 ...
- Servlet发送Http请求
今日遇到一个需求,android注册,短信验证码功能. android请求我服务端,我请求tosms.cn发送验证码短信给android,于是需要在Servlet中发送Http请求 package o ...
- Vue 动态组件渲染问题分析
fire 读在最前面: 1.本文适用于有一定基础的vue开发者,需要了解基本的vue渲染流程 2.本文知识点涉及vue构造器以及选项策略合并.<component> 渲染逻辑 问题描述: ...
- SqlServer Case when then用法总结
SELECT d.DicName , --DevelopMode ISNULL(NULL,NULL) , --Orgid b.FullName , --Areid c.DicName , --Inve ...
- IntelliJ IDEA 设置Output 窗口字体大小
Settings——>Editor——>Colors&Fonts——>Console Font 如图: 字体调好了以后使用起来眼睛就轻松多了
- zoj 3809 枚举水题 (2014牡丹江网赛 A题)
题目大意:给出一列取样的几个山的高度点,求山峰有几个? Sample Input 291 3 2 4 6 3 2 3 151 2 3 4 5Sample Output 30 # include < ...
- ps -aux与ps -ef
ps -aux与ps -ef这两个命令显示的结果是差不多的. 不同之处就是显示风格不同,前者是BSD风格,后者SYSTEM V(其实我不太明白这尼玛风格是什么跟什么,我看起来都差不多啊) 然后重要的不 ...