7 coordSystem = self.getCoordSystem()
8 argList = [
"%r*afwGeom.degrees" % (pos.asDegrees(),)
for pos
in self]
9 if coordSystem == TOPOCENTRIC:
11 repr(self.getEpoch()),
12 "(%r)" % (self.getObservatory(),),
14 elif coordSystem
not in (ICRS, GALACTIC):
15 argList.append(repr(self.getEpoch()))
16 return "%s(%s)" % (self.getClassName(),
", ".join(argList))
19 Coord.__repr__ = __repr__
20 Fk5Coord.__repr__ = __repr__
21 IcrsCoord.__repr__ = __repr__
22 GalacticCoord.__repr__ = __repr__
23 EclipticCoord.__repr__ = __repr__
24 TopocentricCoord.__repr__ = __repr__