getis_ord_g_local
Analyze spatial patterns using local Getis-Ord G to identify clusters of high or low values in geospatial data, incorporating shapefile paths and customizable distance thresholds.
Instructions
Local Getis-Ord G.
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": "getis_ord_g_localArguments",
"type": "object"
}