The Data Access module, arcpy.da, is a Python module for working with data. It allows control of the edit session, edit operation, improved cursor support (including faster performance), functions for converting tables and feature classes to and from NumPy arrays, and support for versioning, replicas, domains, and subtypes workflows.
Data Access classes
Class | Description |
---|---|
ContingentFieldValue | ContingentFieldValue オブジェクトには、条件値に使用されるフィールドのプロパティを記述するプロパティが含まれています。 |
ContingentValue | ContingentValue オブジェクトには、条件値を記述するプロパティが含まれています。 |
DatabaseSequence | DatabaseSequence オブジェクトには、データベース シーケンスを記述するプロパティが含まれています。 |
Domain | Domain オブジェクトには、属性ドメインを記述するプロパティが含まれています。 |
Editor | The Editor class allows the use of edit sessions and operations to manage database transactions. |
InsertCursor |
InsertCursor establishes a write cursor on a feature class or table. InsertCursor can be used to add new rows. |
Replica |
Replica オブジェクトには、レプリカを記述するプロパティが含まれています。 |
SearchCursor | SearchCursor は、フィーチャクラスまたはテーブルから返されるレコードに対して読み取り専用アクセスを設定します。 |
SyncReplica | The SyncReplica object contains properties that describe a replica created through a sync-enabled feature service. Replicas created from non-versioned data with archiving or from branch versioned data are included. |
UpdateCursor | UpdateCursor establishes read-write access to records returned from a feature class or table. |
Version | Version オブジェクトには、バージョンを記述するプロパティが含まれています。 |
Data Access functions
Function | Description |
---|---|
Describe | Describe 関数は、データ タイプ、フィールド、インデックスなどの複数のプロパティを含むディクショナリを返します。 このディクショナリのキーは動的です。つまり、Describe 対象のデータ タイプに応じて、別々のプロパティが使用可能になります。 |
ExtendTable | Joins the contents of a NumPy structured array to a table based on a common attribute field. The input table is updated to contain the fields from the join table. |
FeatureClassToNumPyArray |
フィーチャクラスを NumPy 構造化配列に変換します。 |
ListContingentValues | テーブルの条件値をリストします。 返されるリストを制限するために、フィールド グループ名とサブタイプに検索条件を指定することができます。 |
ListDatabaseSequences | データベース内のデータベース シーケンスをリストします。 |
ListDomains | ジオデータベースに属する属性ドメインをリストします。 |
ListFieldConflictFilters | バージョン対応のフィーチャクラス、テーブル、またはフィーチャ サービス レイヤー内で、フィールド競合フィルターが適用されているフィールドをリストします。 |
ListReplicas |
ワークスペース内のレプリカをリストします。 |
ListSubtypes | テーブルまたはフィーチャクラスのサブタイプのディクショナリを返します。 |
ListVersions | ワークスペース内のバージョンをリストします。 |
NumPyArrayToFeatureClass | NumPy 構造化配列をポイント フィーチャクラスに変換します。 |
NumPyArrayToTable | NumPy 構造化配列をテーブルに変換します。 |
TableToNumPyArray | テーブルを NumPy 構造化配列に変換します。 |
Walk | 上から下または下から上にツリーを操作することによって、ディクショナリ/データベース構造でデータ名を生成します。 各ディレクトリ/ワークスペースから、ディレクト パス、ディレクトリ名、ファイル名の 3 つの組み合わせが得られます。 |