クローズド 3D(Is Closed 3D) (3D Analyst)

サマリ

各フィーチャが空間的体積を完全に取り囲むかどうかを判定するために、マルチパッチ フィーチャを評価します。

使用法

構文

IsClosed3D_3d (in_feature_class)
パラメータ説明データ タイプ
in_feature_class

テスト対象のマルチパッチ フィーチャ。

Feature Layer

コードのサンプル

IsClosed(クローズド 3D)の例 1(Python ウィンドウ)

The following sample demonstrates the use of this tool in the Python window:

import arcpy
from arcpy import env

env.workspace = 'C:/data'
arcpy.IsClosed3D_3d('sample_multipatch.shp')
IsClosed(クローズド 3D)の例 2(スタンドアロン スクリプト)

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

'''****************************************************************************
Name: IsClosed3D Example
Description: This script demonstrates how to use the 
             IsClosed3D tool on all multipatches in a target workspace.
****************************************************************************'''
# Import system modules
import arcpy
import exceptions, sys, traceback
from arcpy import env

try:
    # Obtain a license for the ArcGIS 3D Analyst extension
    arcpy.CheckOutExtension('3D')
    # Set environment settings
    env.workspace = 'C:/data'
    # Set Local Variables
    for fc in arcpy.ListFeatureClasses(): # list features in workspace
        # Determine which features are multipatches
        if arcpy.Describe(fc).shapeType == 'MultiPatch':
            # Execute Is Closed 3D
            arcpy.IsClosed3D_3d(fc)
    

except arcpy.ExecuteError:
    print arcpy.GetMessages()
except:
    # Get the traceback object
    tb = sys.exc_info()[2]
    tbinfo = traceback.format_tb(tb)[0]
    # Concatenate error information into message string
    pymsg = 'PYTHON ERRORS:\nTraceback info:\n{0}\nError Info:\n{1}'\
          .format(tbinfo, str(sys.exc_info()[1]))
    msgs = 'ArcPy ERRORS:\n {0}\n'.format(arcpy.GetMessages(2))
    # Return python error messages for script tool or Python Window
    arcpy.AddError(pymsg)
    arcpy.AddError(msgs)

環境

関連項目

ライセンス情報

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

7/10/2012