テレイン ポイントの置換 (Replace Terrain Points) (3D Analyst)

サマリー

テレイン データセットで参照されるポイントを、指定されたフィーチャクラスからのポイントに置換します。

使用法

  • テレイン データのソースには、ポイント、マルチポイント、または埋め込みポイントがあります。

  • 置換するポイントは、シングルポイントまたはマルチポイント フィーチャから取得できます。

  • テレイン データセット内のポイントを置換すると、テレイン データセットは無効になります。ポイントまたはマルチポイントを追加した後に、[テレインの構築 (Build Terrain)] を実行します。

パラメーター

ラベル説明データ タイプ
入力テレイン

処理対象のテレイン データセット。

Terrain Layer
入力テレイン データ ソース

ポイントの一部またはすべてが置換されるテレイン ポイント フィーチャクラスの名前。

String
入力ポイント

テレイン ポイント フィーチャを置換するポイントまたはマルチポイント フィーチャ

Feature Layer
対象地域 (AOI)
(オプション)

オプションの対象エリアを使用して、テレイン ポイントが置換されるエリアの範囲を定義できます。

Feature Layer; Extent

派生した出力

ラベル説明データ タイプ
更新された入力テレイン

更新された入力テレイン。

テレイン レイヤー

arcpy.ddd.ReplaceTerrainPoints(in_terrain, terrain_feature_class, in_point_features, {polygon_features_or_extent})
名前説明データ タイプ
in_terrain

処理対象のテレイン データセット。

Terrain Layer
terrain_feature_class

ポイントの一部またはすべてが置換されるテレイン ポイント フィーチャクラスの名前。

String
in_point_features

テレイン ポイント フィーチャを置換するポイントまたはマルチポイント フィーチャ

Feature Layer
polygon_features_or_extent
(オプション)

オプションの対象エリアを使用して、テレイン ポイントが置換されるエリアの範囲を定義できます。

Feature Layer; Extent

派生した出力

名前説明データ タイプ
derived_out_terrain

更新された入力テレイン。

テレイン レイヤー

コードのサンプル

ReplaceTerrainPoints (テレイン ポイントの置換) の例 1 (Python ウィンドウ)

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

arcpy.env.workspace = "C:/data"
arcpy.ReplaceTerrainPoints_3d("sample.gdb/featuredataset/terrain", "points_old", 
                            "sample.gdb/featuredataset/terrain/pts_new")
ReplaceTerrainPoints (テレイン ポイントの置換) の例 2 (スタンドアロン スクリプト)

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

'''****************************************************************************
Name: ReplaceTerrainPoints Example
Description: This script demonstrates how to use the 
             ReplaceTerrainPoints tool.
****************************************************************************'''

# Import system modules
import arcpy
from arcpy import env

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

# Set Local Variables
InTerrain = "sample.gdb/featuredataset/terrain"
TerrainFCl = "points_old"
InPoints = "sample.gdb/featuredataset/terrain/pts_new"

#Execute ReplaceTerrainPoints
arcpy.ReplaceTerrainPoints_3d(InTerrain, TerrainFCl, InPoints)

ライセンス情報

  • Basic: 次のものが必要 3D Analyst
  • Standard: 次のものが必要 3D Analyst
  • Advanced: 次のものが必要 3D Analyst

関連トピック