Commit dbacdf02aee7f6eeddec7f555a7cd253bf364949
1 parent
1aed430d
Exists in
master
and in
1 other branch
commentaires
Showing
5 changed files
with
2 additions
and
4 deletions
Show diff stats
install/install.json
install/install.py
src/analyzer/analyzer
No preview for this file type
src/observation_manager/calibrator
No preview for this file type
src/observation_manager/tasks.py
... | ... | @@ -109,6 +109,7 @@ class execute_plan_vis(execute_plan): |
109 | 109 | self.tel.do("GOTO " + str(self.plan.position)) |
110 | 110 | self.vis_camera.do("CAPTURE "+self.dir_name+" "+str(self.plan.nb_images)+" "+str(self.plan.duration)) |
111 | 111 | self.log("Sleeping for " + str(int(self.duration))) |
112 | + #TODO: faire un boucle infinie de recup image + lancement calib pour chaque image des que disponible | |
112 | 113 | time.sleep(int(self.duration)) |
113 | 114 | self.launchCalibration() |
114 | 115 | return 0 |
... | ... | @@ -132,6 +133,7 @@ class execute_plan_nir(execute_plan): |
132 | 133 | self.tel.do("GOTO " + str(self.plan.position)) |
133 | 134 | self.nir_camera.do("CAPTURE "+self.dir_name+" "+str(self.plan.nb_images)+" "+str(self.plan.duration)) |
134 | 135 | self.log("Sleeping for " + str(int(self.duration))) |
136 | + #TODO: faire un boucle infinie de recup image + lancement calib pour chaque image des que disponible | |
135 | 137 | time.sleep(int(self.duration)) |
136 | 138 | self.launchCalibration() |
137 | 139 | return 0 | ... | ... |