@@ -202,12 +202,8 @@ private static List<TaskDefinition> GetMissionTaskDefinitions()
202202 Description = "dummy task 1" ,
203203 RobotPose = new Pose ( ) ,
204204 AnalysisTypes = [ AnalysisType . Fencilla ] ,
205- TargetPosition = new Position
206- {
207- X = 0 ,
208- Y = 0 ,
209- Z = 0 ,
210- } ,
205+ SensorType = SensorType . Image ,
206+ TargetPosition = new Position ( ) ,
211207 } ;
212208
213209 var task2 = new TaskDefinition
@@ -216,13 +212,9 @@ private static List<TaskDefinition> GetMissionTaskDefinitions()
216212 TagId = "dummy-tag-id-2" ,
217213 Description = "dummy task 2" ,
218214 RobotPose = new Pose ( ) ,
215+ SensorType = SensorType . Image ,
219216 AnalysisTypes = [ AnalysisType . CLOE ] ,
220- TargetPosition = new Position
221- {
222- X = 0 ,
223- Y = 0 ,
224- Z = 0 ,
225- } ,
217+ TargetPosition = new Position ( ) ,
226218 } ;
227219
228220 var task3 = new TaskDefinition
@@ -232,12 +224,8 @@ private static List<TaskDefinition> GetMissionTaskDefinitions()
232224 Description = "dummy task 3" ,
233225 RobotPose = new Pose ( ) ,
234226 AnalysisTypes = [ AnalysisType . CO2 ] ,
235- TargetPosition = new Position
236- {
237- X = 0 ,
238- Y = 0 ,
239- Z = 0 ,
240- } ,
227+ SensorType = SensorType . CO2Measurement ,
228+ TargetPosition = new Position ( ) ,
241229 } ;
242230
243231 var task4 = new TaskDefinition
@@ -248,12 +236,7 @@ private static List<TaskDefinition> GetMissionTaskDefinitions()
248236 RobotPose = new Pose ( ) ,
249237 SensorType = SensorType . ThermalImage ,
250238 AnalysisTypes = [ AnalysisType . ThermalReading ] ,
251- TargetPosition = new Position
252- {
253- X = 0 ,
254- Y = 0 ,
255- Z = 0 ,
256- } ,
239+ TargetPosition = new Position ( ) ,
257240 } ;
258241
259242 return new List < TaskDefinition > ( [ task1 , task2 , task3 , task4 ] ) ;
0 commit comments