Arcgis10.4调用intel quick sync转码export转EXCEL(或txt)失败

Quick Export&Help | ArcGIS for Desktop
Quick Export
Available with Data Interoperability license.
SummaryConverts one or more input feature classes or feature layers into any format supported by the ArcGIS Data Interoperability extension.UsageThis tool is used to either export data from ArcGIS or as the final step in a model or script where the destination data is nonnative to ArcGIS.This tool creates a default output schema for the format you choose to write. If the output requires schema changes then you should consider using .This tool does not honor the Geoprocessing overwrite setting.This tool is most often used to create non-Esri data formats, but it also can create native Esri formats. You can view all export formats in the Formats Gallery accessible from this tool.
are transformed into line features for output.SyntaxQuickExport_interop (Input, {Output})ParameterExplanationData TypeInput[Input,...]The feature layers or feature classes that will be exported from ArcGIS
Feature LayerOutput(Optional)The format and dataset
to which the data will be exported.If the destination is a file with a well-known file extension, it can be given as-is. For instance, "c:\data\roads.gml".If the destination is not a file, or the file has an unknown extension, the format can be given as part of the argument, separated by a comma. For instance, "MIF,c:\data\". The names for supported formats can be found in the formats gallery, by opening up this tool in dialog mode and clicking the browse button.Additional format-specific parameters can be added after the dataset, separated by a comma. However, the syntax can be complex, so if this is required it is easiest to run the tool using its dialog
and copy the Python syntax from the Results window.Interop Destination DatasetCode Sample# Name: QuickExport_Ex_01.py
# Description: Buffers any layer and exports it to GML.
# Requirements: Data Interoperability Extension
# Import system modules
import arcpy
from arcpy import env
# Check out the Data Interoperability Extension
arcpy.CheckOutExtension(&DataInteroperability&)
# Set local variables
tmp_buffered = &c:/Project/tmp_buffered.shp&
tmp_dissolved = &c:/Project/tmp_dissolved.shp&
output_dataset = &GML2,c:/data/buffered.gml&
input_features = &C:/Project/roads.shp&
# Execute Buffer
arcpy.Buffer_analysis(input_features, tmp_buffered, &10.000000 Meters&, &FULL&, &ROUND&, &NONE&, &&)
# Execute Dissolve
arcpy.Dissolve_management(tmp_buffered, tmp_dissolved, &&, &&)
# Execute Quick Export
arcpy.QuickExport_interop(tmp_dissolved, output_dataset)
EnvironmentsLicensing InformationArcGIS for Desktop Basic: Requires Data InteroperabilityArcGIS for Desktop Standard: Requires Data InteroperabilityArcGIS for Desktop Advanced: Requires Data InteroperabilityRelated Topics&准备工具:arcgis软件(arcgis下载地址:)& 下载完成后解压,会看到三个文件夹,如下图:& 第一步:安装licensemanager& 打开licensemanager文件,点击setup.exe运行安装,如下图:& &安装完成后,启动licensemanager程序,暂时关闭服务,如下图:& 第二步:复制破解文件夹里边的破解文件:【Service.txt和ArcGIS.exe】替换licensemanager安装好目录下bin目录下的相同文件,如图:&第三步:安装ARCGIS10.2,打开解压文件夹,点击setup.exe,开始安装ARCGIS,如下图:& 【注意】:安装完成后,点击完成会弹出一个ArcGIS Administrator窗口,不用管它,直接关闭!!!&点击完成,随后弹出继续中文包安装,点击安装即可&第四步,安装完成后,重新打开licensemanager,启动服务,然后点击【重新读取许可】如下图:& 重新获取成功后,打开ArcGIS Administrator,选择【Arcinfo浮动版】,下边输入localhost,如图红色框出部分。& &安装成功了。打开ArcMap10.2,如图ArcGIS实践教程(3)ArcMap导入Excel属性数据
本文介绍从外部EXCEL文件导入ArcMap图层属性的方法。
在使用ArcGIS做相关分析时候经常需要一些外部的属性数据,比如本文所使用的全国各省份的人口、GDP数据,我只有全国各省的shp面数据,但其中并不包含相关的属性数据,比如人口、GDP等等。这时候就需要从外部导入数据,而最常见的方式就是导入外部EXCEL数据了。具体方法如下。
1.格式化外部数据
这是比较关键的一步,必须保证外部的数据可用准确,才能正常的导入ArcMap中。
首先你要确定的是外部数据通过哪种方式和图层数据匹配起来,比如外部数据的ID和图层的ID属性是对应的,或者名称是一一对应的(本文便是使用这种方法)。所以在将Excel数据导入ArcMap之前一定要检查数据能否匹配。
2.导入Excel数据
将Excel数据导入到当前的文档中,可以直接拖放,也可以右击添加数据。
3.关联数据
这是比较关键的一步,在原来省份图层上右击,选择连接和关联--连接
在弹出的对话框中设置图层和Excel字段的对应关系,如图:
为了保证正确,可以点击下面的验证连接来校验数据。
4.成功导入属性数据
这时候使用,就可以查看导入的属性信息了。
如果本文对你有所帮助,欢迎对我们团队进行打赏捐助,让我们在传播3S的路上可以走得更远。
GIS爱好者,学GIS,更爱玩GIS。
如您有疑问,可在文末留言,或到QQ群提问。
本站QQ群(一):
本站QQ群(二):
微信公众号:malagis,扫描右边二维码直接关注。ArcGIS10.0 问题集锦~ - 武汉大学GIS的日志,人人网,武汉大学GIS的公共主页
毕业季,一直外出,比较忙,有没有人有意向管理本主页?有的请留言。
ArcGIS10.0 问题集锦~
ArcGIS10.0 问题集锦
1、ArcGIS中如何填充透明图斑颜色?
http://bbs.3s001.com/thread--2.html
2、打开ArcMap后加载tif文件提示出错怎么办?
http://bbs.3s001.com/thread--2.html
3、ArcGIS10.0符号化辅助软件FontCreator字体编辑下载
http://bbs.3s001.com/thread--2.html
4、在ArcGIS中如何将lyr和shap文件转换为栅格?
http://bbs.3s001.com/thread--2.html
5、ArcGIS中如何改变tif图片颜色?
http://bbs.3s001.com/thread--2.html
6、ArcGIS投影中的区别?
http://bbs.3s001.com/thread--3.html
7、ArcGIS中如何把img图层文件转成tif图层文件?
http://bbs.3s001.com/thread--3.html
8、安装ArcGIS10.0后为什么不能添加TIF文件?
http://bbs.3s001.com/thread--3.html
9、如何解决磁盘空间不足,无法访问ArcGIS
http://bbs.3s001.com/thread--4.html
10、1:5千,1:1万地形图图式
http://bbs.3s001.com/thread-.html
11、在ArcGIS10.0中如何改变线方向?
http://bbs.3s001.com/thread--5.html
12、ArcGIS10.0 中如何将excel格式和dbf格式互转 http://bbs.3s001.com/thread--1.html
13、问题:ArcGIS图层控制面板(TOC)不见了?
http://bbs.3s001.com/thread--6.html
14、ArcGIS10_0 破解安装了为什么还是不能读取许可服务的问题
http://bbs.3s001.com/thread--8.html
15、ArcGIS中如何开启捕捉功能?
http://bbs.3s001.com/thread--1.html
16、ArcGIS中如何打断组合成的线要素?
http://bbs.3s001.com/thread--1.html
17、在ArcGIS中如何进行属性标注?
http://bbs.3s001.com/thread--1.html
18、ArcGIS中如何让相近的点标注都显示?
http://bbs.3s001.com/thread--1.html
19、ArcGIS中如何区分coverage格式和shape格式?
http://bbs.3s001.com/thread--1.html
20、ArcGIS中如何在属性表中增加字段?
http://bbs.3s001.com/thread--1.html
21、ArcGIS中如何正确提取属性值?
http://bbs.3s001.com/thread--1.html
22、ArcView3.3中如何添加公里网?
http://bbs.3s001.com/thread--1.html
23、ArcGIS中如何显示所有线或面的节点?
http://bbs.3s001.com/thread--1.html
24、ArcView 3.3安装...
阅读(3517)|
人人移动客户端下载如何用arcgis将shp文件的坐标点导出excel_百度知道
如何用arcgis将shp文件的坐标点导出excel
我有更好的答案
具体操作步骤如下:(1)arctoolbox→Data Management tools→Features→Feature Vertices to points;(2)出现feature vertices to points对话框:input features输入线矢量,output feature class输入马上会输出的点矢量名,point type(optional)选择all;(3)点击ok。2、将点矢量的坐标值(经纬度)输出:(1)arctoolbox→Data Management tools→Features→Add xy coordinates;(2)出现Add xy coordinates对话框1、将线矢量转化为点矢量
采纳率:92%
来自团队:
为您推荐:
其他类似问题
换一换
回答问题,赢新手礼包
个人、企业类
违法有害信息,请在下方选择后提交
色情、暴力
我们会通过消息、邮箱等方式尽快将举报结果通知您。

我要回帖

更多关于 intel quick sync转码 的文章

 

随机推荐