3D レイヤ → マルチパッチ フィーチャクラス(Layer 3D to Feature Class) (3D Analyst)
サマリ
3D プロパティが定義されたフィーチャ レイヤをマルチパッチ フィーチャクラスにエクスポートします。
使用法
-
3D マーカーでシンボル表示されているポイントなど、レンダリングがマルチパッチとして保存できるフィーチャだけが変換されます。3D プロパティを保持しないため、テクスチャ塗りつぶしシンボルも ArcMap レイヤもサポートされていません。
-
たとえば次のような、特定の 3D プロパティのみが適用されます。
- ポイントに割り当てられた 3D シンボル
- ラインに割り当てられた 3D シンボル
- ポリゴンに適用された立ち上げ
- 立ち上げなしの Z 値付きポリゴン
- マルチパッチに割り当てられたテクスチャ ダウンサンプリング
-
ArcGlobe のドレープ レイヤはサポートされていません。ドレープ サーフェスは動的な性質を持つため、高さ値が維持されません。
-
テクスチャ塗りつぶしシンボルはサポートされていません。テクスチャのように、レイヤ内のフィーチャが制限付きプロパティを持つ 3D マーカー シンボルを使用している場合、そのフィーチャは出力に追加されません。
注意:3D プロパティを持つフィーチャ レイヤはほとんどのビジュアライゼーション アプリケーションでうまく処理できるため、マルチパッチに変換する必要はありません。ただし、結果のマルチパッチを使用してサードパーティのモデル化ソフトウェアでさらに編集する場合や、マルチパッチが大きいために ArcGlobe 内でキャッシュ レイヤとして使用される場合は、レイヤをマルチパッチに変換すると特に便利です。
構文
パラメータ | 説明 | データ タイプ |
in_feature_layer |
3D プロパティが定義された入力フィーチャ。 | Feature Layer |
out_feature_class |
出力マルチパッチ フィーチャクラス。 | Feature Class |
group_field (オプション) |
同じマルチパッチ フィーチャとしてまとめられるためのフィーチャを識別する入力フィーチャクラス内のフィールド。出力の属性は入力レコードのいずれかに設定されます。 | Field |
コードのサンプル
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.Layer3DToFeatureClass_3d("Points_3D.lyr", "Test.gdb/trees")
The following sample demonstrates the use of this tool in a stand-alone Python script:
'''**************************************************************************** Name: Layer3DToFeatureClass Example Description: This script demonstrates how to use the Layer3DToFeatureClass tool to create multipatches from all layers in a target workspace. The layer files are assumed to have been saved wtih 3D rendering from ArcScene. ****************************************************************************''' # Import system modules import arcpy from arcpy import env import exceptions, sys, traceback try: # Obtain a license for the ArcGIS 3D Analyst extension arcpy.CheckOutExtension("3D") # Set environment settings env.workspace = "C:/data" # Use the ListFiles method to identify all layer files in workspace if arcpy.ListFiles("*.lyr"): for lyrFile in arcpy.ListFiles("*.lyr"): # Set Local Variables outFC = "Test.gdb/{0}".format(lyrFile[:-4]) #Strips '.lyr' from name #Execute Layer3DToFeatureClass arcpy.Layer3DToFeatureClass_3d(file, outFC) else: "There are no layer files in {0}.".format(env.workspace) 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)