サマリー
テーブルまたはフィーチャクラスを Apache Arrow テーブルに変換します。
説明
Apache Arrow は、標準的なクロスプラットフォームのメモリ内に保存された列形式のデータであり、ビッグ データ用解析システム間でのデータの効率的な転送に使用されます。 詳細については、「ArcGIS の Apache Arrow」をご参照ください。
構文
TableToArrowTable (in_table, {field_names}, {where_clause}, {geometry_encoding})
パラメーター | 説明 | データ タイプ |
in_table | フィーチャクラス、レイヤー、テーブル、またはテーブル ビュー。 | String |
field_names [field_names,...] | フィールド名のリスト (またはタプル)。 単一フィールドの場合、文字列のリストの代わりに文字列を使用できます。 (デフォルト値は次のとおりです "") | String |
where_clause | 返されるレコードを制限するオプションの式。 WHERE 句と SQL ステートメントの詳細については、「ArcGIS で使用されるクエリ式への SQL リファレンス」をご参照ください。 (デフォルト値は次のとおりです "") | String |
geometry_encoding | Specifies the geometry encoding of the geometry column in the resulting Arrow table.
注意:If no geometry field is specified in the field_names argument or the in_table value is a non-spatial table, this argument will be ignored. In both cases, the resulting Arrow table will not contain a geometry column. (デフォルト値は次のとおりです ESRISHAPE) | String |
データ タイプ | 説明 |
PyArrowTable | 出力 pyarrow.Table。 pyarrow.Table オブジェクト API をご参照ください。 |
コードのサンプル
フィーチャクラスを Arrow テーブルに変換し、データセット内の郡の数をカウントします。
import arcpy
input = r'C:\data\usa.gdb\USA\counties'
arrow_table = arcpy.da.TableToArrowTable(input)
# Get the number of counties in the dataset
count = arcpy.management.GetCount(arrow_table)
print(f"Number of US Counties: {count}")
WKT ジオメトリ エンコーディングを使用して、フィーチャクラスを Arrow テーブルに変換します。
import arcpy
input = r'C:\data\usa.gdb\USA\counties'
arrow_table = arcpy.da.TableToArrowTable(input, geometry_encoding="WKT")