| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #include <math.h> |
| #include <stdio.h> |
| #include <stdlib.h> |
|
|
| #include "wcserr.h" |
| #include "wcsmath.h" |
| #include "wcsprintf.h" |
| #include "wcstrig.h" |
| #include "sph.h" |
| #include "cel.h" |
|
|
| const int CELSET = 137; |
|
|
| |
| const char *cel_errmsg[] = { |
| "Success", |
| "Null celprm pointer passed", |
| "Invalid projection parameters", |
| "Invalid coordinate transformation parameters", |
| "Ill-conditioned coordinate transformation parameters", |
| "One or more of the (x,y) coordinates were invalid", |
| "One or more of the (lng,lat) coordinates were invalid"}; |
|
|
| |
| const int cel_prjerr[] = { |
| CELERR_SUCCESS, |
| CELERR_NULL_POINTER, |
| CELERR_BAD_PARAM, |
| CELERR_BAD_PIX, |
| CELERR_BAD_WORLD |
| }; |
|
|
| |
| #define CEL_ERRMSG(status) WCSERR_SET(status), cel_errmsg[status] |
|
|
| |
|
|
| int celini(cel) |
|
|
| struct celprm *cel; |
|
|
| { |
| register int k; |
|
|
| if (cel == 0x0) return CELERR_NULL_POINTER; |
|
|
| cel->flag = 0; |
|
|
| cel->offset = 0; |
| cel->phi0 = UNDEFINED; |
| cel->theta0 = UNDEFINED; |
| cel->ref[0] = 0.0; |
| cel->ref[1] = 0.0; |
| cel->ref[2] = UNDEFINED; |
| cel->ref[3] = +90.0; |
|
|
| for (k = 0; k < 5; cel->euler[k++] = 0.0); |
| cel->latpreq = -1; |
|
|
| cel->err = 0x0; |
|
|
| return cel_prjerr[prjini(&(cel->prj))]; |
| } |
|
|
| |
|
|
| int celfree(cel) |
|
|
| struct celprm *cel; |
|
|
| { |
| if (cel == 0x0) return CELERR_NULL_POINTER; |
|
|
| if (cel->err) { |
| free(cel->err); |
| cel->err = 0x0; |
| } |
|
|
| return cel_prjerr[prjfree(&(cel->prj))]; |
| } |
|
|
| |
|
|
| int celprt(cel) |
|
|
| const struct celprm *cel; |
|
|
| { |
| int i; |
|
|
| if (cel == 0x0) return CELERR_NULL_POINTER; |
|
|
| wcsprintf(" flag: %d\n", cel->flag); |
| wcsprintf(" offset: %d\n", cel->offset); |
| if (undefined(cel->phi0)) { |
| wcsprintf(" phi0: UNDEFINED\n"); |
| } else { |
| wcsprintf(" phi0: %9f\n", cel->phi0); |
| } |
| if (undefined(cel->theta0)) { |
| wcsprintf(" theta0: UNDEFINED\n"); |
| } else { |
| wcsprintf(" theta0: %9f\n", cel->theta0); |
| } |
| wcsprintf(" ref:"); |
| for (i = 0; i < 4; i++) { |
| wcsprintf(" %#- 11.5g", cel->ref[i]); |
| } |
| wcsprintf("\n"); |
| wcsprintf(" prj: (see below)\n"); |
|
|
| wcsprintf(" euler:"); |
| for (i = 0; i < 5; i++) { |
| wcsprintf(" %#- 11.5g", cel->euler[i]); |
| } |
| wcsprintf("\n"); |
| wcsprintf(" latpreq: %d", cel->latpreq); |
| if (cel->latpreq == 0) { |
| wcsprintf(" (not required)\n"); |
| } else if (cel->latpreq == 1) { |
| wcsprintf(" (disambiguation)\n"); |
| } else if (cel->latpreq == 2) { |
| wcsprintf(" (specification)\n"); |
| } else { |
| wcsprintf(" (UNDEFINED)\n"); |
| } |
| wcsprintf(" isolat: %d\n", cel->isolat); |
|
|
| WCSPRINTF_PTR(" err: ", cel->err, "\n"); |
| if (cel->err) { |
| wcserr_prt(cel->err, " "); |
| } |
|
|
| wcsprintf("\n"); |
| wcsprintf(" prj.*\n"); |
| prjprt(&(cel->prj)); |
|
|
| return 0; |
| } |
|
|
| |
|
|
| int celperr(const struct celprm *cel, const char *prefix) |
|
|
| { |
| if (cel == 0x0) return CELERR_NULL_POINTER; |
|
|
| if (cel->err && wcserr_prt(cel->err, prefix) == 0) { |
| wcserr_prt(cel->prj.err, prefix); |
| } |
|
|
| return 0; |
| } |
|
|
|
|
| |
|
|
| int celset(cel) |
|
|
| struct celprm *cel; |
|
|
| { |
| static const char *function = "celset"; |
|
|
| int status; |
| const double tol = 1.0e-10; |
| double clat0, cphip, cthe0, lat0, lng0, phip, slat0, slz, sphip, sthe0; |
| double latp, latp1, latp2, lngp; |
| double u, v, x, y, z; |
| struct prjprm *celprj; |
| struct wcserr **err; |
|
|
| if (cel == 0x0) return CELERR_NULL_POINTER; |
| err = &(cel->err); |
|
|
| |
| celprj = &(cel->prj); |
| if (cel->offset) { |
| celprj->phi0 = cel->phi0; |
| celprj->theta0 = cel->theta0; |
| } else { |
| |
| celprj->phi0 = UNDEFINED; |
| celprj->theta0 = UNDEFINED; |
| } |
|
|
| if ((status = prjset(celprj))) { |
| return wcserr_set(CEL_ERRMSG(cel_prjerr[status])); |
| } |
|
|
| |
| if (undefined(cel->phi0)) { |
| cel->phi0 = celprj->phi0; |
| } |
|
|
| if (undefined(cel->theta0)) { |
| cel->theta0 = celprj->theta0; |
|
|
| } else if (fabs(cel->theta0) > 90.0) { |
| if (fabs(cel->theta0) > 90.0 + tol) { |
| return wcserr_set(WCSERR_SET(CELERR_BAD_COORD_TRANS), |
| "Invalid coordinate transformation parameters: theta0 > 90"); |
| } |
|
|
| if (cel->theta0 > 90.0) { |
| cel->theta0 = 90.0; |
| } else { |
| cel->theta0 = -90.0; |
| } |
| } |
|
|
|
|
| lng0 = cel->ref[0]; |
| lat0 = cel->ref[1]; |
| phip = cel->ref[2]; |
| latp = cel->ref[3]; |
|
|
| |
| if (undefined(phip) || phip == 999.0) { |
| phip = (lat0 < cel->theta0) ? 180.0 : 0.0; |
| phip += cel->phi0; |
|
|
| if (phip < -180.0) { |
| phip += 360.0; |
| } else if (phip > 180.0) { |
| phip -= 360.0; |
| } |
|
|
| cel->ref[2] = phip; |
| } |
|
|
|
|
| |
| cel->latpreq = 0; |
| if (cel->theta0 == 90.0) { |
| |
| lngp = lng0; |
| latp = lat0; |
|
|
| } else { |
| |
| sincosd(lat0, &slat0, &clat0); |
| sincosd(cel->theta0, &sthe0, &cthe0); |
|
|
| if (phip == cel->phi0) { |
| sphip = 0.0; |
| cphip = 1.0; |
|
|
| u = cel->theta0; |
| v = 90.0 - lat0; |
|
|
| } else { |
| sincosd(phip - cel->phi0, &sphip, &cphip); |
|
|
| x = cthe0*cphip; |
| y = sthe0; |
| z = sqrt(x*x + y*y); |
| if (z == 0.0) { |
| if (slat0 != 0.0) { |
| return wcserr_set(WCSERR_SET(CELERR_BAD_COORD_TRANS), |
| "Invalid coordinate description:\n" |
| "lat0 == 0 is required for |phip - phi0| = 90 and theta0 == 0"); |
| } |
|
|
| |
| cel->latpreq = 2; |
| if (latp > 90.0) { |
| latp = 90.0; |
| } else if (latp < -90.0) { |
| latp = -90.0; |
| } |
|
|
| } else { |
| slz = slat0/z; |
| if (fabs(slz) > 1.0) { |
| if ((fabs(slz) - 1.0) < tol) { |
| if (slz > 0.0) { |
| slz = 1.0; |
| } else { |
| slz = -1.0; |
| } |
| } else { |
| return wcserr_set(WCSERR_SET(CELERR_BAD_COORD_TRANS), |
| "Invalid coordinate description:\n|lat0| <= %.3f is required " |
| "for these values of phip, phi0, and theta0", asind(z)); |
| } |
| } |
|
|
| u = atan2d(y,x); |
| v = acosd(slz); |
| } |
| } |
|
|
| if (cel->latpreq == 0) { |
| latp1 = u + v; |
| if (latp1 > 180.0) { |
| latp1 -= 360.0; |
| } else if (latp1 < -180.0) { |
| latp1 += 360.0; |
| } |
|
|
| latp2 = u - v; |
| if (latp2 > 180.0) { |
| latp2 -= 360.0; |
| } else if (latp2 < -180.0) { |
| latp2 += 360.0; |
| } |
|
|
| if (fabs(latp1) < 90.0+tol && |
| fabs(latp2) < 90.0+tol) { |
| |
| cel->latpreq = 1; |
| } |
|
|
| if (fabs(latp-latp1) < fabs(latp-latp2)) { |
| if (fabs(latp1) < 90.0+tol) { |
| latp = latp1; |
| } else { |
| latp = latp2; |
| } |
| } else { |
| if (fabs(latp2) < 90.0+tol) { |
| latp = latp2; |
| } else { |
| latp = latp1; |
| } |
| } |
|
|
| |
| if (fabs(latp) < 90.0+tol) { |
| if (latp > 90.0) { |
| latp = 90.0; |
| } else if (latp < -90.0) { |
| latp = -90.0; |
| } |
| } |
| } |
|
|
| z = cosd(latp)*clat0; |
| if (fabs(z) < tol) { |
| if (fabs(clat0) < tol) { |
| |
| lngp = lng0; |
|
|
| } else if (latp > 0.0) { |
| |
| lngp = lng0 + phip - cel->phi0 - 180.0; |
|
|
| } else { |
| |
| lngp = lng0 - phip + cel->phi0; |
| } |
|
|
| } else { |
| x = (sthe0 - sind(latp)*slat0)/z; |
| y = sphip*cthe0/clat0; |
| if (x == 0.0 && y == 0.0) { |
| |
| return wcserr_set(WCSERR_SET(CELERR_BAD_COORD_TRANS), |
| "Invalid coordinate transformation parameters, internal error"); |
| } |
| lngp = lng0 - atan2d(y,x); |
| } |
|
|
| |
| |
| if (lng0 >= 0.0) { |
| if (lngp < 0.0) { |
| lngp += 360.0; |
| } else if (lngp > 360.0) { |
| lngp -= 360.0; |
| } |
| } else { |
| if (lngp > 0.0) { |
| lngp -= 360.0; |
| } else if (lngp < -360.0) { |
| lngp += 360.0; |
| } |
| } |
| } |
|
|
| |
| cel->ref[3] = latp; |
|
|
| |
| cel->euler[0] = lngp; |
| cel->euler[1] = 90.0 - latp; |
| cel->euler[2] = phip; |
| sincosd(cel->euler[1], &cel->euler[4], &cel->euler[3]); |
| cel->isolat = (cel->euler[4] == 0.0); |
| cel->flag = CELSET; |
|
|
| |
| if (fabs(latp) > 90.0+tol) { |
| return wcserr_set(WCSERR_SET(CELERR_ILL_COORD_TRANS), |
| "Ill-conditioned coordinate transformation parameters\nNo valid " |
| "solution for latp for these values of phip, phi0, and theta0"); |
| } |
|
|
| return 0; |
| } |
|
|
| |
|
|
| int celx2s(cel, nx, ny, sxy, sll, x, y, phi, theta, lng, lat, stat) |
|
|
| struct celprm *cel; |
| int nx, ny, sxy, sll; |
| const double x[], y[]; |
| double phi[], theta[]; |
| double lng[], lat[]; |
| int stat[]; |
|
|
| { |
| static const char *function = "celx2s"; |
|
|
| int istat, nphi, status = 0; |
| struct prjprm *celprj; |
| struct wcserr **err; |
|
|
| |
| if (cel == 0x0) return CELERR_NULL_POINTER; |
| err = &(cel->err); |
|
|
| if (cel->flag != CELSET) { |
| if ((status = celset(cel))) return status; |
| } |
|
|
| |
| celprj = &(cel->prj); |
| if ((istat = celprj->prjx2s(celprj, nx, ny, sxy, 1, x, y, phi, theta, |
| stat))) { |
| if (istat) { |
| status = wcserr_set(CEL_ERRMSG(cel_prjerr[istat])); |
| if (status != CELERR_BAD_PIX) { |
| return status; |
| } |
| } |
| } |
|
|
| nphi = (ny > 0) ? (nx*ny) : nx; |
|
|
| |
| sphx2s(cel->euler, nphi, 0, 1, sll, phi, theta, lng, lat); |
|
|
| return status; |
| } |
|
|
| |
|
|
| int cels2x(cel, nlng, nlat, sll, sxy, lng, lat, phi, theta, x, y, stat) |
|
|
| struct celprm *cel; |
| int nlng, nlat, sll, sxy; |
| const double lng[], lat[]; |
| double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| static const char *function = "cels2x"; |
|
|
| int istat, nphi, ntheta, status = 0; |
| struct prjprm *celprj; |
| struct wcserr **err; |
|
|
| |
| if (cel == 0x0) return CELERR_NULL_POINTER; |
| err = &(cel->err); |
|
|
| if (cel->flag != CELSET) { |
| if ((status = celset(cel))) return status; |
| } |
|
|
| |
| sphs2x(cel->euler, nlng, nlat, sll, 1, lng, lat, phi, theta); |
|
|
| if (cel->isolat) { |
| |
| nphi = nlng; |
| ntheta = nlat; |
| } else { |
| nphi = (nlat > 0) ? (nlng*nlat) : nlng; |
| ntheta = 0; |
| } |
|
|
| |
| celprj = &(cel->prj); |
| if ((istat = celprj->prjs2x(celprj, nphi, ntheta, 1, sxy, phi, theta, x, y, |
| stat))) { |
| if (istat) { |
| status = wcserr_set(CEL_ERRMSG(cel_prjerr[istat])); |
| if (status != CELERR_BAD_WORLD) { |
| return status; |
| } |
| } |
| } |
|
|
| return status; |
| } |
|
|