ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • ヘルプ
  • Sign Out
ArcGIS Desktop

ArcGIS Online

組織のマッピング プラットフォーム

ArcGIS Desktop

完全なプロ仕様の GIS

ArcGIS Enterprise

エンタープライズ GIS

ArcGIS Developers

位置情報利用アプリの開発ツール

ArcGIS Solutions

各種業界向けの無料のテンプレート マップおよびテンプレート アプリケーション

ArcGIS Marketplace

組織で使えるアプリとデータを取得

  • ドキュメント
  • サポート
Esri
  • サイン イン
user
  • マイ プロフィール
  • サイン アウト

ArcMap

  • ホーム
  • はじめに
  • マップ
  • 解析
  • データ管理
  • ツール
  • エクステンション

FuzzyGaussian

Spatial Analyst のライセンスで利用可能。

  • 概要
  • ディスカッション
  • 構文
  • プロパティ
  • コードのサンプル

概要

Defines a fuzzy membership function through a Gaussian or normal distribution based around a user-specified midpoint (which is assigned a membership of 1) with a defined spread decreasing to zero.

ディスカッション

The tool that uses the FuzzyGaussian object: Fuzzy Membership.

The equation for the fuzzy Gaussian function is:

Gaussian fuzzy function equation

The inputs to the equation are f1, the spread, and f2, the midpoint. Increasing the spread causes the fuzzy membership curve to become steeper.

The Gaussian function is useful if the membership is near a specific value.

The input values can be either integer or floating point positive values.

Gaussian is similar to the Near function but has a more narrow spread.

Fuzzy Gaussian graph
Variations of the fuzzy Gaussian membership function.

構文

 FuzzyGaussian (midpoint, spread)
パラメーター説明データ タイプ
midpoint

The user-defined value with a fuzzy membership of 1.

The default is the midpoint of the range of values of the input raster.

Double
spread

Defines the spread of the Gaussian function. The spread generally ranges from 0.01 to 1, with the larger the value results in a steeper distribution around the midpoint.

(デフォルト値は次のとおりです 0.1)

Double

プロパティ

プロパティ説明データ タイプ
midpoint
(読み書き)

The user-defined value defining the midpoint for the membership function.

Double
spread
(読み書き)

Defines the spread of the membership function. The larger the value results in a steeper distribution from the midpoint.

Double

コードのサンプル

FuzzyGaussian example 1 (Python window)

Demonstrates how to create a FuzzyGaussian class and use it in the FuzzyMembership tool within the Python window.

import arcpy
from arcpy.sa import *
from arcpy import env
env.workspace = "c:/sapyexamples/data"
outFzyMember = FuzzyMembership("as_std", FuzzyGaussian(12, 0.1))
outFzyMember.save("c:/sapyexamples/fzymemb")
FuzzyGaussian example 2 (stand-alone script)

Performs a FuzzyMembership using the FuzzyGaussian class.

# Name: FuzzyGaussian_Ex_02.py
# Description: Scales input raster data into values ranging from zero to one
#     indicating the strength of a membership in a set. 
# 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 = "as_std"

# Create the FuzzyGaussian algorithm object
midpoint = 10
spread = 0.2
myFuzzyAlgorithm = FuzzyGaussian(midpoint, spread)

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

# Execute FuzzyMembership
outFuzzyMember = FuzzyMembership(inRaster, myFuzzyAlgorithm)

# Save the output
outFuzzyMember.save("c:/sapyexamples/fzygauss")

関連トピック

  • An overview of Spatial Analyst classes
  • An overview of fuzzy classes
  • ラスターのオーバーレイへのファジー ロジックの適用
  • ファジー メンバーシップ (Fuzzy Membership) ツールの詳細
  • ファジー オーバーレイ (Fuzzy Overlay) ツールの詳細

ArcGIS Desktop

  • ホーム
  • ドキュメント
  • サポート

ArcGIS

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS
  • ArcGIS Developer
  • ArcGIS Solutions
  • ArcGIS Marketplace

Esri について

  • 会社概要
  • 採用情報
  • Esri ブログ
  • ユーザ カンファレンス
  • デベロッパ サミット
Esri
ご意見・ご感想をお寄せください。
Copyright © 2021 Esri. | プライバシー | リーガル