morans_i
Calculate spatial autocorrelation using Moran's I statistic to analyze patterns in geographic data, identifying clusters or dispersion based on shapefiles and dependent variables.
Instructions
Compute Moran's I Global Autocorrelation Statistic.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dependent_var | No | LAND_USE | |
distance_threshold | No | ||
shapefile_path | Yes | ||
target_crs | No | EPSG:4326 |
Input Schema (JSON Schema)
{
"properties": {
"dependent_var": {
"default": "LAND_USE",
"title": "Dependent Var",
"type": "string"
},
"distance_threshold": {
"default": 100000,
"title": "Distance Threshold",
"type": "number"
},
"shapefile_path": {
"title": "Shapefile Path",
"type": "string"
},
"target_crs": {
"default": "EPSG:4326",
"title": "Target Crs",
"type": "string"
}
},
"required": [
"shapefile_path"
],
"title": "morans_iArguments",
"type": "object"
}