Skip to content

Commit

Permalink
chat: get-location-plus-offset function json
Browse files Browse the repository at this point in the history
  • Loading branch information
rmackay9 committed Dec 14, 2023
1 parent 615820f commit 8d88bde
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"type": "function",
"function": {
"name": "get_location_plus_offset",
"description": "Calculate the latitude and longitude given an existing latitude and longitude and distances (in meters) North and East",
"parameters": {
"type": "object",
"properties": {
"latitude": {"type": "number", "description": "latitude in degrees"},
"longitude": {"type": "number", "description": "longitude in degrees"},
"distance_north": {"type": "number", "description": "distance to move North in meters"},
"distance_east": {"type": "number", "description": "distance to move East in meters"}
},
"required": ["latitude", "longitude", "distance_north", "distance_east"]
}
}
}

0 comments on commit 8d88bde

Please sign in to comment.