Round Down (Spatial Analyst)

サマリ

ラスタの各セル値の小数点以下の数値を切り捨てた値を返します。

Round Down illustration
OutRas = RoundDown(InRas1)

使用法

構文

RoundDown (in_raster_or_constant)
パラメータ説明データ タイプ
in_raster_or_constant

切り捨てられる入力値。

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

Raster Layer | Constant

リターン

名前説明データ タイプ
out_raster

出力ラスタ。

セル値は、小数点以下の数値を切り捨てて整数値に変換された入力値です。

Raster

コードのサンプル

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

次の例では、入力ラスタの値の小数点以下の数値を切り捨てます。

import arcpy
from arcpy import env
from arcpy.sa import *
env.workspace = "C:/sapyexamples/data"
outRoundDown = RoundDown("gwhead")
outRoundDown.save("C:/sapyexamples/output/outrd")
RoundDown の例 2(スタンドアロン スクリプト)

次の例では、入力ラスタの値の小数点以下の数値を切り捨てます。


# Name: RoundDown_Ex_02.py
# Description: Returns the next lower whole number for each cell in a raster
# 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
inRaster = "gwhead"

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

# Execute RoundDown
outRoundDRaster = RoundDown(inRaster)

# Save the output 
outRoundDRaster.save("C:/sapyexamples/output/outrounddown")

環境

関連項目

ライセンス情報

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

7/10/2012