public class ANNCellularAutomataParameter extends Object
构造器和说明 |
---|
ANNCellularAutomataParameter()
构造一个新的 ANNCellularAutomataParameter对象。
|
ANNCellularAutomataParameter(ANNCellularAutomataParameter para)
拷贝构造函数,根据给定的ANNCellularAutomataParameter 对象构造一个与其完全相同的新对象。
|
限定符和类型 | 方法和说明 |
---|---|
int |
getAlpha()
返回扩散参数。
|
CellularAutomataParameter |
getCellularAutomataParameter()
返回元胞自动机的参数。
|
int[] |
getConversionClassIDs()
返回元胞自动机转换规则的分类ID(即栅格值)数组。
|
boolean[][] |
getConversionRules()
返回元胞自动机转换规则。
|
DatasetGrid |
getEndCellGrid()
返回终止栅格数据集。
|
double |
getThreshold()
返回元胞转变概率阈值。
|
boolean |
isCheckResult()
返回是否检测结果。
|
void |
setAlpha(int value)
设置扩散参数。
|
void |
setCellularAutomataParameter(CellularAutomataParameter value)
设置元胞自动机的参数。
|
void |
setCheckResult(boolean value)
设置是否检测结果。
|
void |
setConversionClassIDs(int[] value)
设置元胞自动机转换规则的分类ID(即栅格值)数组。
|
void |
setConversionRules(boolean[][] value)
设置元胞自动机转换规则。
|
void |
setEndCellGrid(DatasetGrid value)
设置终止栅格数据集。
|
void |
setThreshold(double value)
设置元胞转变概率阈值。
|
public ANNCellularAutomataParameter()
public ANNCellularAutomataParameter(ANNCellularAutomataParameter para)
para
- 指定的 ANNCellularAutomataParameter对象。public CellularAutomataParameter getCellularAutomataParameter()
public void setCellularAutomataParameter(CellularAutomataParameter value)
public boolean isCheckResult()
public void setCheckResult(boolean value)
value
- 是否检测结果。public DatasetGrid getEndCellGrid()
public void setEndCellGrid(DatasetGrid value)
value
- 终止栅格数据集。public double getThreshold()
public void setThreshold(double value)
只有转变概率超过规定的阈值后,土地类型才会发生转变,取值为[0,1]。阈值越大,越难发生转换,迭代完成的时间越长。
value
- 元胞转变概率阈值。public int getAlpha()
public void setAlpha(int value)
用来控制随机扰动的强度,取值在1-10范围内,值越大则计算的概率值越大。
value
- 扩散参数。public boolean[][] getConversionRules()
public void setConversionRules(boolean[][] value)
元胞自动机转换规则即是否可以转换为其他用地类型。设置不能转换时相当于设定该类型为限制发展区域,例如水体一般不可以转换为其他用地类型,林地、耕地等可以转换为城市用地。
value
- 元胞自动机转换规则。public int[] getConversionClassIDs()
public void setConversionClassIDs(int[] value)
value
- 元胞自动机转换规则的分类ID(即栅格值)数组。Copyright © 2021–2024 SuperMap. All rights reserved.