3D ラインをマルチパッチでインターセクト(Intersect 3D Line With Multipatch) (3D Analyst)

ライセンス レベル:BasicStandardAdvanced

サマリ

ラインとマルチパッチ フィーチャのジオメトリの交差部分の数を判定して返します。また、交差を表すポイント フィーチャと、そのポイントで切断される入力ラインを表すライン フィーチャを、出力フィーチャクラスに書き込むこともできます。

Intersect 3D Line With Multipatch example

使用法

構文

Intersect3DLineWithMultiPatch_3d (in_line_features, in_multipatch_features, {join_attributes}, {out_point_feature_class}, {out_line_feature_class})
パラメータ説明データ タイプ
in_line_features

マルチパッチ フィーチャと交差するライン フィーチャ。

Feature Layer
in_multipatch_features

ラインが交差するマルチパッチ フィーチャ。

Feature Layer
join_attributes
(オプション)

入力ライン フィーチャの属性が出力フィーチャクラスに維持されるかどうかを定義します。

  • IDS_ONLY 入力ライン フィーチャの属性は出力ライン フィーチャクラスに書き込まれません。これがデフォルトです。
  • ALLすべての入力ライン フィーチャの属性は出力ライン フィーチャクラスに書き込まれます。
String
out_point_feature_class
(オプション)

3D ラインとマルチパッチ間の交差ポイントを表すオプションのフィーチャ。

Feature Class
out_line_feature_class
(オプション)

マルチパッチ フィーチャとの交差ポイントで入力 3D ラインを分割するオプションのライン フィーチャ。

Feature Class

コードのサンプル

Intersect3DLineWithMultipatch(3D ラインをマルチパッチでインターセクト)の例 1(Python ウィンドウ)

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

import arcpy
from arcpy import env

arcpy.CheckOutExtension('3D')
env.workspace = 'C:/data'
arcpy.Intersect3DLineWithMultiPatch_3d('inLine.shp', 'inMultipatch.shp', 
                                     'IDS_ONLY', 'outPts.shp', 'outLine.shp')
Intersect3DLineWithMultipatch(3D ラインをマルチパッチでインターセクト)の例 2(スタンドアロン スクリプト)

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

'''****************************************************************************
Name: Intersect3DLineWithMultiPatch Example
Description: This script demonstrates how to
             use the Intersect3DLine tool.
****************************************************************************'''
# 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
    inLineFC = 'sample.gdb/lines_3d'
    inMP = 'sample.gdb/test_MP'
    # Ensure a unique name is produced for output files
    outPoint = arcpy.CreateUniqueName('OutPt_3DIntersect', 'sample.gdb')
    outLine = arcpy.CreateUniqueName('OutLine_3DIntersect', 'sample.gdb')
    
    # Execute Intersect 3D Line with Multipatch
    arcpy.Intersect3DLineWithMultiPatch_3d(inLineFC, inMP, 'IDS_ONLY', 
                                        outPoint, outLine)

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)

環境

関連トピック

ライセンス情報

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