Workspace To New Raster Catalog (Samples)
サマリ
Creates a new raster catalog and loads all the raster datasets in the input workspace, or geodatabase, to the raster catalog. The spatial reference of both the raster column and the geometry column are taken from the first raster dataset in the input workspace. The x,y domain of the geometry column is calculated with the union extents of all the raster dataset inputs. There must be a spatial reference attached to the raster datasets for the tool to run.
使用法
-
The input workspace, or geodatabase, should contain all the raster datasets you put into the raster catalog.
-
There must be a spatial reference attached to the raster datasets for the tool to run.
-
ジオデータベースのラスタ カタログ内のラスタ データセットは、ジオデータベースで管理する方法と管理しない方法の 2 通りの方法で扱うことができます。ラスタ カタログをジオデータベースで管理すると、ラスタ データセットはジオデータベース内に格納されます。カタログから行を削除すると、ジオデータベースから行が削除されます。ラスタ カタログをジオデータベースで管理しない場合は、ラスタ カタログの行とラスタ データセットとの接続ポインタは 1 つだけです。Unmanaged ラスタ カタログに読み込まれるラスタ データセットはすべてディスク上のファイルでなければなりません。ジオデータベース ラスタ データセットは、Managed ラスタ カタログにのみ読み込むことができます。
-
ArcSDE ジオデータベースにラスタ カタログを作成する場合、新しいラスタ カタログ名にはスペースを含めることができません。単語を区切るには、アンダースコアを使用します。
-
このサンプル ツールは Python を使用して作成されました。このコードを表示して編集し、独自のスクリプトを作成することができます。
-
ラスタ解析環境設定は、このツールでは有効ではありません。
構文
パラメータ | 説明 | データ タイプ |
input_workspace |
入力ワークスペースは、ディレクトリ、パーソナル ジオデータベース、ファイル ジオデータベース、または ArcSDE ジオデータベースのいずれかです。 | Folder | Workspace |
output_location |
The output location is the geodatabase where the new raster catalog will be created. | Folder | Workspace |
raster_catalog_name |
作成するラスタ カタログの名前。 | String |
configuration_keyword (オプション) |
ファイル ジオデータベースおよび ArcSDE ジオデータベースの格納パラメータ(コンフィグレーション)を指定します。パーソナル ジオデータベースは、コンフィグレーション キーワードを使用しません。 ArcSDE コンフィグレーション キーワードは、データベース管理者によって設定されます。 | String |
management_type (オプション) |
ラスタ カタログ内のラスタ データセットは、(ジオデータベースで)管理する方法と管理しない方法の 2 通りの方法で管理できます。
| String |
コードのサンプル
import arcgisscripting
gp = arcgisscripting.create()
gp.WorkspaceToNewRasterCatalog_samples("D:\\temp\\tempws", "Database Connections\\raster.sde", "wrksp_to_new_rc", "#", "Managed")