summaryrefslogtreecommitdiffstats
path: root/tksao/frame/point.C
diff options
context:
space:
mode:
Diffstat (limited to 'tksao/frame/point.C')
-rw-r--r--tksao/frame/point.C13
1 files changed, 7 insertions, 6 deletions
diff --git a/tksao/frame/point.C b/tksao/frame/point.C
index 76a53b4..cd55e6f 100644
--- a/tksao/frame/point.C
+++ b/tksao/frame/point.C
@@ -764,7 +764,8 @@ void Point::list(ostream& str, Coord::CoordSystem sys, Coord::SkyFrame sky,
case Coord::DEGREES:
{
Vector vv = ptr->mapFromRef(center,sys,sky);
- str << type_ << '(' << setprecision(10) << vv << ')';
+ str << type_ << '('
+ << setprecision(10) << vv << ')';
}
break;
case Coord::SEXAGESIMAL:
@@ -865,7 +866,7 @@ void Point::listPros(ostream& str, Coord::CoordSystem sys, Coord::SkyFrame sky,
coord.listProsCoordSystem(str,sys,sky);
str << "; ";
Vector vv = ptr->mapFromRef(center,sys);
- str << type_ << ' ' << setprecision(8) << vv;
+ str << type_ << ' ' << vv;
}
break;
default:
@@ -877,7 +878,7 @@ void Point::listPros(ostream& str, Coord::CoordSystem sys, Coord::SkyFrame sky,
case Coord::DEGREES:
{
Vector vv = ptr->mapFromRef(center,sys,sky);
- str << type_ << ' ' << setprecision(10) << setunit('d') << vv;
+ str << type_ << ' ' << setunit('d') << vv;
}
break;
case Coord::SEXAGESIMAL:
@@ -905,7 +906,7 @@ void Point::listSAOtng(ostream& str, Coord::CoordSystem sys,
case Coord::AMPLIFIER:
{
Vector vv = ptr->mapFromRef(center,Coord::IMAGE);
- str << type_ << '(' << setprecision(8) << vv << ')';
+ str << type_ << '(' << vv << ')';
}
break;
default:
@@ -914,7 +915,7 @@ void Point::listSAOtng(ostream& str, Coord::CoordSystem sys,
case Coord::DEGREES:
{
Vector vv = ptr->mapFromRef(center,sys,sky);
- str << type_ << '(' << setprecision(10) << vv << ')';
+ str << type_ << '(' << vv << ')';
}
break;
case Coord::SEXAGESIMAL:
@@ -936,7 +937,7 @@ void Point::listSAOimage(ostream& str, int strip)
// all coords are in image coords
Vector vv = ptr->mapFromRef(center,Coord::IMAGE);
- str << type_ << '(' << setprecision(8) << vv << ')';
+ str << type_ << '(' << vv << ')';
listSAOimagePost(str, strip);
}