セル統計(Cell Statistics) (Spatial Analyst)

サマリ

複数のラスタからセルごとに統計情報を計算します。

使用できる統計情報は、最頻値、最大値、平均値、中央値、最小値、最少頻値、範囲、標準偏差、合計、および種類です。

[セル統計(Cell Statistics)] ツールの仕組みの詳細

Cell Statistics - Sum illustration
OutRas = CellStatistics([InRas1, InRas2, InRas3], "SUM", "DATA")

使用法

構文

CellStatistics (in_rasters_or_constants, {statistics_type}, {ignore_nodata})
パラメータ説明データ タイプ
in_rasters_or_constants
[in_raster_or_constant,...]

[解析] ウィンドウでセルごとに統計情報を計算する入力ラスタのリスト。

数値を入力として使用できます。しかし、セル サイズと範囲を最初に環境で設定しておく必要があります。

Raster Layer | Constant
statistics_type
(オプション)

計算する統計情報の種類。

  • MEAN 入力の平均値を計算します。
  • MAJORITY 入力の最頻値(最も頻繁に出現する値)を求めます。

  • MAXIMUM 入力の最大値を求めます。
  • MEDIAN 入力の中央値を計算します。
  • MINIMUM 入力の最小値を求めます。
  • MINORITY 入力の最少頻値(出現する数が最も少ない値)を求めます。

  • RANGE 入力の範囲(最大値と最小値の差)を計算します。
  • STD 入力の標準偏差を計算します。
  • SUM 入力の合計値(すべての値の合計)を計算します。
  • VARIETY 入力の種類(個別値の数)を計算します。
String
ignore_nodata
(オプション)

統計計算で NoData 値を無視するかどうかを示します。

  • DATA 統計値の計算にデータ値を持つセルだけを使用します。ある位置に NoData 値が存在する場合、NoData 値は無視されます。出力値の計算に、データ値を持つセルだけを使用します。
  • NODATA 統計値の計算に値が NoData のセルを含む各位置のすべての入力セルを使用します。
Boolean

リターン

名前説明データ タイプ
out_raster

出力ラスタ。

値は、指定された統計情報の種類を入力ラスタに適用することで求められます。

Raster

コードのサンプル

CellStatistics(セル統計)の例 1(Python ウィンドウ)

次の例では、複数の入力 Grid ラスタの標準偏差をセルごとに計算し、結果を IMG ラスタとして出力しています。

import arcpy
from arcpy import env
from arcpy.sa import *
env.workspace = "C:/sapyexamples/data"
outCellStats = CellStatistics(["degs", "negs", "cost"], "STD", "DATA")
outCellStats.save("C:/sapyexamples/output/outcellstats.img")
CellStatistics(セル統計)の例 2(スタンドアロン スクリプト)

次の例では、複数の入力 Grid ラスタの標準偏差をセルごとに計算し、結果を Grid ラスタとして出力しています。

# Name: CellStatistics_Ex_02.py
# Description: Calculates a per-cell statistic from multiple rasters
# 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
inRaster01 = "degs"
inRaster02 = "negs"
inRaster03 = "cost"

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

# Execute CellStatistics
outCellStatistics = CellStatistics([inRaster01, inRaster02, inRaster03], "RANGE", "NODATA")

# Save the output 
outCellStatistics.save("C:/sapyexamples/output/cellstats")

環境

関連項目

ライセンス情報

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

7/10/2012