調整の適用(Apply Adjustments) (データの管理)

ライセンス レベル:BasicStandardAdvanced

サマリ

モザイク データセット アイテムに地理調整値を適用します。このツールは、[調整値の計算(Compute Adjustment)] ツールからのソリューション ファイルを使用します。

このツールは、地理調整値を元の位置に戻すこともできます。

使用法

構文

ApplyAdjustments_management (in_mosaic_dataset, adjustment_mode, {input_solution_table})
パラメータ説明データ タイプ
in_mosaic_dataset

調整する入力モザイク データセット

Mosaic Layer; Mosaic Dataset
adjustment_mode

ソリューション テーブルを使用してモザイク データセットを調整するか、調整値を適用せずにモザイク データセットをリセットするかを選択します。

  • ADJUST入力ソリューション テーブルを使用してモザイク データセットを調整します。
  • RESET調整値を適用せずに、モザイク データセットをリセットします。
String
input_solution_table
(オプション)

モザイク データセットを調整する場合は、入力ソリューション フィーチャクラスを指定する必要があります。

Feature Class; Feature Layer

コードのサンプル

ApplyAdjustments(調整値の適用)の例 1(Python ウィンドウ)

以下は、ApplyAdjustments(調整値の適用)ツールを実行する Python サンプルです。

import arcpy
arcpy.ApplyAdjustments_management("\\serv\folder\applyAdjust.gdb\md01", 
                                  "ADJUST", "\\serv\folder\applyAdjust.gdb\sol")
ApplyAdjustments(調整値の適用)の例 2(スタンドアロン スクリプト)

ApplyAdjustments(調整値の適用)ツールの Python スクリプトのサンプルを次に示します。

#===========================
#Apply Adjustments
'''Usage: ApplyAdjustments_management(in_mosaic_dataset, ADJUST | RESET, {input_solution_table})
'''

try:
    import arcpy
    arcpy.env.workspace = "C:/Workspace"

    #Apply spatial adjustment using solution table
    mdname = "applyadjust.gdb/md"
    mode = "ADJUST"
    solutiontbl = "C:/workspace/solutiontbl.dbf"

    arcpy.ApplyAdjustments_management(mdname, mode, solutiontbl)
    
    #Reset spatial adjustment
    mdname = "applyadjust.gdb/md"
    mode = "RESET"
    solutiontbl = ""

    arcpy.ApplyAdjustments_management(mdname, mode, solutiontbl)    

except:
    print "Apply Adjustments example failed."
    print arcpy.GetMessages()

環境

このツールはジオプロセシング環境を使用していません

関連トピック

ライセンス情報

ArcGIS for Desktop Basic: ×
ArcGIS for Desktop Standard: ○
ArcGIS for Desktop Advanced: ○
9/14/2013