coordinates_to_location
Use reverse geocoding to convert latitude and longitude coordinates into specific location names, enabling precise identification of geographic points for GIS applications.
Instructions
Convert latitude/longitude coordinates to location name using reverse geocoding
Input Schema
Name | Required | Description | Default |
---|---|---|---|
latitude | Yes | Latitude coordinate | |
longitude | Yes | Longitude coordinate |
Input Schema (JSON Schema)
{
"properties": {
"latitude": {
"description": "Latitude coordinate",
"type": "number"
},
"longitude": {
"description": "Longitude coordinate",
"type": "number"
}
},
"required": [
"latitude",
"longitude"
],
"type": "object"
}