ファイル ジオデータベースの圧縮解除(Uncompress File Geodatabase Data) (データの管理)

サマリ

ジオデータベースのすべてのコンテンツ、フィーチャ データセットのすべてのコンテンツ、または個別のスタンドアロン フィーチャクラスやテーブルの圧縮を解除します。

使用法

構文

UncompressFileGeodatabaseData_management (in_data, {config_keyword})
パラメータ説明データ タイプ
in_data

圧縮を解除するジオデータベース、フィーチャ データセット、フィーチャクラス、またはテーブル。

Feature Dataset; Table View or Raster Layer; Workspace
config_keyword
(オプション)

データの圧縮を解除した後、データを格納する方法を定義するコンフィグレーション キーワード。

String

コードのサンプル

UncompressFileGeodatabaseData(ファイル ジオデータベースの圧縮を解除)の例(Python ウィンドウ)

次の例は、Python ウィンドウで UncompressFileGeodatabaseData(ファイル ジオデータベースの圧縮を解除)関数を使用する方法を示しています。

 import arcpy
arcpy.env.workspace = "C:/data/"
arcpy.UncompressFileGeodatabaseData_management("london.gdb")
UncompressFileGeodatabaseData(ファイル ジオデータベースの圧縮を解除)の例(スタンドアロン Python スクリプト)

次の例は、スタンドアロン Python スクリプトで UncompressFileGeodatabaseData(ファイル ジオデータベースの圧縮を解除)関数を使用する方法を示しています。

# Name: UncompressFileGeodatabaseData.py
# Description: Use the UncompressFileGeodatabaseData tool to uncompress a geodatabase
# Author: ESRI

# import system modules 
import arcpy, os
from arcpy import env

# Set environment settings
env.workspace = "C:/data"

# Set local variables
geodatabase = "london.gdb"

try:
  # Process: Compress the data
  arcpy.UncompressFileGeodatabaseData_management(geodatabase)

except:
  # If an error occurred while running the tool print the messages
  print arcpy.GetMessages()

環境

関連項目

ライセンス情報

ArcView: はい
ArcEditor: はい
ArcInfo: はい

7/10/2012