copy_transform(transform)
- transform - input Transform object
The copy_transform command generates a complete copy of the
provided transform.
>>> cr = read_file("evt2.fits")
>>> trans = get_transform(cr, "MSC")
>>> t2 = copy_transform(trans)
>>> t2.print_parameter_list()
Name: CRPIX Type: dmDOUBLE Value: 4096.500000, 4096.500000 Desc:
Reference Point Pixel Coordinates Parent: MSC
Name: CRVAL Type: dmDOUBLE Value: 0.000000, 0.000000 Desc: Center
Coordinate in decimal degrees Parent: MSC
Name: CDELT Type: dmDOUBLE Value: 0.000137, 0.000137 Desc: Transform
Scale in degrees/pixel Parent: MSC
Name: CROTA Type: dmDOUBLE Value: 0.000000 Desc: Rotation Angle Parent:
MSC
Name: EQUINOX Type: dmSHORT Value: 2000 Desc: Equinox of Coordinates
Parent: MSC
Name: EPOCH Type: dmDOUBLE Value: 2000.000000 Desc: Epoch of
Coordinates Parent: MSC
Copy the "MSC" transform from the file evt2.fits to "t2".
See the
bug pages
on the CIAO website for an up-to-date listing of known bugs.
|