-
Notifications
You must be signed in to change notification settings - Fork 1
Pixel Scaling for ACS and WFC3 cameras #138
Comments
I took a look at the handbooks and these are the values I found:
These are the values for WFPC2 (I think we are not using the wide field chips):
|
Great. Once the we get your work merging |
The pixel scaling value is used in delta_x = -1 * (record['jpl_ra'] - crval1) * (3600. / 0.05)
delta_y = (record['jpl_dec'] - crval2) * (3600. / 0.05) So the pixel scaling value here is |
We need to get Incidentally, it looks hdulist is being passed around a lot to places where all that's actually needed are a few keywords from its header. This isn't very memory-efficient. We should get the information we need from the FITS file, and close it as soon as possible. |
Also, are we sure we're not using the WFPC2 wide-field chips? I mean, they are in the stitched-up AstroDrizzle images, from which we generate our pngs. |
…st places only its header needed to be. For Ticket #138.
I've added the other pixel scales to But I am a bit concerned about only using the WFPC2 PC scale. EDIT: So there's a setting in the AstroDrizzle cfg files called SBC and WFC: 0.05 These don't quite match the values above, but they're what we're using in AstroDrizzle. So I guess this supports using a value of 0.05 for WFPC2 in |
Find out what the pixel scaling values for ACS (HRC, SBC, WFC) and WFC3 (UVIS, IR) cameras are.
The text was updated successfully, but these errors were encountered: