ArcGIS Desktop

  • Dokumentation
  • Support

  • My Profile
  • Hilfe
  • Sign Out
ArcGIS Desktop

ArcGIS Online

Die Mapping-Plattform für Ihre Organisation

ArcGIS Desktop

Ein vollständiges professionelles GIS

ArcGIS Enterprise

GIS in Ihrem Unternehmen

ArcGIS for Developers

Werkzeuge zum Erstellen standortbezogener Apps

ArcGIS Solutions

Kostenlose Karten- und App-Vorlagen für Ihre Branche

ArcGIS Marketplace

Rufen Sie Apps und Daten für Ihre Organisation ab.

  • Dokumentation
  • Support
Esri
  • Anmelden
user
  • Eigenes Profil
  • Abmelden

ArcMap

  • Startseite
  • Erste Schritte
  • Karte
  • Analysieren
  • Verwalten von Daten
  • Werkzeuge
  • Erweiterungen

FuzzySmall

Mit der Spatial Analyst-Lizenz verfügbar.

  • Zusammenfassung
  • Beschreibung
  • Syntax
  • Eigenschaften
  • Codebeispiel

Zusammenfassung

Defines a fuzzy membership function with the smaller input values having membership closer to 1. The function is defined by a user-specified midpoint (which is assigned a membership of 0.5) with a defined spread.

Beschreibung

The tool that uses the FuzzySmall object: Fuzzy Membership.

The equation for the fuzzy Small function is:

Small 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 Small function is useful when the small input values have a higher membership.

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

FuzzySmall graph
Variations of the fuzzy Small membership function.

Syntax

 FuzzySmall (midpoint, spread)
ParameterErläuterungDatentyp
midpoint

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

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

Double
spread

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

(Der Standardwert ist 5)

Double

Eigenschaften

EigenschaftErläuterungDatentyp
midpoint
(Lesen und schreiben)

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

Double
spread
(Lesen und schreiben)

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

Double

Codebeispiel

FuzzySmall example 1 (Python window)

Demonstrates how to create a FuzzySmall 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", FuzzySmall(19, 8))
outFzyMember.save("c:/sapyexamples/fzysml")
FuzzySmall example 2 (stand-alone script)

Performs a FuzzyMembership using the FuzzySmall class.

# Name: FuzzySmall_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 FuzzySmall algorithm object
midpoint = 12
spread = 8
myFuzzyAlgorithm = FuzzySmall(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/fzysml2")

Verwandte Themen

  • An overview of Spatial Analyst classes
  • An overview of fuzzy classes
  • Anwenden von Fuzzy-Logik auf Überlagerungs-Raster
  • Funktionsweise des Werkzeugs "Fuzzy Membership"
  • Funktionsweise des Werkzeugs "Fuzzy Overlay"

ArcGIS Desktop

  • Startseite
  • Dokumentation
  • Support

ArcGIS Plattform

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS for Developers
  • ArcGIS Solutions
  • ArcGIS Marketplace

Über Esri

  • Über uns
  • Karriere
  • Insider-Blog
  • User Conference
  • Developer Summit
Esri
Wir sind an Ihrer Meinung interessiert.
© Copyright 2016 Environmental Systems Research Institute, Inc. | Datenschutz | Rechtliches