ラスタ → TIN(Raster to TIN) (3D Analyst)

サマリ

ラスタを TIN データセットに変換します。

[ラスタ → TIN(Raster to TIN)] の仕組みの詳細

Raster to TIN

使用法

構文

RasterTin_3d (in_raster, out_tin, {z_tolerance}, {max_points}, {z_factor})
パラメータ説明データ タイプ
in_raster

The input raster.

Raster Layer
out_tin

The output TIN dataset.

TIN
z_tolerance
(オプション)

入力ラスタの高さと出力 TIN の高さの最大許容差(Z 単位)。デフォルトでは、Z 許容値は入力ラスタの Z 範囲の 1/10 です。

Double
max_points
(オプション)

プロセスが終了するまでに、TIN に追加されるポイントの最大数。デフォルトでは、プロセスはすべてのポイントが追加されるまで継続します。

Long
z_factor
(オプション)

作成された TIN データセットでラスタの高さの値を乗算する係数これは通常、Z 単位から XY 単位に変換する場合に使用されます。

Double

コードのサンプル

RasterToTIN(ラスタ → TIN)の例 1(Python ウィンドウ)

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(ラスタ → TIN)の例 2(スタンドアロン スクリプト)

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

環境

関連項目

ライセンス情報

ArcView: 必須 3D Analyst
ArcEditor: 必須 3D Analyst
ArcInfo: 必須 3D Analyst

7/10/2012