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

ライセンス レベル:BasicStandardAdvanced

サマリ

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

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

Raster to TIN

使用法

構文

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

入力ラスタ。

Raster Layer
out_tin

出力 TIN データセット。

TIN
z_tolerance
(オプション)

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

Double
max_points
(オプション)

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

Long
z_factor
(オプション)

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

Double

コードのサンプル

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

次のサンプルは、Python ウィンドウでこのツールを使用する方法を示しています。

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

次のサンプルは、スタンドアロン Python スクリプトでこのツールを使用する方法を示しています。

'''*********************************************************************
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

環境

関連トピック

ライセンス情報

ArcGIS for Desktop Basic: 次のものが必要 3D Analyst
ArcGIS for Desktop Standard: 次のものが必要 3D Analyst
ArcGIS for Desktop Advanced: 次のものが必要 3D Analyst
7/28/2014