ポリゴン体積(Polygon Volume) (3D Analyst)
サマリ
ポリゴンとテレインまたは TIN サーフェス間の体積と表面積を計算します。
使用法
-
計算は、重なり合う入力ポリゴンと TIN またはテレイン データセット サーフェスの部分に対してのみ実行されます。
最初に、各ポリゴン境界とサーフェス内挿ゾーンとのインターセクト処理が行われます。これによって、これら 2 つに共通する領域(重なり部分)が特定されます。続いて、共通するポリゴン内に存在するすべての三角形と部分について、体積と表面積が計算されます。
この体積は、選択したサーフェス部分から、[高さフィールド] パラメータで指定した高さにある水平面までの立体領域を表します。
- [上] - 水平面からサーフェス下側までの体積が計算されます。
- [下] - 水平面からサーフェス上側までの体積が計算されます。サーフェスの同じ部分の表面積も計算されます。
構文
パラメータ | 説明 | データ タイプ |
in_surface |
入力テレインまたは TIN サーフェス | Tin Layer; Terrain Layer |
in_feature_class |
入力ポリゴン フィーチャクラス。 | Feature Layer |
in_height_field |
体積計算の判定に使用される参照面の高さを定義する、ポリゴンの属性テーブルのフィールド。 | String |
reference_plane (オプション) |
体積および表面積の計算方法を決定します。
| String |
out_volume_field (オプション) |
出力のフィールドの名前には、解析で計算された体積が入ります。デフォルトは Volume です。 | String |
surface_area_field (オプション) |
出力のフィールドの名前には、解析で計算された表面積が入ります。デフォルトは SArea です。 | String |
pyramid_level_resolution (オプション) |
The z-tolerance or window size resolution of the terrain pyramid level that will be used by this tool. The default is 0, or full resolution. | Double |
コードのサンプル
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.PolygonVolume_3d("sample.gdb/featuredataset/terrain", "polygon.shp", "<None>", "ABOVE", "Volume", "SArea", "5")
The following sample demonstrates the use of this tool in a stand-alone Python script:
'''**************************************************************************** Name: PolygonVolume Example Description: This script demonstrates how to use the PolygonVolume tool. ****************************************************************************''' # Import system modules import arcpy from arcpy import env # Obtain a license for the ArcGIS 3D Analyst extension arcpy.CheckOutExtension("3D") # Set environment settings env.workspace = "C:/data" # Set Local Variables inSurface = "sample.gdb/featuredataset/terrain" inPoly = "floodplain_100.shp" zField = "Height" refPlane = "BELOW" volFld = "Volume" sAreaFld = "SArea" #Execute PolygonVolume arcpy.PolygonVolume_3d(inSurface, inPoly, zField, refPlane, volFld, sAreaFld)