LandXML 转 TIN (3D Analyst)
摘要
此工具将一个或多个不规则三角网 (TIN) 表面从 LandXML 文件导入到输出 ESRI TIN。
用法
-
选中输入 LandXML 文件时,“要导入的 TIN”参数将使用 LandXML 文件中的所有 TIN 表面进行填充。
LandXML 文件中的约束型 Delaunay TIN 将创建为约束型 Delaunay TIN。
-
要从 LandXML 文件导出多个 TIN 时,将迭代基本名称并按照以下方式定义输出 TIN 的名称:<basename>、<basename>2、<basename>3,以此类推。如果已存在 <basename>,该工具将不能写入任何内容。如果不存在 <basename> 但存在 <basename>2,该工具将创建 <basename> 和 <basename>2_1,而不是 <basename>2。
在脚本模式下,为方便使用,将采用简短形式(仅编号或仅名称)来指定 tinnames 参数内部的名称。而非 "1. Site0445; 2. <unnamed>; 3. <unnamed>; 4. Site_09” ,可指定"1;2;3;4" 或者“Site0445; Site_09;2;3”。<未命名> 关键字无法供其自身使用,因为 TIN 必须唯一标识。
语法
参数 | 说明 | 数据类型 |
in_landxml_path |
输入 LandXML 文件。 | File |
out_tin_folder |
将要在其中创建 TIN 的文件夹。 | Folder |
tin_basename |
输出 TIN 的名称。 | String |
tinnames (可选) |
针对包含多个 TIN 的 LandXML 文件,指定所要导入的 TIN。 每个 TIN 可通过一个名称(例如,“Tin01”)或其在可用 LandXML TIN 列表中的位置(例如,1 指定第一个 TIN)指定。要导入的 TIN 列表可输入为以分号分隔的字符串(例如,"1. Tin01; 2. Tin02”),一系列字符串(例如,["1. Tin01", "2. Tin02"]),或一系列表示所需 TIN 位置的数值(例如, [1, 2, 3]). | String |
代码示例
The following sample demonstrates the use of this tool in the Python window:
import arcpy from arcpy import env arcpy.CheckOutExtension("3D") env.workspace = "C:/data" arcpy.LandXMLToTin_3d("surfaces.xml", "TINs", "_", "1;2")
The following sample demonstrates the use of this tool in a stand-alone Python script:
'''**************************************************************************** Name: LandXMLToTin Example Description: This script demonstrates how to use the ListFiles method to collect all LandXML (*.xml) files in a workspace as input for the Import3DFiles tool. ****************************************************************************''' # Import system modules import arcpy from arcpy import env import exceptions, sys, traceback try: # Obtain a license for the ArcGIS 3D Analyst extension arcpy.CheckOutExtension("3D") # Set environment settings env.workspace = "C:/data" # Use ListFiles method to grab all xml files (assumedly LandXML files) landList = arcpy.ListFiles("*.xml") if landList: for landFile in landList: # Set Local Variables outputFolder = "TINs" # The folder that the TINs will be created in outputBase = "Madagascar_" # Base name will be applied to all output TINs grab = "1" # TIN selection can be chosen by enumerated values (e.g. 1;2) # Execute Import3DFiles arcpy.LandXMLToTin_3d(landFile, outputFolder, outputBase, grab) print "Completed creating TIN(s) from {0}.".format(landFile) else: "There are no xml files in {0}.".format(env.workspace) except arcpy.ExecuteError: print arcpy.GetMessages() except: # Get the traceback object tb = sys.exc_info()[2] tbinfo = traceback.format_tb(tb)[0] # Concatenate error information into message string pymsg = 'PYTHON ERRORS:\nTraceback info:\n{0}\nError Info:\n{1}'\ .format(tbinfo, str(sys.exc_info()[1])) msgs = 'ArcPy ERRORS:\n {0}\n'.format(arcpy.GetMessages(2)) # Return python error messages for script tool or Python Window arcpy.AddError(pymsg) arcpy.AddError(msgs)