scale_geometry
Scale a geometry by applying specified x and y factors to adjust its size, useful for resizing spatial features in geospatial analysis.
Instructions
Scale a geometry.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
geometry | Yes | ||
origin | No | center | |
xfact | Yes | ||
yfact | Yes |
Input Schema (JSON Schema)
{
"properties": {
"geometry": {
"title": "Geometry",
"type": "string"
},
"origin": {
"default": "center",
"title": "Origin",
"type": "string"
},
"xfact": {
"title": "Xfact",
"type": "number"
},
"yfact": {
"title": "Yfact",
"type": "number"
}
},
"required": [
"geometry",
"xfact",
"yfact"
],
"title": "scale_geometryArguments",
"type": "object"
}