LandXML in TIN (3D Analyst)

Zusammenfassung

Dieses Werkzeug importiert eine oder mehrere TIN-Oberflächen (Triangulated Irregular Network, trianguliertes unregelmäßiges Netzwerk) aus einer LandXML-Datei in Ausgabe-Esri-TINs.

Verwendung

Syntax

LandXMLToTIN_3d (in_landxml_path, out_tin_folder, tin_basename, {tinnames})
ParameterErläuterungDatentyp
in_landxml_path

Die Eingabe-LandXML-Datei.

File
out_tin_folder

Der Ordner, in dem die TINs erstellt werden.

Folder
tin_basename

Der Name der Ausgabe-TINs.

String
tinnames
(optional)

Gibt die für LandXML-Dateien zu importierenden TINS an, die mehrere TINS enthalten.

Jedes TIN kann durch einen Namen (z. B. "Tin01") oder die Position in der Liste der verfügbaren LandXML-TINs (z. B. 1 für das erste TIN) angegeben werden. Die Liste der zu importierenden TINs kann als durch Semikolons getrennte Zeichenfolge (z. B. "1. Tin01; 2. Tin02"), eine Liste von Zeichenfolgen, (z. B. ["1. Tin01", "2. Tin02"]) oder eine Liste von numerischen Werten, die die Position der gewünschten TINs angeben (z. B. [1, 2, 3]), eingegeben werden.

String

Codebeispiel

LandXMLToTIN – Beispiel 1 (Python-Fenster)

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")
LandXMLToTIN – Beispiel 2 (eigenständiges Skript)

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)

Umgebungen

Verwandte Themen

Lizenzinformationen

ArcView: Erfordert 3D Analyst
ArcEditor: Erfordert 3D Analyst
ArcInfo: Erfordert 3D Analyst

7/10/2012