ラスタ → TIN(Raster to TIN) (3D Analyst)
図
使用法
-
ラスタから TIN への変換では、ただ単に変換しただけでは本質的に良好なサーフェスは得られません。サーフェス定義と互換性があり、定義を向上するための補助的なデータが必要です。[TIN の編集(Edit TIN)] ツールを使用して、このようなデータを TIN に追加します。
-
デフォルトでは、入力ラスタの高さと出力 TIN の高さの最大許容差は、入力ラスタの Z 範囲の 1/10 です。
-
Win32 で使用できる TIN の最大サイズは 1500 万 ~ 2000 万ノードですが、サイズを数百万に抑えることをお勧めします。入力ラスタが大規模で、Z 許容値の設定が小さい場合は、このサイズを超える可能性があります。サイズで問題が発生する場合は、サブセットの処理を検討してください。
構文
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