イレース(Erase) (解析)

サマリ

イレース フィーチャのポリゴンを入力フィーチャに重ねることによって、新しいフィーチャクラスを作成します。入力フィーチャにイレース フィーチャを重ね合わせ、イレース フィーチャ以外の部分だけが出力フィーチャクラスにコピーされます。

Erase illustration

使用法

構文

Erase_analysis (in_features, erase_features, out_feature_class, {cluster_tolerance})
パラメータ説明データ タイプ
in_features

入力フィーチャクラスまたはレイヤ。

Feature Layer
erase_features

入力内の重なるフィーチャ部分を削除するために使用されるフィーチャ。

Feature Layer
out_feature_class

イレース フィーチャと重ならない入力フィーチャだけを含むフィーチャクラス。

Feature Class
cluster_tolerance
(オプション)

すべてのフィーチャ座標(ノードと頂点)の最短距離、および X方向、Y 方向、XY 方向に座標を移動できる距離。

Linear unit

コードのサンプル

イレースの例(Python ウィンドウ)

次の Python ウィンドウ スクリプトは、イミディエイト モードでイレース関数を使用する方法を示しています。

import arcpy
from arcpy import env
env.workspace = "C:/data/data/gdb"
arcpy.Erase_analysis(r'redlands.gdb\rdlswells\well',r'redlands.gdb\rdlsfloodzones\flood',r'redlands.gdb\wellsoutside_flood','#')
イレースの例(スタンドアロン スクリプト)

幹線道路から大きな影響を受けている領域を除外した、植生の領域を検出します。

# Name: Erase.py
# Description: Find areas of suitable vegetation which exclude areas heavily impacted by major roads
# Author: ESRI

# import system modules 
import arcpy
from arcpy import env

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

# Select suitable vegetation patches from all vegetation
veg = "vegtype"
suitableVeg = "C:/output/Output.gdb/suitable_vegetation"
whereClause = "HABITAT = 1" 
arcpy.Select_analysis(veg, suitableVeg, whereClause)

# Buffer areas of impact around major roads
roads = "majorrds"
roadsBuffer = "C:/output/Output.gdb/buffer_output"
distanceField = "Distance"
dissolveField = "Distance"
arcpy.Buffer_analysis(roads, roadsBuffer, distanceField, “FULL”, “ROUND”, “LIST”, dissolveField)

# Erase areas of impact around major roads from the suitable vegetation patches
eraseOutput = "C:/output/Output.gdb/suitable_vegetation_minus_roads"
xyTol = "1 Meters"
arcpy.Erase_analysis(suitableVeg, roadsBuffer, eraseOutput, xyTol)

環境

関連項目

ライセンス情報

ArcView: いいえ
ArcEditor: いいえ
ArcInfo: はい

7/10/2012