convert_angle
Convert angles between degrees, radians, arcmin, arcsec, turns, and gons to ensure accurate measurements for technical or scientific applications.
Instructions
Convert angle between units.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from_unit | Yes | Source unit | |
to_unit | Yes | Target unit | |
value | Yes | Angle value to convert |
Input Schema (JSON Schema)
{
"properties": {
"from_unit": {
"description": "Source unit",
"enum": [
"degrees",
"radians",
"arcmin",
"arcsec",
"turns",
"gons"
],
"title": "From Unit",
"type": "string"
},
"to_unit": {
"description": "Target unit",
"enum": [
"degrees",
"radians",
"arcmin",
"arcsec",
"turns",
"gons"
],
"title": "To Unit",
"type": "string"
},
"value": {
"description": "Angle value to convert",
"title": "Value",
"type": "number"
}
},
"required": [
"value",
"from_unit",
"to_unit"
],
"type": "object"
}