カートグラフィック パーティション(環境設定)

カートグラフィック パーティション環境を反映するツールは、指定した分割ポリゴン フィーチャを基準にして入力フィーチャを分割し、連続した処理を行えるようにします。この処理によって、大きなデータセットで起きる可能性のある、メモリの制限を防ぐことができます。

以下のツールで、カートグラフィック パーティション環境設定が適用されます。

使用に関する注意

ダイアログの構文

分割フィーチャ - ジェネラライズまたは競合解決処理のための大量のデータセットを分割するのに使用するポリゴン フィーチャクラス

スクリプトの構文

arcpy.env.cartographicPartitions = FeatureClass

パラメータ

Explanation

フィーチャクラス

The polygon feature class that will be used to subdivide large datasets for generalization or conflict resolution processing

CartographicPartitions 構文

サンプル スクリプト

import arcpy
from arcpy import env

# Set the cartographic partitions to C:\data\world.gdb\world_partitions
arcpy.env.CartographicPartitions = "C:\data\world.gdb\world_partitions"

関連トピック

9/14/2013