gamma_statistic
Calculate Gamma Statistic to measure spatial autocorrelation in geographic data using a shapefile, dependent variable, target CRS, and distance threshold.
Instructions
Compute Gamma Statistic for spatial autocorrelation.
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": "gamma_statisticArguments",
"type": "object"
}