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

ライセンス レベル:BasicStandardAdvanced

サマリ

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

使用法

構文

ReplaceTerrainPoints_3d (in_terrain, terrain_feature_class, in_point_features, {polygon_features_or_extent})
パラメータ説明データ タイプ
in_terrain

入力テレイン データセット。

Terrain Layer
terrain_feature_class

ソース データが置換されたテレイン ポイント フィーチャ

Feature Layer
in_point_features

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

Feature Layer
polygon_features_or_extent
(オプション)

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

Feature Layer; Extent

コードのサンプル

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

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

import arcpy
from arcpy import env

arcpy.CheckOutExtension("3D")
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

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

# 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)

環境

関連トピック

ライセンス情報

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