join_counts
Calculate global binary join counts for spatial data analysis. Input shapefile to measure spatial relationships within a specified distance threshold, supporting accurate geospatial insights.
Instructions
Global Binary Join Counts.
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": "join_countsArguments",
"type": "object"
}