Loading CHANGELOG.md +1 −0 Original line number Diff line number Diff line Loading @@ -44,6 +44,7 @@ release. ### Deprecated ### Fixed - Fixed users not being able to modify planetographic projections in qmos ## [7.2.0] - 2022-12-07 Loading isis/src/qisis/objs/MosaicSceneWidget/MosaicGridTool.cpp +10 −5 Original line number Diff line number Diff line Loading @@ -810,20 +810,25 @@ namespace Isis { void MosaicGridTool::onProjectionChanged() { TProjection * tproj = (TProjection *)getWidget()->getProjection(); PvlGroup mappingGroup(tproj->Mapping()); // If Projection changed from a file, force extents to come from // the new map file m_latExtents = Map; m_lonExtents = Map; Latitude minLat = Latitude(tproj->MinimumLatitude(), Angle::Degrees); Latitude maxLat = Latitude(tproj->MaximumLatitude(), Angle::Degrees); Latitude minLat = Latitude(tproj->MinimumLatitude(), mappingGroup, Angle::Degrees); Latitude maxLat = Latitude(tproj->MaximumLatitude(), mappingGroup, Angle::Degrees); setLatExtents(m_latExtents, minLat, maxLat); Longitude minLon = Longitude(tproj->MinimumLongitude(), Angle::Degrees); Longitude maxLon = Longitude(tproj->MaximumLongitude(), Angle::Degrees); Longitude minLon = Longitude(tproj->MinimumLongitude(), mappingGroup, Angle::Degrees); Longitude maxLon = Longitude(tproj->MaximumLongitude(), mappingGroup, Angle::Degrees); setLonExtents(m_lonExtents, minLon, maxLon); setBaseLat(Latitude(baseLat().angle(Angle::Degrees), mappingGroup, Angle::Degrees)); setBaseLon(Longitude(baseLon().angle(Angle::Degrees), mappingGroup, Angle::Degrees)); } Loading Loading
CHANGELOG.md +1 −0 Original line number Diff line number Diff line Loading @@ -44,6 +44,7 @@ release. ### Deprecated ### Fixed - Fixed users not being able to modify planetographic projections in qmos ## [7.2.0] - 2022-12-07 Loading
isis/src/qisis/objs/MosaicSceneWidget/MosaicGridTool.cpp +10 −5 Original line number Diff line number Diff line Loading @@ -810,20 +810,25 @@ namespace Isis { void MosaicGridTool::onProjectionChanged() { TProjection * tproj = (TProjection *)getWidget()->getProjection(); PvlGroup mappingGroup(tproj->Mapping()); // If Projection changed from a file, force extents to come from // the new map file m_latExtents = Map; m_lonExtents = Map; Latitude minLat = Latitude(tproj->MinimumLatitude(), Angle::Degrees); Latitude maxLat = Latitude(tproj->MaximumLatitude(), Angle::Degrees); Latitude minLat = Latitude(tproj->MinimumLatitude(), mappingGroup, Angle::Degrees); Latitude maxLat = Latitude(tproj->MaximumLatitude(), mappingGroup, Angle::Degrees); setLatExtents(m_latExtents, minLat, maxLat); Longitude minLon = Longitude(tproj->MinimumLongitude(), Angle::Degrees); Longitude maxLon = Longitude(tproj->MaximumLongitude(), Angle::Degrees); Longitude minLon = Longitude(tproj->MinimumLongitude(), mappingGroup, Angle::Degrees); Longitude maxLon = Longitude(tproj->MaximumLongitude(), mappingGroup, Angle::Degrees); setLonExtents(m_lonExtents, minLon, maxLon); setBaseLat(Latitude(baseLat().angle(Angle::Degrees), mappingGroup, Angle::Degrees)); setBaseLon(Longitude(baseLon().angle(Angle::Degrees), mappingGroup, Angle::Degrees)); } Loading