Skip to content

Commit

Permalink
fix format error
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiro-0110 committed May 24, 2024
1 parent 015451e commit d8faf07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/real/mission/telescope.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ void Telescope::ObserveGroundPositionDeviation() {
std::pair<double, double> ground_position_y_min_image_sensor_ = CalculateImagePosition(target_ground_position_ymin_ecef_m_);
ground_position_y_min_x_image_sensor_ = ground_position_y_min_image_sensor_.first;
ground_position_y_min_y_image_sensor_ = ground_position_y_min_image_sensor_.second;
} else if(center_imaging_jd <= current_jd && current_jd <= center_imaging_jd + stage_time_day) {
} else if (center_imaging_jd <= current_jd && current_jd <= center_imaging_jd + stage_time_day) {
if (centerImagingFlag) {
CalculateTargetGroundPosition();
centerImagingFlag = false;
Expand Down

0 comments on commit d8faf07

Please sign in to comment.