Mod (Spatial Analyst)

サマリ

セル毎に最初のラスタを 2 番目のラスタで除算したときの余り(モジュロ)を算出します。

Mod illustration
OutRas = Mod(InRas1, InRas2)

使用法

構文

Mod (in_raster_or_constant1, in_raster_or_constant2)
パラメータ説明データ タイプ
in_raster_or_constant1

分子となる入力。

他のパラメータでラスタが指定されている場合、数値をこのパラメータの入力として使用できます。両方の入力で数値を指定するには、セル サイズと範囲を最初に環境で設定しておく必要があります。

Raster Layer | Constant
in_raster_or_constant2

分母となる入力。

他のパラメータでラスタが指定されている場合、数値をこのパラメータの入力として使用できます。両方の入力で数値を指定するには、セル サイズと範囲を最初に環境で設定しておく必要があります。

Raster Layer | Constant

リターン

名前説明データ タイプ
out_raster

出力ラスタ。

セル値は、最初の入力を 2 番目の入力で割った余りです。

Raster

コードのサンプル

Mod の例 1(Python ウィンドウ)

次の例では、最初のラスタのセルを 2 番目のラスタのセルで割ったときの余り(モジュロ)を返しています。

import arcpy
from arcpy import env
from arcpy.sa import *
env.workspace = "C:/sapyexamples/data"
outMod = Mod("degs", "negs")
outMod.save("C:/sapyexamples/output/outmod.tif")
Mod の例 2(スタンドアロン スクリプト)

次の例では、最初のラスタのセルを 2 番目のラスタのセルで割ったときの余り(モジュロ)を返しています。

# Name: Mod_Ex_02.py
# Description: Finds the remainder of the first raster when divided by
#              the second raster on a cell-by-cell basis
# Requirements: Spatial Analyst Extension

# Import system modules
import arcpy
from arcpy import env
from arcpy.sa import *

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

# Set local variables
inRaster1 = "degs"
inRaster2 = "negs"

# Check out the ArcGIS Spatial Analyst extension license
arcpy.CheckOutExtension("Spatial")

# Execute Mod
outMod = Mod(inRaster1, inRaster2)

# Save the output 
outMod.save("C:/sapyexamples/output/outmod")

環境

関連項目

ライセンス情報

ArcView: 必須 Spatial Analyst
ArcEditor: 必須 Spatial Analyst
ArcInfo: 必須 Spatial Analyst

7/10/2012