File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ release.
3636## [ Unreleased]
3737
3838### Fixed
39+ - Fix a bug in the Frame Sensor Model, the ephemeris time was rounded to it. [ #497 ] ( https://github.com/DOI-USGS/usgscsm/pull/497 )
3940- Removed boundary checks for Frame Sensor Model getSensorPosition [ #492 ] ( https://github.com/DOI-USGS/usgscsm/pull/492 )
4041- Fixed CAHVOR model optical shifts by removing tolerance check [ #488 ] ( https://github.com/DOI-USGS/usgscsm/issues/488 )
4142
Original file line number Diff line number Diff line change @@ -1534,7 +1534,7 @@ void UsgsAstroFrameSensorModel::replaceModelState(
15341534 m_focalLengthEpsilon = state.at (" m_focalLengthEpsilon" ).get <double >();
15351535 m_nLines = state.at (" m_nLines" ).get <int >();
15361536 m_nSamples = state.at (" m_nSamples" ).get <int >();
1537- m_ephemerisTime = state.at (" m_ephemerisTime" ).get <int >();
1537+ m_ephemerisTime = state.at (" m_ephemerisTime" ).get <double >();
15381538 m_currentParameterValue =
15391539 state.at (" m_currentParameterValue" ).get <std::vector<double >>();
15401540 m_ccdCenter = state.at (" m_ccdCenter" ).get <std::vector<double >>();
You can’t perform that action at this time.
0 commit comments