Raster zu TIN (3D Analyst)

Zusammenfassung

Konvertiert ein Raster in ein TIN-Dataset (Triangulated Irregular Network, trianguliertes unregelmäßiges Netzwerk).

Weitere Informationen zur Funktionsweise von "Raster in TIN"

Abbildung

Raster zu TIN

Verwendung

Syntax

RasterTin_3d (in_raster, out_tin, {z_tolerance}, {max_points}, {z_factor})
ParameterErläuterungDatentyp
in_raster

The input raster.

Raster Layer
out_tin

The output TIN dataset.

TIN
z_tolerance
(optional)

Die maximal zulässige Abweichung in Z-Einheiten zwischen der Höhe des Eingabe-Rasters und der des Ausgabe-TIN. Standardmäßig beträgt die Z-Toleranz 1/10 des Z-Wertebereichs des Eingabe-Rasters.

Double
max_points
(optional)

Die maximale Anzahl von Punkten, die dem TIN hinzugefügt werden, bevor der Vorgang beendet wird. Standardmäßig wird der Vorgang so lange durchgeführt, bis alle Punkte hinzugefügt wurden.

Long
z_factor
(optional)

Der Faktor, mit dem die Höhenwerte des Rasters im resultierenden TIN-Dataset multipliziert werden. Dies dient meist zur Umrechnung von Z-Einheiten in XY-Einheiten.

Double

Codebeispiel

RasterToTIN – 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.RasterTin_3d("vermont_ele.tif", "C:/output/TIN_VT", "2", "1000", "1")
RasterToTIN – Beispiel 2 (eigenständiges Skript)

The following sample demonstrates the use of this tool in a stand-alone Python script:

'''*********************************************************************
Name: RasterTin Example
Description: This script demonstrates how to use the 
             RasterTin tool to create a TIN for each IMG raster in the 
             target workspace.
**********************************************************************'''

# Import system modules
import arcpy
from arcpy import env

# Obtain a license for the ArcGIS 3D Analyst extension
arcpy.CheckOutExtension("3D")

# Set environment settings
env.workspace = "C:/data"

try:
    # Create the list of IMG rasters
    rasterList = arcpy.ListRasters("*", "IMG")
    # Loop the process for each raster
    if rasterList:
        for raster in rasterList:
            # Set Local Variables
            zTol = 2
            maxPts = 1500000
            zFactor = 1
            # [:-4] strips the last 4 characters (.img) from the raster name
            outTin = "C:/Output/TIN_" + raster[:-4] 
            print "Creating TIN from " + raster + "."
            #Execute RasterTin
            arcpy.RasterTin_3d(raster, outTIN, zTol, maxPts, zFactor)
        print "Finished."
    else:
        "There are no IMG rasters in the " + env.workspace + " directory."
except Exception as e:
    # Returns any other error messages
    print e.message

Umgebungen

Verwandte Themen

Lizenzinformationen

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

7/10/2012