コンター リスト(Contour List) (3D Analyst)

サマリ

ラスタ サーフェスから、選択したコンター値のフィーチャクラスを作成します。

コンターの仕組みに関する詳細

使用法

構文

ContourList_3d (in_raster, out_polyline_features, contour_values)
パラメータ説明データ タイプ
in_raster

入力サーフェス ラスタ。

Raster Layer
out_polyline_features

出力コンター ポリライン フィーチャ。

Feature Class
contour_values
[contour_value,...]

コンターを作成する Z 値のリストです。

Double

コードのサンプル

ContourList(コンター リスト)の例 1(Python ウィンドウ)

この例では、Esri Grid ラスタから 3 つの標高値のコンターを作成して、それをシェープファイルとして出力します。

import arcpy
from arcpy import env  
env.workspace = "C:/data"
arcpy.ContourList_3d("elevation", "C:/sapyexamples/output/outcontourlist.shp", 
            "600; 935; 1237.4")
ContourList(コンター リスト)の例 2(スタンドアロン スクリプト)

この例では、Esri Grid ラスタから 3 つの標高値のコンターを作成して、それをシェープファイルとして出力します。

# Name: ContourList_3d_Ex_02.py
# Description: Creates contours or isolines based on a list of contour values.
# Requirements: 3D Analyst Extension

# Import system modules
import arcpy
from arcpy import env

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

# Set local variables
inRaster = "elevation"
contourIntervalList = "600; 935; 1237.4"
outContours = "C:/output/outcontlist.shp"

# Check out the ArcGIS 3D Analyst extension license
arcpy.CheckOutExtension("3D")

# Execute ContourList
arcpy.ContourList_3d(inRaster, outContours, contourIntervalList)

環境

関連項目

ライセンス情報

ArcView: 必須 3D Analyst または Spatial Analyst
ArcEditor: 必須 3D Analyst または Spatial Analyst
ArcInfo: 必須 3D Analyst または Spatial Analyst

7/10/2012