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

サマリ

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

使用法

構文

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

The input terrain dataset.

Terrain Layer
terrain_feature_class

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

Feature Layer
in_point_features

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

Feature Layer
polygon_features_or_extent
(オプション)

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

Feature Layer; Extent

コードのサンプル

ReplaceTerrainPoints(テレイン ポイントの置換)の例 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.ReplaceTerrainPoints_3d("sample.gdb/featuredataset/terrain", "points_old", 
                            "sample.gdb/featuredataset/terrain/pts_new")
ReplaceTerrainPoints(テレイン ポイントの置換)の例 2(スタンドアロン スクリプト)

The following sample demonstrates the use of this tool in a stand-alone Python script:

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

環境

関連項目

ライセンス情報

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

7/10/2012