calculate_geodetic_area
Use geodetic calculations to determine the area of a polygon, accounting for Earth’s curvature. Ideal for precise geospatial analysis in GIS workflows.
Instructions
Calculate area of a polygon using geodetic calculations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ellps | No | WGS84 | |
geometry | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ellps": {
"default": "WGS84",
"title": "Ellps",
"type": "string"
},
"geometry": {
"title": "Geometry",
"type": "string"
}
},
"required": [
"geometry"
],
"title": "calculate_geodetic_areaArguments",
"type": "object"
}