getis_ord_g
Identify spatial clustering patterns using Getis-Ord G for global hot spot analysis. Input shapefile, dependent variable, distance threshold, and target CRS to compute spatial statistics.
Instructions
Compute Getis-Ord G for global hot spot analysis.
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_gArguments",
"type": "object"
}