This repository was archived by the owner on Aug 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Mission Stage Endpoints
Jason edited this page May 10, 2024
·
9 revisions
- Example call: http://localhost:5135/MissionStage
{
"stageId": "bob"
}{
"key": "testHello",
"stageId": "bob",
"stageName": "initialize",
"stageStatus": "NOT_STARTED",
"vehicleKeys": [
{
"vehicleName": "ERU",
"target": {
"latitude": 1.0,
"longitude": 2.0
},
"searchArea": [
{
"latitude": 6.0,
"longitude": 5.5
}
],
"localIP": "1.0.0.0"
},
{
"vehicleName": "MRA",
"target": {
"latitude": 2.5,
"longitude": 3.9
},
"searchArea": [
{
"latitude": 9.0,
"longitude": 15.6
}
],
"localIP": "2.1.1.0"
}
]
}- Example call: http://localhost:5135/MissionStage
{
"key": "testHello",
"stageId": "bob",
"stageName": "initialize",
"stageStatus": "NOT_STARTED",
"vehicleKeys": [
{
"target": {
"latitude": 1.0,
"longitude": 2.0
},
"searchArea": [
{
"latitude": 6.0,
"longitude": 5.5
}
],
"localIP": "1.0.0.0"
},
{
"target": {
"latitude": 2.5,
"longitude": 3.9
},
"searchArea": [
{
"latitude": 9.0,
"longitude": 15.6
}
],
"localIP": "2.1.1.0"
}
]
}