Changeset 39834
- Timestamp:
- Dec 4, 2016, 12:21:46 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/release.2015/ps1.calibration/calibration.tex
r39833 r39834 194 194 images. 195 195 196 \section{Astrometric Model in PSASTRO} 197 198 \code{pasastro} loads the coordinates and calibrated magnitudes of 199 stars from the reference database. A model for the positions of the 200 60 chips in the focal plane is used to determine the expected 201 astrometry for each chip based on the boresite coordinates and 202 position angle reported by the header. Reference stars are selected 203 from the full field of view of the GPC1 camera, padded by an 204 additional \note{25\%} to ensure a match can be determined even in the 205 presence of substantial errors in the boresite coordinates. It is 206 important to choose an appropriate set of reference stars: if too few 207 are selected, the chance of finding a match between the reference and 208 observed stars is diminished. In addition, since stars are loaded in 209 brightness order, a selection which is too small is likely to contain 210 only stars which are saturated in the GPC1 images. On the other hand, 211 if too many reference stars are chosen, there is a higher chance of a 212 false-positive match, especially as many of the reference stars may 213 not be detected in the GPC1 image. The seletion of the reference 214 stars includes a limit on the brightest and fainted magnitude of the 215 stars selected. 216 217 Three somewhat distinct astrometric models are employed within the IPP 218 at different stages. The simplest model is defined independently for 219 each chip: a simple TAN projection (Calabretta \& Griesen REF) is used 220 to relate sky coordinates to a cartesian tangent-plane coordinate 221 system. \note{include projection math?} A pair of low-order 222 polynomials are used to relate the chip pixel coordinates to this 223 tangent-plane coordinate system. The transforming polynomials are of 224 the form: 225 \begin{eqnarray} 226 P & = & \sum_{i,j} C^P_{i,j} X^i_{\rm chip} Y^j_{\rm chip} \\ 227 Q & = & \sum_{i,j} C^Q_{i,j} X^i_{\rm chip} Y^j_{\rm chip} 228 \end{eqnarray} 229 where $P,Q$ are the tangent plane coordinates, $X_{\rm chip}, Y_{\rm 230 chip}$ are the coordinates on the 60 GPC1 chips (\note{see 231 discussion somewhere on cell vs chip}), and $C^P_{i,j}, C^Q_{i,j}$ 232 are the polynomial coefficients for each order. In the \code{psastro} 233 analysis, $i + j <= N_{\rm order}$ where the order of the fit, $N_{\rm 234 order}$, may be 1 to 3, under the restriction that sufficient stars 235 are needed to constraint the order \note{describe a bit better: this 236 is automatically selected based on the number of stars}. 237 238 A second form of astrometry model which yields somewhat higher 239 accuracy consists of a set of connected solutions for all chips in a 240 single exposure. This model also uses a TAN projection to relate the 241 sky coordinates to a locally cartesian tangent plane coordinate system. 242 A set of polynomials is then used to relate the tangent plane 243 coordinates to a 'focal plane' coordinate system, $L,M$: 244 \begin{eqnarray} 245 P & = & \sum_{i,j} C^P_{i,j} L^i M^j \\ 246 Q & = & \sum_{i,j} C^Q_{i,j} L^i M^j 247 \end{eqnarray} 248 This set of polynomial accounts for effects such as optical distortion 249 in the camera and distortions due to changing atmospheric refraction 250 across the field of the camera. Since these effects are smooth across 251 the field of the camera, a single pair of polynomials can be used for 252 each exposure. Like in the chip analysis about, the \code{psastro} 253 code restricts the exponents with the rule $i + j <= N_{\rm order}$ 254 where the order of the fit, $N_{\rm order}$, may be 1 to 3, under the 255 restriction that sufficient stars are needed to constraint the order 256 \note{describe a bit better: this is automatically selected based on 257 the number of stars}. 258 For each chip, a second set of polynomials describes the 259 transformation from the chip coordinate systems to the focal 260 coordinate system: 261 \begin{eqnarray} 262 L & = & \sum_{i,j} C^L_{i,j} X^i_{\rm chip} Y^j_{\rm chip} \\ 263 M & = & \sum_{i,j} C^M_{i,j} X^i_{\rm chip} Y^j_{\rm chip} 264 \end{eqnarray} 265 266 A third form of the astrometry model is used in the context of the 267 calibration determined within the DVO database system. We retain the 268 two levels of transformations (chip $\rtarrow$ focal plane $\rtarrow$ 269 tangent plane), but the relationship between the chip and focal plane 270 is represented with only the linear terms in the polynomial, 271 supplemented by a course grid of displacements, $\delta L, \delta M$ sampled 272 across the coordinate range 273 of the chip. This displacement grid may have a resolution of up to 274 $6\times6$ samples across the chip. The displacement for a specific 275 chip coordinate value is determined via bilinear interpolation between 276 the nearest sample points. Thus, the chip to focal-plane 277 transformation may be written as: 278 \begin{eqnarray} 279 L & = & C^L_{0,0} + C^L_{1,0} X_{\rm chip} + C^L_{0,1} Y_{\rm chip} + \delta L(X_{\rm chip}, Y_{\rm chip}) \\ 280 M & = & C^M_{0,0} + C^M_{1,0} X_{\rm chip} + C^M_{0,1} Y_{\rm chip} + \delta M(X_{\rm chip}, Y_{\rm chip}) \\ 281 \end{eqnarray} 282 283 {\bf WCS Keywords} When this polynomial representation is written to 284 the output files, a set of WCS keywords are used to define the 285 astrometric transformation elements. It is necessary to 286 \begin{eqnarray} 287 P & = & \sum_{i,j} C^P_{i,j} (X_{\rm chip} - X_0)^i (Y_{\rm chip} - Y_0)^j \\ 288 Q & = & \sum_{i,j} C^Q_{i,j} (X_{\rm chip} - X_0)^i (Y_{\rm chip} - Y_0)^j 289 \end{eqnarray} 290 where $X_0, Y_0$ is the reference pixel, represented in the header as 291 196 292 \section{Real-time Calibration} 197 293 … … 223 319 catalog. \note{discuss history of the different refcats?} 224 320 225 {\bf Astrometric Model in PSASTRO} \code{pasastro} loads the226 coordinates and calibrated magnitudes of stars from the reference227 database. A model for the positions of the 60 chips in the focal228 plane is used to determine the expected astrometry for each chip based229 on the boresite coordinates and position angle reported by the header.230 Reference stars are selected from the full field of view of the GPC1231 camera, padded by an additional \note{25\%} to ensure a match can be232 determined even in the presence of substantial errors in the boresite233 coordinates. It is important to choose an appropriate set of234 reference stars: if too few are selected, the chance of finding a235 match between the reference and observed stars is diminished. In236 addition, since stars are loaded in brightness order, a selection237 which is too small is likely to contain only stars which are saturated238 in the GPC1 images. On the other hand, if too many reference stars239 are chosen, there is a higher chance of a false-positive match,240 especially as many of the reference stars may not be detected in the241 GPC1 image. The seletion of the reference stars includes a limit on242 the brightest and fainted magnitude of the stars selected.243 244 Three somewhat distinct astrometric models are employed within the IPP245 at different stages. The simplest model is defined independently for246 each chip: a simple TAN projection (Calabretta \& Griesen REF) is used247 to relate sky coordinates to a cartesian tangent-plane coordinate248 system. \note{include projection math?} A pair of low-order249 polynomials are used to relate the chip pixel coordinates to this250 tangent-plane coordinate system. The transforming polynomials are of251 the form:252 \begin{eqnarray}253 P & = & \sum_{i,j} C^P_{i,j} X^i_{\rm chip} Y^j_{\rm chip} \\254 Q & = & \sum_{i,j} C^Q_{i,j} X^i_{\rm chip} Y^j_{\rm chip}255 \end{eqnarray}256 where $P,Q$ are the tangent plane coordinates, $X_{\rm chip}, Y_{\rm257 chip}$ are the coordinates on the 60 GPC1 chips (\note{see258 discussion somewhere on cell vs chip}), and $C^P_{i,j}, C^Q_{i,j}$259 are the polynomial coefficients for each order. In the \code{psastro}260 analysis, $i + j <= N_{\rm order}$ where the order of the fit, $N_{\rm261 order}$, may be 1 to 3, under the restriction that sufficient stars262 are needed to constraint the order \note{describe a bit better: this263 is automatically selected based on the number of stars}.264 265 266 {\bf WCS Keywords} When this polynomial representation is written to267 the output files, a set of WCS keywords are used to define the268 astrometric transformation elements. It is necessary to269 \begin{eqnarray}270 P & = & \sum_{i,j} C^P_{i,j} (X_{\rm chip} - X_0)^i (Y_{\rm chip} - Y_0)^j \\271 Q & = & \sum_{i,j} C^Q_{i,j} (X_{\rm chip} - X_0)^i (Y_{\rm chip} - Y_0)^j272 \end{eqnarray}273 where $X_0, Y_0$ is the reference pixel, represented in the header as274 275 276 are functions then related the The astrometric model u277 278 321 The astrometric analysis is necessarily performed first; after the 279 322 astrometry is determined, an automatic byproduct is a reliable match 280 323 between reference and observed stars, allowing a comparison of the 281 magnitudes to determine the photometric calibration. The astrometric 282 calibration is performed in two major stages: first, the chips are 283 fitted independently with a low-order model consisting 284 285 286 324 magnitudes to determine the photometric calibration. 325 326 The astrometric calibration is performed in two major stages: first, 327 the chips are fitted independently with independent models for each 328 chip. This fit is sufficient to ensure a reliable match between 329 reference stars and observed sources in the image. Next, the set of 330 chip calibrations are used to define the transformation between the 331 focal plane coordinate system and the tangent plane coordinate 332 system. The chip-to-focal plane transformations are then determined 333 under the single common focal plane to tangent plane transformation. 334 335 The first step of the analysis is to attempt to find the match between 336 the reference stars and the detected objects. \code{psastro} uses a 287 337 288 338 \code{smf}
Note:
See TracChangeset
for help on using the changeset viewer.
