| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #include <math.h> |
| #include <stdio.h> |
| #include <stdlib.h> |
| #include <string.h> |
|
|
| #include "wcserr.h" |
| #include "wcsmath.h" |
| #include "wcsprintf.h" |
| #include "wcstrig.h" |
| #include "wcsutil.h" |
| #include "prj.h" |
|
|
|
|
| |
| const int ZENITHAL = 1; |
| const int CYLINDRICAL = 2; |
| const int PSEUDOCYLINDRICAL = 3; |
| const int CONVENTIONAL = 4; |
| const int CONIC = 5; |
| const int POLYCONIC = 6; |
| const int QUADCUBE = 7; |
| const int HEALPIX = 8; |
|
|
| const char prj_categories[9][32] = |
| {"undefined", "zenithal", "cylindrical", "pseudocylindrical", |
| "conventional", "conic", "polyconic", "quadcube", "HEALPix"}; |
|
|
|
|
| |
| const int prj_ncode = 28; |
| const char prj_codes[28][4] = |
| {"AZP", "SZP", "TAN", "STG", "SIN", "ARC", "ZPN", "ZEA", "AIR", "CYP", |
| "CEA", "CAR", "MER", "COP", "COE", "COD", "COO", "SFL", "PAR", "MOL", |
| "AIT", "BON", "PCO", "TSC", "CSC", "QSC", "HPX", "XPH"}; |
|
|
| const int AZP = 101; |
| const int SZP = 102; |
| const int TAN = 103; |
| const int STG = 104; |
| const int SIN = 105; |
| const int ARC = 106; |
| const int ZPN = 107; |
| const int ZEA = 108; |
| const int AIR = 109; |
| const int CYP = 201; |
| const int CEA = 202; |
| const int CAR = 203; |
| const int MER = 204; |
| const int SFL = 301; |
| const int PAR = 302; |
| const int MOL = 303; |
| const int AIT = 401; |
| const int COP = 501; |
| const int COE = 502; |
| const int COD = 503; |
| const int COO = 504; |
| const int BON = 601; |
| const int PCO = 602; |
| const int TSC = 701; |
| const int CSC = 702; |
| const int QSC = 703; |
| const int HPX = 801; |
| const int XPH = 802; |
|
|
|
|
| |
| const char *prj_errmsg[] = { |
| "Success", |
| "Null prjprm pointer passed", |
| "Invalid projection parameters", |
| "One or more of the (x,y) coordinates were invalid", |
| "One or more of the (phi,theta) coordinates were invalid"}; |
|
|
| |
| #define PRJERR_BAD_PARAM_SET(function) \ |
| wcserr_set(&(prj->err), PRJERR_BAD_PARAM, function, __FILE__, __LINE__, \ |
| "Invalid parameters for %s projection", prj->name); |
|
|
| #define PRJERR_BAD_PIX_SET(function) \ |
| wcserr_set(&(prj->err), PRJERR_BAD_PIX, function, __FILE__, __LINE__, \ |
| "One or more of the (x, y) coordinates were invalid for %s projection", \ |
| prj->name); |
|
|
| #define PRJERR_BAD_WORLD_SET(function) \ |
| wcserr_set(&(prj->err), PRJERR_BAD_WORLD, function, __FILE__, __LINE__, \ |
| "One or more of the (lat, lng) coordinates were invalid for " \ |
| "%s projection", prj->name); |
|
|
| #define copysign(X, Y) ((Y) < 0.0 ? -fabs(X) : fabs(X)) |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int prjini(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| register int k; |
|
|
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = 0; |
|
|
| strcpy(prj->code, " "); |
| prj->pv[0] = 0.0; |
| prj->pv[1] = UNDEFINED; |
| prj->pv[2] = UNDEFINED; |
| prj->pv[3] = UNDEFINED; |
| for (k = 4; k < PVN; prj->pv[k++] = 0.0); |
| prj->r0 = 0.0; |
| prj->phi0 = UNDEFINED; |
| prj->theta0 = UNDEFINED; |
| prj->bounds = 7; |
|
|
| strcpy(prj->name, "undefined"); |
| for (k = 9; k < 40; prj->name[k++] = '\0'); |
| prj->category = 0; |
| prj->pvrange = 0; |
| prj->simplezen = 0; |
| prj->equiareal = 0; |
| prj->conformal = 0; |
| prj->global = 0; |
| prj->divergent = 0; |
| prj->x0 = 0.0; |
| prj->y0 = 0.0; |
|
|
| prj->err = 0x0; |
|
|
| prj->padding = 0x0; |
| for (k = 0; k < 10; prj->w[k++] = 0.0); |
| prj->m = 0; |
| prj->n = 0; |
| prj->prjx2s = 0x0; |
| prj->prjs2x = 0x0; |
|
|
| return 0; |
| } |
|
|
| |
|
|
| int prjfree(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| if (prj->err) { |
| free(prj->err); |
| prj->err = 0x0; |
| } |
|
|
| return 0; |
| } |
|
|
| |
|
|
| int prjprt(prj) |
|
|
| const struct prjprm *prj; |
|
|
| { |
| char hext[32]; |
| int i, n; |
|
|
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| wcsprintf(" flag: %d\n", prj->flag); |
| wcsprintf(" code: \"%s\"\n", prj->code); |
| wcsprintf(" r0: %9f\n", prj->r0); |
| wcsprintf(" pv:"); |
| if (prj->pvrange) { |
| n = (prj->pvrange)%100; |
|
|
| if (prj->pvrange/100) { |
| wcsprintf(" (0)"); |
| } else { |
| wcsprintf(" %#- 11.5g", prj->pv[0]); |
| n--; |
| } |
|
|
| for (i = 1; i <= n; i++) { |
| if (i%5 == 1) { |
| wcsprintf("\n "); |
| } |
|
|
| if (undefined(prj->pv[i])) { |
| wcsprintf(" UNDEFINED "); |
| } else { |
| wcsprintf(" %#- 11.5g", prj->pv[i]); |
| } |
| } |
| wcsprintf("\n"); |
| } else { |
| wcsprintf(" (not used)\n"); |
| } |
| if (undefined(prj->phi0)) { |
| wcsprintf(" phi0: UNDEFINED\n"); |
| } else { |
| wcsprintf(" phi0: %9f\n", prj->phi0); |
| } |
| if (undefined(prj->theta0)) { |
| wcsprintf(" theta0: UNDEFINED\n"); |
| } else { |
| wcsprintf(" theta0: %9f\n", prj->theta0); |
| } |
| wcsprintf(" bounds: %d\n", prj->bounds); |
|
|
| wcsprintf("\n"); |
| wcsprintf(" name: \"%s\"\n", prj->name); |
| wcsprintf(" category: %d (%s)\n", prj->category, |
| prj_categories[prj->category]); |
| wcsprintf(" pvrange: %d\n", prj->pvrange); |
| wcsprintf(" simplezen: %d\n", prj->simplezen); |
| wcsprintf(" equiareal: %d\n", prj->equiareal); |
| wcsprintf(" conformal: %d\n", prj->conformal); |
| wcsprintf(" global: %d\n", prj->global); |
| wcsprintf(" divergent: %d\n", prj->divergent); |
| wcsprintf(" x0: %f\n", prj->x0); |
| wcsprintf(" y0: %f\n", prj->y0); |
|
|
| WCSPRINTF_PTR(" err: ", prj->err, "\n"); |
| if (prj->err) { |
| wcserr_prt(prj->err, " "); |
| } |
|
|
| wcsprintf(" w[]:"); |
| for (i = 0; i < 5; i++) { |
| wcsprintf(" %#- 11.5g", prj->w[i]); |
| } |
| wcsprintf("\n "); |
| for (i = 5; i < 10; i++) { |
| wcsprintf(" %#- 11.5g", prj->w[i]); |
| } |
| wcsprintf("\n"); |
| wcsprintf(" m: %d\n", prj->m); |
| wcsprintf(" n: %d\n", prj->n); |
| wcsprintf(" prjx2s: %s\n", |
| wcsutil_fptr2str((void (*)(void))prj->prjx2s, hext)); |
| wcsprintf(" prjs2x: %s\n", |
| wcsutil_fptr2str((void (*)(void))prj->prjs2x, hext)); |
|
|
| return 0; |
| } |
|
|
| |
|
|
| int prjperr(const struct prjprm *prj, const char *prefix) |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| if (prj->err) { |
| wcserr_prt(prj->err, prefix); |
| } |
|
|
| return 0; |
| } |
|
|
| |
|
|
| int prjbchk(tol, nphi, ntheta, spt, phi, theta, stat) |
|
|
| double tol; |
| int nphi, ntheta, spt; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int status = 0; |
| register int iphi, itheta, *statp; |
| register double *phip, *thetap; |
|
|
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++) { |
| for (iphi = 0; iphi < nphi; iphi++, phip += spt, thetap += spt, statp++) { |
| |
| if (*statp == 0) { |
| if (*phip < -180.0) { |
| if (*phip < -180.0-tol) { |
| *statp = 1; |
| status = 1; |
| } else { |
| *phip = -180.0; |
| } |
| } else if (180.0 < *phip) { |
| if (180.0+tol < *phip) { |
| *statp = 1; |
| status = 1; |
| } else { |
| *phip = 180.0; |
| } |
| } |
|
|
| if (*thetap < -90.0) { |
| if (*thetap < -90.0-tol) { |
| *statp = 1; |
| status = 1; |
| } else { |
| *thetap = -90.0; |
| } |
| } else if (90.0 < *thetap) { |
| if (90.0+tol < *thetap) { |
| *statp = 1; |
| status = 1; |
| } else { |
| *thetap = 90.0; |
| } |
| } |
| } |
| } |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int prjset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| static const char *function = "prjset"; |
|
|
| int status; |
| struct wcserr **err; |
|
|
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| err = &(prj->err); |
|
|
| |
| prj->code[3] = '\0'; |
| if (strcmp(prj->code, "AZP") == 0) { |
| status = azpset(prj); |
| } else if (strcmp(prj->code, "SZP") == 0) { |
| status = szpset(prj); |
| } else if (strcmp(prj->code, "TAN") == 0) { |
| status = tanset(prj); |
| } else if (strcmp(prj->code, "STG") == 0) { |
| status = stgset(prj); |
| } else if (strcmp(prj->code, "SIN") == 0) { |
| status = sinset(prj); |
| } else if (strcmp(prj->code, "ARC") == 0) { |
| status = arcset(prj); |
| } else if (strcmp(prj->code, "ZPN") == 0) { |
| status = zpnset(prj); |
| } else if (strcmp(prj->code, "ZEA") == 0) { |
| status = zeaset(prj); |
| } else if (strcmp(prj->code, "AIR") == 0) { |
| status = airset(prj); |
| } else if (strcmp(prj->code, "CYP") == 0) { |
| status = cypset(prj); |
| } else if (strcmp(prj->code, "CEA") == 0) { |
| status = ceaset(prj); |
| } else if (strcmp(prj->code, "CAR") == 0) { |
| status = carset(prj); |
| } else if (strcmp(prj->code, "MER") == 0) { |
| status = merset(prj); |
| } else if (strcmp(prj->code, "SFL") == 0) { |
| status = sflset(prj); |
| } else if (strcmp(prj->code, "PAR") == 0) { |
| status = parset(prj); |
| } else if (strcmp(prj->code, "MOL") == 0) { |
| status = molset(prj); |
| } else if (strcmp(prj->code, "AIT") == 0) { |
| status = aitset(prj); |
| } else if (strcmp(prj->code, "COP") == 0) { |
| status = copset(prj); |
| } else if (strcmp(prj->code, "COE") == 0) { |
| status = coeset(prj); |
| } else if (strcmp(prj->code, "COD") == 0) { |
| status = codset(prj); |
| } else if (strcmp(prj->code, "COO") == 0) { |
| status = cooset(prj); |
| } else if (strcmp(prj->code, "BON") == 0) { |
| status = bonset(prj); |
| } else if (strcmp(prj->code, "PCO") == 0) { |
| status = pcoset(prj); |
| } else if (strcmp(prj->code, "TSC") == 0) { |
| status = tscset(prj); |
| } else if (strcmp(prj->code, "CSC") == 0) { |
| status = cscset(prj); |
| } else if (strcmp(prj->code, "QSC") == 0) { |
| status = qscset(prj); |
| } else if (strcmp(prj->code, "HPX") == 0) { |
| status = hpxset(prj); |
| } else if (strcmp(prj->code, "XPH") == 0) { |
| status = xphset(prj); |
| } else { |
| |
| status = wcserr_set(WCSERR_SET(PRJERR_BAD_PARAM), |
| "Unrecognized projection code '%s'", prj->code); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int prjx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int status; |
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag == 0) { |
| if ((status = prjset(prj))) return status; |
| } |
|
|
| return prj->prjx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat); |
| } |
|
|
| |
|
|
| int prjs2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int status; |
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag == 0) { |
| if ((status = prjset(prj))) return status; |
| } |
|
|
| return prj->prjs2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat); |
| } |
|
|
| |
| |
| |
| |
|
|
| int prjoff(prj, phi0, theta0) |
|
|
| struct prjprm *prj; |
| const double phi0, theta0; |
|
|
| { |
| int stat; |
| double x0, y0; |
|
|
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->x0 = 0.0; |
| prj->y0 = 0.0; |
|
|
| if (undefined(prj->phi0) || undefined(prj->theta0)) { |
| |
| prj->phi0 = phi0; |
| prj->theta0 = theta0; |
|
|
| } else { |
| if (prj->prjs2x(prj, 1, 1, 1, 1, &(prj->phi0), &(prj->theta0), &x0, &y0, |
| &stat)) { |
| return PRJERR_BAD_PARAM_SET("prjoff"); |
| } |
|
|
| prj->x0 = x0; |
| prj->y0 = y0; |
| } |
|
|
| return 0; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int azpset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = AZP; |
| strcpy(prj->code, "AZP"); |
|
|
| if (undefined(prj->pv[1])) prj->pv[1] = 0.0; |
| if (undefined(prj->pv[2])) prj->pv[2] = 0.0; |
| if (prj->r0 == 0.0) prj->r0 = R2D; |
|
|
| strcpy(prj->name, "zenithal/azimuthal perspective"); |
| prj->category = ZENITHAL; |
| prj->pvrange = 102; |
| prj->simplezen = prj->pv[2] == 0.0; |
| prj->equiareal = 0; |
| prj->conformal = 0; |
| prj->global = 0; |
| prj->divergent = prj->pv[1] <= 1.0; |
|
|
| prj->w[0] = prj->r0*(prj->pv[1] + 1.0); |
| if (prj->w[0] == 0.0) { |
| return PRJERR_BAD_PARAM_SET("azpset"); |
| } |
|
|
| prj->w[3] = cosd(prj->pv[2]); |
| if (prj->w[3] == 0.0) { |
| return PRJERR_BAD_PARAM_SET("azpset"); |
| } |
|
|
| prj->w[2] = 1.0/prj->w[3]; |
| prj->w[4] = sind(prj->pv[2]); |
| prj->w[1] = prj->w[4] / prj->w[3]; |
|
|
| if (fabs(prj->pv[1]) > 1.0) { |
| prj->w[5] = asind(-1.0/prj->pv[1]); |
| } else { |
| prj->w[5] = -90.0; |
| } |
|
|
| prj->w[6] = prj->pv[1] * prj->w[3]; |
| prj->w[7] = (fabs(prj->w[6]) < 1.0) ? 1.0 : 0.0; |
|
|
| prj->prjx2s = azpx2s; |
| prj->prjs2x = azps2x; |
|
|
| return prjoff(prj, 0.0, 90.0); |
| } |
|
|
| |
|
|
| int azpx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int mx, my, rowlen, rowoff, status; |
| double a, b, q, r, s, t, xj, yj, yc, yc2; |
| const double tol = 1.0e-13; |
| register int ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != AZP) { |
| if ((status = azpset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| xj = *xp + prj->x0; |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = xj; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| yj = *yp + prj->y0; |
|
|
| yc = yj*prj->w[3]; |
| yc2 = yc*yc; |
|
|
| q = prj->w[0] + yj*prj->w[4]; |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| xj = *phip; |
|
|
| r = sqrt(xj*xj + yc2); |
| if (r == 0.0) { |
| *phip = 0.0; |
| *thetap = 90.0; |
| *(statp++) = 0; |
|
|
| } else { |
| *phip = atan2d(xj, -yc); |
|
|
| s = r / q; |
| t = s*prj->pv[1]/sqrt(s*s + 1.0); |
|
|
| s = atan2d(1.0, s); |
|
|
| if (fabs(t) > 1.0) { |
| if (fabs(t) > 1.0+tol) { |
| *thetap = 0.0; |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("azpx2s"); |
| continue; |
| } |
| t = copysign(90.0, t); |
| } else { |
| t = asind(t); |
| } |
|
|
| a = s - t; |
| b = s + t + 180.0; |
|
|
| if (a > 90.0) a -= 360.0; |
| if (b > 90.0) b -= 360.0; |
|
|
| *thetap = (a > b) ? a : b; |
| *(statp++) = 0; |
| } |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-13, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("azpx2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int azps2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int mphi, mtheta, rowlen, rowoff, status; |
| double a, b, cosphi, costhe, r, s, sinphi, sinthe, t; |
| register int iphi, itheta, istat, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != AZP) { |
| if ((status = azpset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| sincosd(*phip, &sinphi, &cosphi); |
|
|
| xp = x + rowoff; |
| yp = y + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = sinphi; |
| *yp = cosphi; |
| xp += rowlen; |
| yp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| sincosd(*thetap, &sinthe, &costhe); |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| s = prj->w[1]*(*yp); |
| t = (prj->pv[1] + sinthe) + costhe*s; |
|
|
| if (t == 0.0) { |
| *xp = 0.0; |
| *yp = 0.0; |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_WORLD_SET("azps2x"); |
|
|
| } else { |
| r = prj->w[0]*costhe/t; |
|
|
| |
| istat = 0; |
| if (prj->bounds&1) { |
| if (*thetap < prj->w[5]) { |
| |
| istat = 1; |
| if (!status) status = PRJERR_BAD_WORLD_SET("azps2x"); |
|
|
| } else if (prj->w[7] > 0.0) { |
| |
| t = prj->pv[1] / sqrt(1.0 + s*s); |
|
|
| if (fabs(t) <= 1.0) { |
| s = atand(-s); |
| t = asind(t); |
| a = s - t; |
| b = s + t + 180.0; |
|
|
| if (a > 90.0) a -= 360.0; |
| if (b > 90.0) b -= 360.0; |
|
|
| if (*thetap < ((a > b) ? a : b)) { |
| istat = 1; |
| if (!status) status = PRJERR_BAD_WORLD_SET("azps2x"); |
| } |
| } |
| } |
| } |
|
|
| *xp = r*(*xp) - prj->x0; |
| *yp = -r*(*yp)*prj->w[2] - prj->y0; |
| *(statp++) = istat; |
| } |
| } |
| } |
|
|
| return status; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int szpset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = SZP; |
| strcpy(prj->code, "SZP"); |
|
|
| if (undefined(prj->pv[1])) prj->pv[1] = 0.0; |
| if (undefined(prj->pv[2])) prj->pv[2] = 0.0; |
| if (undefined(prj->pv[3])) prj->pv[3] = 90.0; |
| if (prj->r0 == 0.0) prj->r0 = R2D; |
|
|
| strcpy(prj->name, "slant zenithal perspective"); |
| prj->category = ZENITHAL; |
| prj->pvrange = 103; |
| prj->simplezen = prj->pv[3] == 90.0; |
| prj->equiareal = 0; |
| prj->conformal = 0; |
| prj->global = 0; |
| prj->divergent = prj->pv[1] <= 1.0; |
|
|
| prj->w[0] = 1.0/prj->r0; |
|
|
| prj->w[3] = prj->pv[1] * sind(prj->pv[3]) + 1.0; |
| if (prj->w[3] == 0.0) { |
| return PRJERR_BAD_PARAM_SET("szpset"); |
| } |
|
|
| prj->w[1] = -prj->pv[1] * cosd(prj->pv[3]) * sind(prj->pv[2]); |
| prj->w[2] = prj->pv[1] * cosd(prj->pv[3]) * cosd(prj->pv[2]); |
| prj->w[4] = prj->r0 * prj->w[1]; |
| prj->w[5] = prj->r0 * prj->w[2]; |
| prj->w[6] = prj->r0 * prj->w[3]; |
| prj->w[7] = (prj->w[3] - 1.0) * prj->w[3] - 1.0; |
|
|
| if (fabs(prj->w[3] - 1.0) < 1.0) { |
| prj->w[8] = asind(1.0 - prj->w[3]); |
| } else { |
| prj->w[8] = -90.0; |
| } |
|
|
| prj->prjx2s = szpx2s; |
| prj->prjs2x = szps2x; |
|
|
| return prjoff(prj, 0.0, 90.0); |
| } |
|
|
| |
|
|
| int szpx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int mx, my, rowlen, rowoff, status; |
| double a, b, c, d, r2, sinth1, sinth2, sinthe, t, x1, xr, xy, y1, yr, z; |
| const double tol = 1.0e-13; |
| register int ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != SZP) { |
| if ((status = szpset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| xr = (*xp + prj->x0)*prj->w[0]; |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = xr; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| yr = (*yp + prj->y0)*prj->w[0]; |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| xr = *phip; |
| r2 = xr*xr + yr*yr; |
|
|
| x1 = (xr - prj->w[1])/prj->w[3]; |
| y1 = (yr - prj->w[2])/prj->w[3]; |
| xy = xr*x1 + yr*y1; |
|
|
| if (r2 < 1.0e-10) { |
| |
| z = r2/2.0; |
| *thetap = 90.0 - R2D*sqrt(r2/(1.0 + xy)); |
|
|
| } else { |
| t = x1*x1 + y1*y1; |
| a = t + 1.0; |
| b = xy - t; |
| c = r2 - xy - xy + t - 1.0; |
| d = b*b - a*c; |
|
|
| |
| if (d < 0.0) { |
| *phip = 0.0; |
| *thetap = 0.0; |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("szpx2s"); |
| continue; |
| } |
| d = sqrt(d); |
|
|
| |
| sinth1 = (-b + d)/a; |
| sinth2 = (-b - d)/a; |
| sinthe = (sinth1 > sinth2) ? sinth1 : sinth2; |
| if (sinthe > 1.0) { |
| if (sinthe-1.0 < tol) { |
| sinthe = 1.0; |
| } else { |
| sinthe = (sinth1 < sinth2) ? sinth1 : sinth2; |
| } |
| } |
|
|
| if (sinthe < -1.0) { |
| if (sinthe+1.0 > -tol) { |
| sinthe = -1.0; |
| } |
| } |
|
|
| if (sinthe > 1.0 || sinthe < -1.0) { |
| *phip = 0.0; |
| *thetap = 0.0; |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("szpx2s"); |
| continue; |
| } |
|
|
| *thetap = asind(sinthe); |
|
|
| z = 1.0 - sinthe; |
| } |
|
|
| *phip = atan2d(xr - x1*z, -(yr - y1*z)); |
| *(statp++) = 0; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-13, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("szpx2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int szps2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int mphi, mtheta, rowlen, rowoff, status; |
| double a, b, cosphi, r, s, sinphi, t, u, v; |
| register int iphi, itheta, istat, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != SZP) { |
| if ((status = szpset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| sincosd(*phip, &sinphi, &cosphi); |
|
|
| xp = x + rowoff; |
| yp = y + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = sinphi; |
| *yp = cosphi; |
| xp += rowlen; |
| yp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| s = 1.0 - sind(*thetap); |
| t = prj->w[3] - s; |
|
|
| if (t == 0.0) { |
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| *xp = 0.0; |
| *yp = 0.0; |
| *(statp++) = 1; |
| } |
|
|
| if (!status) status = PRJERR_BAD_WORLD_SET("szps2x"); |
|
|
| } else { |
| r = prj->w[6]*cosd(*thetap)/t; |
| u = prj->w[4]*s/t + prj->x0; |
| v = prj->w[5]*s/t + prj->y0; |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| |
| istat = 0; |
| if (prj->bounds&1) { |
| if (*thetap < prj->w[8]) { |
| |
| istat = 1; |
| if (!status) status = PRJERR_BAD_WORLD_SET("szps2x"); |
|
|
| } else if (fabs(prj->pv[1]) > 1.0) { |
| |
| s = prj->w[1]*(*xp) - prj->w[2]*(*yp); |
| t = 1.0/sqrt(prj->w[7] + s*s); |
|
|
| if (fabs(t) <= 1.0) { |
| s = atan2d(s, prj->w[3] - 1.0); |
| t = asind(t); |
| a = s - t; |
| b = s + t + 180.0; |
|
|
| if (a > 90.0) a -= 360.0; |
| if (b > 90.0) b -= 360.0; |
|
|
| if (*thetap < ((a > b) ? a : b)) { |
| istat = 1; |
| if (!status) status = PRJERR_BAD_WORLD_SET("szps2x"); |
| } |
| } |
| } |
| } |
|
|
| *xp = r*(*xp) - u; |
| *yp = -r*(*yp) - v; |
| *(statp++) = istat; |
| } |
| } |
| } |
|
|
| return status; |
| } |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int tanset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = TAN; |
| strcpy(prj->code, "TAN"); |
|
|
| if (prj->r0 == 0.0) prj->r0 = R2D; |
|
|
| strcpy(prj->name, "gnomonic"); |
| prj->category = ZENITHAL; |
| prj->pvrange = 0; |
| prj->simplezen = 1; |
| prj->equiareal = 0; |
| prj->conformal = 0; |
| prj->global = 0; |
| prj->divergent = 1; |
|
|
| prj->prjx2s = tanx2s; |
| prj->prjs2x = tans2x; |
|
|
| return prjoff(prj, 0.0, 90.0); |
| } |
|
|
| |
|
|
| int tanx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int mx, my, rowlen, rowoff, status; |
| double r, xj, yj, yj2; |
| register int ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != TAN) { |
| if ((status = tanset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| xj = *xp + prj->x0; |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = xj; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| yj = *yp + prj->y0; |
| yj2 = yj*yj; |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| xj = *phip; |
|
|
| r = sqrt(xj*xj + yj2); |
| if (r == 0.0) { |
| *phip = 0.0; |
| } else { |
| *phip = atan2d(xj, -yj); |
| } |
|
|
| *thetap = atan2d(prj->r0, r); |
| *(statp++) = 0; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-13, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("tanx2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int tans2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int mphi, mtheta, rowlen, rowoff, status; |
| double cosphi, r, s, sinphi; |
| register int iphi, itheta, istat, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != TAN) { |
| if ((status = tanset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| sincosd(*phip, &sinphi, &cosphi); |
|
|
| xp = x + rowoff; |
| yp = y + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = sinphi; |
| *yp = cosphi; |
| xp += rowlen; |
| yp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| s = sind(*thetap); |
| if (s == 0.0) { |
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| *xp = 0.0; |
| *yp = 0.0; |
| *(statp++) = 1; |
| } |
| if (!status) status = PRJERR_BAD_WORLD_SET("tans2x"); |
|
|
| } else { |
| r = prj->r0*cosd(*thetap)/s; |
|
|
| |
| istat = 0; |
| if (prj->bounds&1) { |
| if (s < 0.0) { |
| istat = 1; |
| if (!status) status = PRJERR_BAD_WORLD_SET("tans2x"); |
| } |
| } |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| *xp = r*(*xp) - prj->x0; |
| *yp = -r*(*yp) - prj->y0; |
| *(statp++) = istat; |
| } |
| } |
| } |
|
|
| return status; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int stgset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = STG; |
| strcpy(prj->code, "STG"); |
|
|
| strcpy(prj->name, "stereographic"); |
| prj->category = ZENITHAL; |
| prj->pvrange = 0; |
| prj->simplezen = 1; |
| prj->equiareal = 0; |
| prj->conformal = 1; |
| prj->global = 0; |
| prj->divergent = 1; |
|
|
| if (prj->r0 == 0.0) { |
| prj->r0 = R2D; |
| prj->w[0] = 360.0/PI; |
| prj->w[1] = PI/360.0; |
| } else { |
| prj->w[0] = 2.0*prj->r0; |
| prj->w[1] = 1.0/prj->w[0]; |
| } |
|
|
| prj->prjx2s = stgx2s; |
| prj->prjs2x = stgs2x; |
|
|
| return prjoff(prj, 0.0, 90.0); |
| } |
|
|
| |
|
|
| int stgx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int mx, my, rowlen, rowoff, status; |
| double r, xj, yj, yj2; |
| register int ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != STG) { |
| if ((status = stgset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| xj = *xp + prj->x0; |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = xj; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| yj = *yp + prj->y0; |
| yj2 = yj*yj; |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| xj = *phip; |
|
|
| r = sqrt(xj*xj + yj2); |
| if (r == 0.0) { |
| *phip = 0.0; |
| } else { |
| *phip = atan2d(xj, -yj); |
| } |
|
|
| *thetap = 90.0 - 2.0*atand(r*prj->w[1]); |
| *(statp++) = 0; |
| } |
| } |
|
|
| return 0; |
| } |
|
|
| |
|
|
| int stgs2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int mphi, mtheta, rowlen, rowoff, status; |
| double cosphi, r, s, sinphi; |
| register int iphi, itheta, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != STG) { |
| if ((status = stgset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| sincosd(*phip, &sinphi, &cosphi); |
|
|
| xp = x + rowoff; |
| yp = y + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = sinphi; |
| *yp = cosphi; |
| xp += rowlen; |
| yp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| s = 1.0 + sind(*thetap); |
| if (s == 0.0) { |
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| *xp = 0.0; |
| *yp = 0.0; |
| *(statp++) = 1; |
| } |
| if (!status) status = PRJERR_BAD_WORLD_SET("stgs2x"); |
|
|
| } else { |
| r = prj->w[0]*cosd(*thetap)/s; |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| *xp = r*(*xp) - prj->x0; |
| *yp = -r*(*yp) - prj->y0; |
| *(statp++) = 0; |
| } |
| } |
| } |
|
|
| return status; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int sinset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = SIN; |
| strcpy(prj->code, "SIN"); |
|
|
| if (undefined(prj->pv[1])) prj->pv[1] = 0.0; |
| if (undefined(prj->pv[2])) prj->pv[2] = 0.0; |
| if (prj->r0 == 0.0) prj->r0 = R2D; |
|
|
| strcpy(prj->name, "orthographic/synthesis"); |
| prj->category = ZENITHAL; |
| prj->pvrange = 102; |
| prj->simplezen = (prj->pv[1] == 0.0 && prj->pv[2] == 0.0); |
| prj->equiareal = 0; |
| prj->conformal = 0; |
| prj->global = 0; |
| prj->divergent = 0; |
|
|
| prj->w[0] = 1.0/prj->r0; |
| prj->w[1] = prj->pv[1]*prj->pv[1] + prj->pv[2]*prj->pv[2]; |
| prj->w[2] = prj->w[1] + 1.0; |
| prj->w[3] = prj->w[1] - 1.0; |
|
|
| prj->prjx2s = sinx2s; |
| prj->prjs2x = sins2x; |
|
|
| return prjoff(prj, 0.0, 90.0); |
| } |
|
|
| |
|
|
| int sinx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int mx, my, rowlen, rowoff, status; |
| const double tol = 1.0e-13; |
| double a, b, c, d, eta, r2, sinth1, sinth2, sinthe, x0, xi, x1, xy, y0, y02, |
| y1, z; |
| register int ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != SIN) { |
| if ((status = sinset(prj))) return status; |
| } |
|
|
| xi = prj->pv[1]; |
| eta = prj->pv[2]; |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| x0 = (*xp + prj->x0)*prj->w[0]; |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = x0; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| y0 = (*yp + prj->y0)*prj->w[0]; |
| y02 = y0*y0; |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| |
| x0 = *phip; |
| r2 = x0*x0 + y02; |
|
|
| if (prj->w[1] == 0.0) { |
| |
| if (r2 != 0.0) { |
| *phip = atan2d(x0, -y0); |
| } else { |
| *phip = 0.0; |
| } |
|
|
| if (r2 < 0.5) { |
| *thetap = acosd(sqrt(r2)); |
| } else if (r2 <= 1.0) { |
| *thetap = asind(sqrt(1.0 - r2)); |
| } else { |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("sinx2s") |
| continue; |
| } |
|
|
| } else { |
| |
| xy = x0*xi + y0*eta; |
|
|
| if (r2 < 1.0e-10) { |
| |
| z = r2/2.0; |
| *thetap = 90.0 - R2D*sqrt(r2/(1.0 + xy)); |
|
|
| } else { |
| a = prj->w[2]; |
| b = xy - prj->w[1]; |
| c = r2 - xy - xy + prj->w[3]; |
| d = b*b - a*c; |
|
|
| |
| if (d < 0.0) { |
| *phip = 0.0; |
| *thetap = 0.0; |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("sinx2s") |
| continue; |
| } |
| d = sqrt(d); |
|
|
| |
| sinth1 = (-b + d)/a; |
| sinth2 = (-b - d)/a; |
| sinthe = (sinth1 > sinth2) ? sinth1 : sinth2; |
| if (sinthe > 1.0) { |
| if (sinthe-1.0 < tol) { |
| sinthe = 1.0; |
| } else { |
| sinthe = (sinth1 < sinth2) ? sinth1 : sinth2; |
| } |
| } |
|
|
| if (sinthe < -1.0) { |
| if (sinthe+1.0 > -tol) { |
| sinthe = -1.0; |
| } |
| } |
|
|
| if (sinthe > 1.0 || sinthe < -1.0) { |
| *phip = 0.0; |
| *thetap = 0.0; |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("sinx2s") |
| continue; |
| } |
|
|
| *thetap = asind(sinthe); |
| z = 1.0 - sinthe; |
| } |
|
|
| x1 = -y0 + eta*z; |
| y1 = x0 - xi*z; |
| if (x1 == 0.0 && y1 == 0.0) { |
| *phip = 0.0; |
| } else { |
| *phip = atan2d(y1,x1); |
| } |
| } |
|
|
| *(statp++) = 0; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-13, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("sinx2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int sins2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int mphi, mtheta, rowlen, rowoff, status; |
| double cosphi, costhe, sinphi, r, t, z, z1, z2; |
| register int iphi, itheta, istat, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != SIN) { |
| if ((status = sinset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| sincosd(*phip, &sinphi, &cosphi); |
|
|
| xp = x + rowoff; |
| yp = y + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = sinphi; |
| *yp = cosphi; |
| xp += rowlen; |
| yp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| t = (90.0 - fabs(*thetap))*D2R; |
| if (t < 1.0e-5) { |
| if (*thetap > 0.0) { |
| z = t*t/2.0; |
| } else { |
| z = 2.0 - t*t/2.0; |
| } |
| costhe = t; |
| } else { |
| z = 1.0 - sind(*thetap); |
| costhe = cosd(*thetap); |
| } |
| r = prj->r0*costhe; |
|
|
| if (prj->w[1] == 0.0) { |
| |
| istat = 0; |
| if (prj->bounds&1) { |
| if (*thetap < 0.0) { |
| istat = 1; |
| if (!status) status = PRJERR_BAD_WORLD_SET("sins2x"); |
| } |
| } |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| *xp = r*(*xp) - prj->x0; |
| *yp = -r*(*yp) - prj->y0; |
| *(statp++) = istat; |
| } |
|
|
| } else { |
| |
| z *= prj->r0; |
| z1 = prj->pv[1]*z - prj->x0; |
| z2 = prj->pv[2]*z - prj->y0; |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| istat = 0; |
| if (prj->bounds&1) { |
| t = -atand(prj->pv[1]*(*xp) - prj->pv[2]*(*yp)); |
| if (*thetap < t) { |
| istat = 1; |
| if (!status) status = PRJERR_BAD_WORLD_SET("sins2x"); |
| } |
| } |
|
|
| *xp = r*(*xp) + z1; |
| *yp = -r*(*yp) + z2; |
| *(statp++) = istat; |
| } |
| } |
| } |
|
|
| return status; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int arcset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = ARC; |
| strcpy(prj->code, "ARC"); |
|
|
| strcpy(prj->name, "zenithal/azimuthal equidistant"); |
| prj->category = ZENITHAL; |
| prj->pvrange = 0; |
| prj->simplezen = 1; |
| prj->equiareal = 0; |
| prj->conformal = 0; |
| prj->global = 1; |
| prj->divergent = 0; |
|
|
| if (prj->r0 == 0.0) { |
| prj->r0 = R2D; |
| prj->w[0] = 1.0; |
| prj->w[1] = 1.0; |
| } else { |
| prj->w[0] = prj->r0*D2R; |
| prj->w[1] = 1.0/prj->w[0]; |
| } |
|
|
| prj->prjx2s = arcx2s; |
| prj->prjs2x = arcs2x; |
|
|
| return prjoff(prj, 0.0, 90.0); |
| } |
|
|
| |
|
|
| int arcx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int mx, my, rowlen, rowoff, status; |
| double r, xj, yj, yj2; |
| register int ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != ARC) { |
| if ((status = arcset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| xj = *xp + prj->x0; |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = xj; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| yj = *yp + prj->y0; |
| yj2 = yj*yj; |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| xj = *phip; |
|
|
| r = sqrt(xj*xj + yj2); |
| if (r == 0.0) { |
| *phip = 0.0; |
| *thetap = 90.0; |
| } else { |
| *phip = atan2d(xj, -yj); |
| *thetap = 90.0 - r*prj->w[1]; |
| } |
|
|
| *(statp++) = 0; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-13, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("arcx2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int arcs2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int mphi, mtheta, rowlen, rowoff, status; |
| double cosphi, r, sinphi; |
| register int iphi, itheta, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != ARC) { |
| if ((status = arcset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| sincosd(*phip, &sinphi, &cosphi); |
|
|
| xp = x + rowoff; |
| yp = y + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = sinphi; |
| *yp = cosphi; |
| xp += rowlen; |
| yp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| r = prj->w[0]*(90.0 - *thetap); |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| *xp = r*(*xp) - prj->x0; |
| *yp = -r*(*yp) - prj->y0; |
| *(statp++) = 0; |
| } |
| } |
|
|
| return 0; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int zpnset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| int j, k, m; |
| double d, d1, d2, r, zd, zd1, zd2; |
| const double tol = 1.0e-13; |
|
|
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| strcpy(prj->code, "ZPN"); |
| prj->flag = ZPN; |
|
|
| if (undefined(prj->pv[1])) prj->pv[1] = 0.0; |
| if (undefined(prj->pv[2])) prj->pv[2] = 0.0; |
| if (undefined(prj->pv[3])) prj->pv[3] = 0.0; |
| if (prj->r0 == 0.0) prj->r0 = R2D; |
|
|
| strcpy(prj->name, "zenithal/azimuthal polynomial"); |
| prj->category = ZENITHAL; |
| prj->pvrange = 30; |
| prj->simplezen = 1; |
| prj->equiareal = 0; |
| prj->conformal = 0; |
| prj->global = 0; |
| prj->divergent = 0; |
|
|
| |
| for (k = PVN-1; k >= 0 && prj->pv[k] == 0.0; k--); |
| if (k < 0) { |
| return PRJERR_BAD_PARAM_SET("zpnset"); |
| } |
|
|
| prj->n = k; |
|
|
| if (k < 2) { |
| |
| prj->w[0] = PI; |
|
|
| } else { |
| |
| zd1 = 0.0; |
| d1 = prj->pv[1]; |
| if (d1 <= 0.0) { |
| return PRJERR_BAD_PARAM_SET("zpnset"); |
| } |
|
|
| |
| for (j = 0; j < 180; j++) { |
| zd2 = j*D2R; |
| d2 = 0.0; |
| for (m = k; m > 0; m--) { |
| d2 = d2*zd2 + m*prj->pv[m]; |
| } |
|
|
| if (d2 <= 0.0) break; |
| zd1 = zd2; |
| d1 = d2; |
| } |
|
|
| if (j == 180) { |
| |
| zd = PI; |
| prj->global = 1; |
| } else { |
| |
| for (j = 1; j <= 10; j++) { |
| zd = zd1 - d1*(zd2-zd1)/(d2-d1); |
|
|
| d = 0.0; |
| for (m = k; m > 0; m--) { |
| d = d*zd + m*prj->pv[m]; |
| } |
|
|
| if (fabs(d) < tol) break; |
|
|
| if (d < 0.0) { |
| zd2 = zd; |
| d2 = d; |
| } else { |
| zd1 = zd; |
| d1 = d; |
| } |
| } |
| } |
|
|
| r = 0.0; |
| for (m = k; m >= 0; m--) { |
| r = r*zd + prj->pv[m]; |
| } |
| prj->w[0] = zd; |
| prj->w[1] = r; |
| } |
|
|
| prj->prjx2s = zpnx2s; |
| prj->prjs2x = zpns2x; |
|
|
| return prjoff(prj, 0.0, 90.0); |
| } |
|
|
| |
|
|
| int zpnx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int j, k, m, mx, my, rowlen, rowoff, status; |
| double a, b, c, d, lambda, r, r1, r2, rt, xj, yj, yj2, zd, zd1, zd2; |
| const double tol = 1.0e-13; |
| register int ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != ZPN) { |
| if ((status = zpnset(prj))) return status; |
| } |
|
|
| k = prj->n; |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| xj = *xp + prj->x0; |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = xj; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| yj = *yp + prj->y0; |
| yj2 = yj*yj; |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| xj = *phip; |
|
|
| r = sqrt(xj*xj + yj2)/prj->r0; |
| if (r == 0.0) { |
| *phip = 0.0; |
| } else { |
| *phip = atan2d(xj, -yj); |
| } |
|
|
| if (k < 1) { |
| |
| return PRJERR_BAD_PARAM_SET("zpnx2s"); |
|
|
| } else if (k == 1) { |
| |
| zd = (r - prj->pv[0])/prj->pv[1]; |
|
|
| } else if (k == 2) { |
| |
| a = prj->pv[2]; |
| b = prj->pv[1]; |
| c = prj->pv[0] - r; |
|
|
| d = b*b - 4.0*a*c; |
| if (d < 0.0) { |
| *thetap = 0.0; |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("zpnx2s"); |
| continue; |
| } |
| d = sqrt(d); |
|
|
| |
| zd1 = (-b + d)/(2.0*a); |
| zd2 = (-b - d)/(2.0*a); |
| zd = (zd1<zd2) ? zd1 : zd2; |
| if (zd < -tol) zd = (zd1>zd2) ? zd1 : zd2; |
| if (zd < 0.0) { |
| if (zd < -tol) { |
| *thetap = 0.0; |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("zpnx2s"); |
| continue; |
| } |
| zd = 0.0; |
| } else if (zd > PI) { |
| if (zd > PI+tol) { |
| *thetap = 0.0; |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("zpnx2s"); |
| continue; |
| } |
| zd = PI; |
| } |
| } else { |
| |
| zd1 = 0.0; |
| r1 = prj->pv[0]; |
| zd2 = prj->w[0]; |
| r2 = prj->w[1]; |
|
|
| if (r < r1) { |
| if (r < r1-tol) { |
| *thetap = 0.0; |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("zpnx2s"); |
| continue; |
| } |
| zd = zd1; |
| } else if (r > r2) { |
| if (r > r2+tol) { |
| *thetap = 0.0; |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("zpnx2s"); |
| continue; |
| } |
| zd = zd2; |
| } else { |
| |
| for (j = 0; j < 100; j++) { |
| lambda = (r2 - r)/(r2 - r1); |
| if (lambda < 0.1) { |
| lambda = 0.1; |
| } else if (lambda > 0.9) { |
| lambda = 0.9; |
| } |
|
|
| zd = zd2 - lambda*(zd2 - zd1); |
|
|
| rt = 0.0; |
| for (m = k; m >= 0; m--) { |
| rt = (rt * zd) + prj->pv[m]; |
| } |
|
|
| if (rt < r) { |
| if (r-rt < tol) break; |
| r1 = rt; |
| zd1 = zd; |
| } else { |
| if (rt-r < tol) break; |
| r2 = rt; |
| zd2 = zd; |
| } |
|
|
| if (fabs(zd2-zd1) < tol) break; |
| } |
| } |
| } |
|
|
| *thetap = 90.0 - zd*R2D; |
| *(statp++) = 0; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-13, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("zpnx2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int zpns2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int m, mphi, mtheta, rowlen, rowoff, status; |
| double cosphi, r, s, sinphi; |
| register int iphi, itheta, istat, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != ZPN) { |
| if ((status = zpnset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| sincosd(*phip, &sinphi, &cosphi); |
|
|
| xp = x + rowoff; |
| yp = y + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = sinphi; |
| *yp = cosphi; |
| xp += rowlen; |
| yp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| s = (90.0 - *thetap)*D2R; |
|
|
| r = 0.0; |
| for (m = prj->n; m >= 0; m--) { |
| r = r*s + prj->pv[m]; |
| } |
| r *= prj->r0; |
|
|
| |
| istat = 0; |
| if (prj->bounds&1) { |
| if (s > prj->w[0]) { |
| istat = 1; |
| if (!status) status = PRJERR_BAD_WORLD_SET("zpns2x"); |
| } |
| } |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| *xp = r*(*xp) - prj->x0; |
| *yp = -r*(*yp) - prj->y0; |
| *(statp++) = istat; |
| } |
| } |
|
|
| return status; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int zeaset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = ZEA; |
| strcpy(prj->code, "ZEA"); |
|
|
| strcpy(prj->name, "zenithal/azimuthal equal area"); |
| prj->category = ZENITHAL; |
| prj->pvrange = 0; |
| prj->simplezen = 1; |
| prj->equiareal = 1; |
| prj->conformal = 0; |
| prj->global = 1; |
| prj->divergent = 0; |
|
|
| if (prj->r0 == 0.0) { |
| prj->r0 = R2D; |
| prj->w[0] = 360.0/PI; |
| prj->w[1] = PI/360.0; |
| } else { |
| prj->w[0] = 2.0*prj->r0; |
| prj->w[1] = 1.0/prj->w[0]; |
| } |
|
|
| prj->prjx2s = zeax2s; |
| prj->prjs2x = zeas2x; |
|
|
| return prjoff(prj, 0.0, 90.0); |
| } |
|
|
| |
|
|
| int zeax2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int mx, my, rowlen, rowoff, status; |
| double r, s, xj, yj, yj2; |
| const double tol = 1.0e-12; |
| register int ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != ZEA) { |
| if ((status = zeaset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| xj = *xp + prj->x0; |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = xj; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| yj = *yp + prj->y0; |
| yj2 = yj*yj; |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| xj = *phip; |
|
|
| r = sqrt(xj*xj + yj2); |
| if (r == 0.0) { |
| *phip = 0.0; |
| } else { |
| *phip = atan2d(xj, -yj); |
| } |
|
|
| s = r*prj->w[1]; |
| if (fabs(s) > 1.0) { |
| if (fabs(r - prj->w[0]) < tol) { |
| *thetap = -90.0; |
| } else { |
| *thetap = 0.0; |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("zeax2s"); |
| continue; |
| } |
| } else { |
| *thetap = 90.0 - 2.0*asind(s); |
| } |
|
|
| *(statp++) = 0; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-13, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("zeax2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int zeas2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int mphi, mtheta, rowlen, rowoff, status; |
| double cosphi, r, sinphi; |
| register int iphi, itheta, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != ZEA) { |
| if ((status = zeaset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| sincosd(*phip, &sinphi, &cosphi); |
|
|
| xp = x + rowoff; |
| yp = y + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = sinphi; |
| *yp = cosphi; |
| xp += rowlen; |
| yp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| r = prj->w[0]*sind((90.0 - *thetap)/2.0); |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| *xp = r*(*xp) - prj->x0; |
| *yp = -r*(*yp) - prj->y0; |
| *(statp++) = 0; |
| } |
| } |
|
|
| return 0; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int airset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| const double tol = 1.0e-4; |
| double cosxi; |
|
|
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = AIR; |
| strcpy(prj->code, "AIR"); |
|
|
| if (undefined(prj->pv[1])) prj->pv[1] = 90.0; |
| if (prj->r0 == 0.0) prj->r0 = R2D; |
|
|
| strcpy(prj->name, "Airy's zenithal"); |
| prj->category = ZENITHAL; |
| prj->pvrange = 101; |
| prj->simplezen = 1; |
| prj->equiareal = 0; |
| prj->conformal = 0; |
| prj->global = 0; |
| prj->divergent = 1; |
|
|
| prj->w[0] = 2.0*prj->r0; |
| if (prj->pv[1] == 90.0) { |
| prj->w[1] = -0.5; |
| prj->w[2] = 1.0; |
| } else if (prj->pv[1] > -90.0) { |
| cosxi = cosd((90.0 - prj->pv[1])/2.0); |
| prj->w[1] = log(cosxi)*(cosxi*cosxi)/(1.0-cosxi*cosxi); |
| prj->w[2] = 0.5 - prj->w[1]; |
| } else { |
| return PRJERR_BAD_PARAM_SET("airset"); |
| } |
|
|
| prj->w[3] = prj->w[0] * prj->w[2]; |
| prj->w[4] = tol; |
| prj->w[5] = prj->w[2]*tol; |
| prj->w[6] = R2D/prj->w[2]; |
|
|
| prj->prjx2s = airx2s; |
| prj->prjs2x = airs2x; |
|
|
| return prjoff(prj, 0.0, 90.0); |
| } |
|
|
| |
|
|
| int airx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int k, mx, my, rowlen, rowoff, status; |
| double cosxi, lambda, r, r1, r2, rt, tanxi, x1, x2, xi, xj, yj, yj2; |
| const double tol = 1.0e-12; |
| register int ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != AIR) { |
| if ((status = airset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| xj = *xp + prj->x0; |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = xj; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| yj = *yp + prj->y0; |
| yj2 = yj*yj; |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| xj = *phip; |
|
|
| r = sqrt(xj*xj + yj2)/prj->w[0]; |
| if (r == 0.0) { |
| *phip = 0.0; |
| } else { |
| *phip = atan2d(xj, -yj); |
| } |
|
|
|
|
| if (r == 0.0) { |
| xi = 0.0; |
| } else if (r < prj->w[5]) { |
| xi = r*prj->w[6]; |
| } else { |
| |
| x1 = x2 = 1.0; |
| r1 = r2 = 0.0; |
| for (k = 0; k < 30; k++) { |
| x2 = x1/2.0; |
| tanxi = sqrt(1.0-x2*x2)/x2; |
| r2 = -(log(x2)/tanxi + prj->w[1]*tanxi); |
|
|
| if (r2 >= r) break; |
| x1 = x2; |
| r1 = r2; |
| } |
| if (k == 30) { |
| *thetap = 0.0; |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("airx2s"); |
| continue; |
| } |
|
|
| for (k = 0; k < 100; k++) { |
| |
| lambda = (r2-r)/(r2-r1); |
| if (lambda < 0.1) { |
| lambda = 0.1; |
| } else if (lambda > 0.9) { |
| lambda = 0.9; |
| } |
| cosxi = x2 - lambda*(x2-x1); |
|
|
| tanxi = sqrt(1.0-cosxi*cosxi)/cosxi; |
| rt = -(log(cosxi)/tanxi + prj->w[1]*tanxi); |
|
|
| if (rt < r) { |
| if (r-rt < tol) break; |
| r1 = rt; |
| x1 = cosxi; |
| } else { |
| if (rt-r < tol) break; |
| r2 = rt; |
| x2 = cosxi; |
| } |
| } |
| if (k == 100) { |
| *thetap = 0.0; |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("airx2s"); |
| continue; |
| } |
|
|
| xi = acosd(cosxi); |
| } |
|
|
| *thetap = 90.0 - 2.0*xi; |
| *(statp++) = 0; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-13, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("airx2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int airs2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int mphi, mtheta, rowlen, rowoff, status; |
| double cosphi, cosxi, r, tanxi, xi, sinphi; |
| register int iphi, itheta, istat, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != AIR) { |
| if ((status = airset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| sincosd(*phip, &sinphi, &cosphi); |
|
|
| xp = x + rowoff; |
| yp = y + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = sinphi; |
| *yp = cosphi; |
| xp += rowlen; |
| yp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| istat = 0; |
|
|
| if (*thetap == 90.0) { |
| r = 0.0; |
| } else if (*thetap > -90.0) { |
| xi = D2R*(90.0 - *thetap)/2.0; |
| if (xi < prj->w[4]) { |
| r = xi*prj->w[3]; |
| } else { |
| cosxi = cosd((90.0 - *thetap)/2.0); |
| tanxi = sqrt(1.0 - cosxi*cosxi)/cosxi; |
| r = -prj->w[0]*(log(cosxi)/tanxi + prj->w[1]*tanxi); |
| } |
| } else { |
| r = 0.0; |
| istat = 1; |
| if (!status) status = PRJERR_BAD_WORLD_SET("airs2x"); |
| } |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| *xp = r*(*xp) - prj->x0; |
| *yp = -r*(*yp) - prj->y0; |
| *(statp++) = istat; |
| } |
| } |
|
|
| return status; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int cypset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = CYP; |
| strcpy(prj->code, "CYP"); |
|
|
| if (undefined(prj->pv[1])) prj->pv[1] = 1.0; |
| if (undefined(prj->pv[2])) prj->pv[2] = 1.0; |
|
|
| strcpy(prj->name, "cylindrical perspective"); |
| prj->category = CYLINDRICAL; |
| prj->pvrange = 102; |
| prj->simplezen = 0; |
| prj->equiareal = 0; |
| prj->conformal = 0; |
| prj->global = prj->pv[1] < -1.0 || 0.0 < prj->pv[1]; |
| prj->divergent = !prj->global; |
|
|
| if (prj->r0 == 0.0) { |
| prj->r0 = R2D; |
|
|
| prj->w[0] = prj->pv[2]; |
| if (prj->w[0] == 0.0) { |
| return PRJERR_BAD_PARAM_SET("cypset"); |
| } |
|
|
| prj->w[1] = 1.0/prj->w[0]; |
|
|
| prj->w[2] = R2D*(prj->pv[1] + prj->pv[2]); |
| if (prj->w[2] == 0.0) { |
| return PRJERR_BAD_PARAM_SET("cypset"); |
| } |
|
|
| prj->w[3] = 1.0/prj->w[2]; |
| } else { |
| prj->w[0] = prj->r0*prj->pv[2]*D2R; |
| if (prj->w[0] == 0.0) { |
| return PRJERR_BAD_PARAM_SET("cypset"); |
| } |
|
|
| prj->w[1] = 1.0/prj->w[0]; |
|
|
| prj->w[2] = prj->r0*(prj->pv[1] + prj->pv[2]); |
| if (prj->w[2] == 0.0) { |
| return PRJERR_BAD_PARAM_SET("cypset"); |
| } |
|
|
| prj->w[3] = 1.0/prj->w[2]; |
| } |
|
|
| prj->prjx2s = cypx2s; |
| prj->prjs2x = cyps2x; |
|
|
| return prjoff(prj, 0.0, 0.0); |
| } |
|
|
| |
|
|
| int cypx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int mx, my, rowlen, rowoff, status; |
| double eta, s, t; |
| register int ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != CYP) { |
| if ((status = cypset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| s = prj->w[1]*(*xp + prj->x0); |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = s; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| eta = prj->w[3]*(*yp + prj->y0); |
| t = atan2d(eta,1.0) + asind(eta*prj->pv[1]/sqrt(eta*eta+1.0)); |
|
|
| for (ix = 0; ix < mx; ix++, thetap += spt) { |
| *thetap = t; |
| *(statp++) = 0; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-13, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("cypx2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int cyps2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int mphi, mtheta, rowlen, rowoff, status; |
| double eta, xi; |
| register int iphi, itheta, istat, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != CYP) { |
| if ((status = cypset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| xi = prj->w[0]*(*phip) - prj->x0; |
|
|
| xp = x + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = xi; |
| xp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| eta = prj->pv[1] + cosd(*thetap); |
|
|
| istat = 0; |
| if (eta == 0.0) { |
| istat = 1; |
| if (!status) status = PRJERR_BAD_WORLD_SET("cyps2x"); |
|
|
| } else { |
| eta = prj->w[2]*sind(*thetap)/eta; |
| } |
|
|
| eta -= prj->y0; |
| for (iphi = 0; iphi < mphi; iphi++, yp += sxy) { |
| *yp = eta; |
| *(statp++) = istat; |
| } |
| } |
|
|
| return status; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int ceaset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = CEA; |
| strcpy(prj->code, "CEA"); |
|
|
| if (undefined(prj->pv[1])) prj->pv[1] = 1.0; |
|
|
| strcpy(prj->name, "cylindrical equal area"); |
| prj->category = CYLINDRICAL; |
| prj->pvrange = 101; |
| prj->simplezen = 0; |
| prj->equiareal = 1; |
| prj->conformal = 0; |
| prj->global = 1; |
| prj->divergent = 0; |
|
|
| if (prj->r0 == 0.0) { |
| prj->r0 = R2D; |
| prj->w[0] = 1.0; |
| prj->w[1] = 1.0; |
| if (prj->pv[1] <= 0.0 || prj->pv[1] > 1.0) { |
| return PRJERR_BAD_PARAM_SET("ceaset"); |
| } |
| prj->w[2] = prj->r0/prj->pv[1]; |
| prj->w[3] = prj->pv[1]/prj->r0; |
| } else { |
| prj->w[0] = prj->r0*D2R; |
| prj->w[1] = R2D/prj->r0; |
| if (prj->pv[1] <= 0.0 || prj->pv[1] > 1.0) { |
| return PRJERR_BAD_PARAM_SET("ceaset"); |
| } |
| prj->w[2] = prj->r0/prj->pv[1]; |
| prj->w[3] = prj->pv[1]/prj->r0; |
| } |
|
|
| prj->prjx2s = ceax2s; |
| prj->prjs2x = ceas2x; |
|
|
| return prjoff(prj, 0.0, 0.0); |
| } |
|
|
| |
|
|
| int ceax2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int mx, my, rowlen, rowoff, status; |
| double s; |
| const double tol = 1.0e-13; |
| register int istat, ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != CEA) { |
| if ((status = ceaset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| s = prj->w[1]*(*xp + prj->x0); |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = s; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| s = prj->w[3]*(*yp + prj->y0); |
|
|
| istat = 0; |
| if (fabs(s) > 1.0) { |
| if (fabs(s) > 1.0+tol) { |
| s = 0.0; |
| istat = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("ceax2s"); |
| } else { |
| s = copysign(90.0, s); |
| } |
| } else { |
| s = asind(s); |
| } |
|
|
| for (ix = 0; ix < mx; ix++, thetap += spt) { |
| *thetap = s; |
| *(statp++) = istat; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-13, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("ceax2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int ceas2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int mphi, mtheta, rowlen, rowoff, status; |
| double eta, xi; |
| register int iphi, itheta, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != CEA) { |
| if ((status = ceaset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| xi = prj->w[0]*(*phip) - prj->x0; |
|
|
| xp = x + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = xi; |
| xp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| eta = prj->w[2]*sind(*thetap) - prj->y0; |
|
|
| for (iphi = 0; iphi < mphi; iphi++, yp += sxy) { |
| *yp = eta; |
| *(statp++) = 0; |
| } |
| } |
|
|
| return 0; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int carset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = CAR; |
| strcpy(prj->code, "CAR"); |
|
|
| strcpy(prj->name, "plate caree"); |
| prj->category = CYLINDRICAL; |
| prj->pvrange = 0; |
| prj->simplezen = 0; |
| prj->equiareal = 0; |
| prj->conformal = 0; |
| prj->global = 1; |
| prj->divergent = 0; |
|
|
| if (prj->r0 == 0.0) { |
| prj->r0 = R2D; |
| prj->w[0] = 1.0; |
| prj->w[1] = 1.0; |
| } else { |
| prj->w[0] = prj->r0*D2R; |
| prj->w[1] = 1.0/prj->w[0]; |
| } |
|
|
| prj->prjx2s = carx2s; |
| prj->prjs2x = cars2x; |
|
|
| return prjoff(prj, 0.0, 0.0); |
| } |
|
|
| |
|
|
| int carx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int mx, my, rowlen, rowoff, status; |
| double s, t; |
| register int ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != CAR) { |
| if ((status = carset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| s = prj->w[1]*(*xp + prj->x0); |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = s; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| t = prj->w[1]*(*yp + prj->y0); |
|
|
| for (ix = 0; ix < mx; ix++, thetap += spt) { |
| *thetap = t; |
| *(statp++) = 0; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-13, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("carx2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int cars2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int mphi, mtheta, rowlen, rowoff, status; |
| double eta, xi; |
| register int iphi, itheta, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != CAR) { |
| if ((status = carset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| xi = prj->w[0]*(*phip) - prj->x0; |
|
|
| xp = x + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = xi; |
| xp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| eta = prj->w[0]*(*thetap) - prj->y0; |
|
|
| for (iphi = 0; iphi < mphi; iphi++, yp += sxy) { |
| *yp = eta; |
| *(statp++) = 0; |
| } |
| } |
|
|
| return 0; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int merset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = MER; |
| strcpy(prj->code, "MER"); |
|
|
| strcpy(prj->name, "Mercator's"); |
| prj->category = CYLINDRICAL; |
| prj->pvrange = 0; |
| prj->simplezen = 0; |
| prj->equiareal = 0; |
| prj->conformal = 1; |
| prj->global = 0; |
| prj->divergent = 1; |
|
|
| if (prj->r0 == 0.0) { |
| prj->r0 = R2D; |
| prj->w[0] = 1.0; |
| prj->w[1] = 1.0; |
| } else { |
| prj->w[0] = prj->r0*D2R; |
| prj->w[1] = 1.0/prj->w[0]; |
| } |
|
|
| prj->prjx2s = merx2s; |
| prj->prjs2x = mers2x; |
|
|
| return prjoff(prj, 0.0, 0.0); |
| } |
|
|
| |
|
|
| int merx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int mx, my, rowlen, rowoff, status; |
| double s, t; |
| register int ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != MER) { |
| if ((status = merset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| s = prj->w[1]*(*xp + prj->x0); |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = s; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| t = 2.0*atand(exp((*yp + prj->y0)/prj->r0)) - 90.0; |
|
|
| for (ix = 0; ix < mx; ix++, thetap += spt) { |
| *thetap = t; |
| *(statp++) = 0; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-13, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("merx2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int mers2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int mphi, mtheta, rowlen, rowoff, status; |
| double eta, xi; |
| register int iphi, itheta, istat, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != MER) { |
| if ((status = merset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| xi = prj->w[0]*(*phip) - prj->x0; |
|
|
| xp = x + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = xi; |
| xp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| istat = 0; |
|
|
| if (*thetap <= -90.0 || *thetap >= 90.0) { |
| eta = 0.0; |
| istat = 1; |
| if (!status) status = PRJERR_BAD_WORLD_SET("mers2x"); |
| } else { |
| eta = prj->r0*log(tand((*thetap+90.0)/2.0)) - prj->y0; |
| } |
|
|
| for (iphi = 0; iphi < mphi; iphi++, yp += sxy) { |
| *yp = eta; |
| *(statp++) = istat; |
| } |
| } |
|
|
| return status; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int sflset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = SFL; |
| strcpy(prj->code, "SFL"); |
|
|
| strcpy(prj->name, "Sanson-Flamsteed"); |
| prj->category = PSEUDOCYLINDRICAL; |
| prj->pvrange = 0; |
| prj->simplezen = 0; |
| prj->equiareal = 1; |
| prj->conformal = 0; |
| prj->global = 1; |
| prj->divergent = 0; |
|
|
| if (prj->r0 == 0.0) { |
| prj->r0 = R2D; |
| prj->w[0] = 1.0; |
| prj->w[1] = 1.0; |
| } else { |
| prj->w[0] = prj->r0*D2R; |
| prj->w[1] = 1.0/prj->w[0]; |
| } |
|
|
| prj->prjx2s = sflx2s; |
| prj->prjs2x = sfls2x; |
|
|
| return prjoff(prj, 0.0, 0.0); |
| } |
|
|
| |
|
|
| int sflx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int mx, my, rowlen, rowoff, status; |
| double s, t, yj; |
| register int istat, ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != SFL) { |
| if ((status = sflset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| s = prj->w[1]*(*xp + prj->x0); |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = s; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| yj = *yp + prj->y0; |
| s = cos(yj/prj->r0); |
|
|
| istat = 0; |
| if (s == 0.0) { |
| istat = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("sflx2s"); |
| } else { |
| s = 1.0/s; |
| } |
|
|
| t = prj->w[1]*yj; |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| *phip *= s; |
| *thetap = t; |
| *(statp++) = istat; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-12, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("sflx2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int sfls2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int mphi, mtheta, rowlen, rowoff, status; |
| double eta, xi; |
| register int iphi, itheta, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != SFL) { |
| if ((status = sflset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| xi = prj->w[0]*(*phip); |
|
|
| xp = x + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = xi; |
| xp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| xi = cosd(*thetap); |
| eta = prj->w[0]*(*thetap) - prj->y0; |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| *xp = xi*(*xp) - prj->x0; |
| *yp = eta; |
| *(statp++) = 0; |
| } |
| } |
|
|
| return 0; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int parset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = PAR; |
| strcpy(prj->code, "PAR"); |
|
|
| strcpy(prj->name, "parabolic"); |
| prj->category = PSEUDOCYLINDRICAL; |
| prj->pvrange = 0; |
| prj->simplezen = 0; |
| prj->equiareal = 1; |
| prj->conformal = 0; |
| prj->global = 1; |
| prj->divergent = 0; |
|
|
| if (prj->r0 == 0.0) { |
| prj->r0 = R2D; |
| prj->w[0] = 1.0; |
| prj->w[1] = 1.0; |
| prj->w[2] = 180.0; |
| prj->w[3] = 1.0/prj->w[2]; |
| } else { |
| prj->w[0] = prj->r0*D2R; |
| prj->w[1] = 1.0/prj->w[0]; |
| prj->w[2] = PI*prj->r0; |
| prj->w[3] = 1.0/prj->w[2]; |
| } |
|
|
| prj->prjx2s = parx2s; |
| prj->prjs2x = pars2x; |
|
|
| return prjoff(prj, 0.0, 0.0); |
| } |
|
|
| |
|
|
| int parx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int mx, my, rowlen, rowoff, status; |
| double r, s, t, xj; |
| const double tol = 1.0e-13; |
| register int istat, ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != PAR) { |
| if ((status = parset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| xj = *xp + prj->x0; |
| s = prj->w[1]*xj; |
| t = fabs(xj) - tol; |
|
|
| phip = phi + rowoff; |
| thetap = theta + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = s; |
| *thetap = t; |
| phip += rowlen; |
| thetap += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| r = prj->w[3]*(*yp + prj->y0); |
|
|
| istat = 0; |
| if (r > 1.0 || r < -1.0) { |
| s = 0.0; |
| t = 0.0; |
| istat = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("parx2s"); |
|
|
| } else { |
| s = 1.0 - 4.0*r*r; |
| if (s == 0.0) { |
| |
| istat = -1; |
| } else { |
| s = 1.0/s; |
| } |
|
|
| t = 3.0*asind(r); |
| } |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| if (istat < 0) { |
| if (*thetap < 0.0) { |
| *(statp++) = 0; |
| } else { |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("parx2s"); |
| } |
| } else { |
| *(statp++) = istat; |
| } |
|
|
| *phip *= s; |
| *thetap = t; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-12, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("parx2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int pars2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int mphi, mtheta, rowlen, rowoff, status; |
| double eta, s, xi; |
| register int iphi, itheta, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != PAR) { |
| if ((status = parset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| xi = prj->w[0]*(*phip); |
|
|
| xp = x + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = xi; |
| xp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| s = sind((*thetap)/3.0); |
| xi = (1.0 - 4.0*s*s); |
| eta = prj->w[2]*s - prj->y0; |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| *xp = xi*(*xp) - prj->x0; |
| *yp = eta; |
| *(statp++) = 0; |
| } |
| } |
|
|
| return 0; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int molset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = MOL; |
| strcpy(prj->code, "MOL"); |
|
|
| if (prj->r0 == 0.0) prj->r0 = R2D; |
|
|
| strcpy(prj->name, "Mollweide's"); |
| prj->category = PSEUDOCYLINDRICAL; |
| prj->pvrange = 0; |
| prj->simplezen = 0; |
| prj->equiareal = 1; |
| prj->conformal = 0; |
| prj->global = 1; |
| prj->divergent = 0; |
|
|
| prj->w[0] = SQRT2*prj->r0; |
| prj->w[1] = prj->w[0]/90.0; |
| prj->w[2] = 1.0/prj->w[0]; |
| prj->w[3] = 90.0/prj->r0; |
| prj->w[4] = 2.0/PI; |
|
|
| prj->prjx2s = molx2s; |
| prj->prjs2x = mols2x; |
|
|
| return prjoff(prj, 0.0, 0.0); |
| } |
|
|
| |
|
|
| int molx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int mx, my, rowlen, rowoff, status; |
| double r, s, t, xj, y0, yj, z; |
| const double tol = 1.0e-12; |
| register int istat, ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != MOL) { |
| if ((status = molset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| xj = *xp + prj->x0; |
| s = prj->w[3]*xj; |
| t = fabs(xj) - tol; |
|
|
| phip = phi + rowoff; |
| thetap = theta + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = s; |
| *thetap = t; |
| phip += rowlen; |
| thetap += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| yj = *yp + prj->y0; |
| y0 = yj/prj->r0; |
| r = 2.0 - y0*y0; |
|
|
| istat = 0; |
| if (r <= tol) { |
| if (r < -tol) { |
| istat = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("molx2s"); |
| } else { |
| |
| istat = -1; |
| } |
|
|
| r = 0.0; |
| s = 0.0; |
|
|
| } else { |
| r = sqrt(r); |
| s = 1.0/r; |
| } |
|
|
| z = yj*prj->w[2]; |
| if (fabs(z) > 1.0) { |
| if (fabs(z) > 1.0+tol) { |
| z = 0.0; |
| istat = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("molx2s"); |
| } else { |
| z = copysign(1.0, z) + y0*r/PI; |
| } |
| } else { |
| z = asin(z)*prj->w[4] + y0*r/PI; |
| } |
|
|
| if (fabs(z) > 1.0) { |
| if (fabs(z) > 1.0+tol) { |
| z = 0.0; |
| istat = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("molx2s"); |
| } else { |
| z = copysign(1.0, z); |
| } |
| } |
|
|
| t = asind(z); |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| if (istat < 0) { |
| if (*thetap < 0.0) { |
| *(statp++) = 0; |
| } else { |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("molx2s"); |
| } |
| } else { |
| *(statp++) = istat; |
| } |
|
|
| *phip *= s; |
| *thetap = t; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-11, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("molx2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int mols2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int k, mphi, mtheta, rowlen, rowoff, status; |
| double eta, gamma, resid, u, v, v0, v1, xi; |
| const double tol = 1.0e-13; |
| register int iphi, itheta, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != MOL) { |
| if ((status = molset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| xi = prj->w[1]*(*phip); |
|
|
| xp = x + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = xi; |
| xp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| if (fabs(*thetap) == 90.0) { |
| xi = 0.0; |
| eta = copysign(prj->w[0], *thetap); |
|
|
| } else if (*thetap == 0.0) { |
| xi = 1.0; |
| eta = 0.0; |
|
|
| } else { |
| u = PI*sind(*thetap); |
| v0 = -PI; |
| v1 = PI; |
| v = u; |
| for (k = 0; k < 100; k++) { |
| resid = (v - u) + sin(v); |
| if (resid < 0.0) { |
| if (resid > -tol) break; |
| v0 = v; |
| } else { |
| if (resid < tol) break; |
| v1 = v; |
| } |
| v = (v0 + v1)/2.0; |
| } |
|
|
| gamma = v/2.0; |
| xi = cos(gamma); |
| eta = prj->w[0]*sin(gamma); |
| } |
|
|
| eta -= prj->y0; |
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| *xp = xi*(*xp) - prj->x0; |
| *yp = eta; |
| *(statp++) = 0; |
| } |
| } |
|
|
| return 0; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int aitset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = AIT; |
| strcpy(prj->code, "AIT"); |
|
|
| if (prj->r0 == 0.0) prj->r0 = R2D; |
|
|
| strcpy(prj->name, "Hammer-Aitoff"); |
| prj->category = CONVENTIONAL; |
| prj->pvrange = 0; |
| prj->simplezen = 0; |
| prj->equiareal = 1; |
| prj->conformal = 0; |
| prj->global = 1; |
| prj->divergent = 0; |
|
|
| prj->w[0] = 2.0*prj->r0*prj->r0; |
| prj->w[1] = 1.0/(2.0*prj->w[0]); |
| prj->w[2] = prj->w[1]/4.0; |
| prj->w[3] = 1.0/(2.0*prj->r0); |
|
|
| prj->prjx2s = aitx2s; |
| prj->prjs2x = aits2x; |
|
|
| return prjoff(prj, 0.0, 0.0); |
| } |
|
|
| |
|
|
| int aitx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int mx, my, rowlen, rowoff, status; |
| double s, t, x0, xj, y0, yj, yj2, z; |
| const double tol = 1.0e-13; |
| register int ix, iy, istat, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != AIT) { |
| if ((status = aitset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| xj = *xp + prj->x0; |
| s = 1.0 - xj*xj*prj->w[2]; |
| t = xj*prj->w[3]; |
|
|
| phip = phi + rowoff; |
| thetap = theta + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = s; |
| *thetap = t; |
| phip += rowlen; |
| thetap += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| yj = *yp + prj->y0; |
| yj2 = yj*yj*prj->w[1]; |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| s = *phip - yj2; |
|
|
| istat = 0; |
| if (s < 0.5) { |
| if (s < 0.5-tol) { |
| istat = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("aitx2s"); |
| } |
|
|
| s = 0.5; |
| } |
|
|
| z = sqrt(s); |
| x0 = 2.0*z*z - 1.0; |
| y0 = z*(*thetap); |
| if (x0 == 0.0 && y0 == 0.0) { |
| *phip = 0.0; |
| } else { |
| *phip = 2.0*atan2d(y0, x0); |
| } |
|
|
| t = z*yj/prj->r0; |
| if (fabs(t) > 1.0) { |
| if (fabs(t) > 1.0+tol) { |
| istat = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("aitx2s"); |
| } |
| t = copysign(90.0, t); |
|
|
| } else { |
| t = asind(t); |
| } |
|
|
| *thetap = t; |
| *(statp++) = istat; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-13, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("aitx2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int aits2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int mphi, mtheta, rowlen, rowoff, status; |
| double cosphi, costhe, sinphi, sinthe, w; |
| register int iphi, itheta, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != AIT) { |
| if ((status = aitset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| w = (*phip)/2.0; |
| sincosd(w, &sinphi, &cosphi); |
|
|
| xp = x + rowoff; |
| yp = y + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = sinphi; |
| *yp = cosphi; |
| xp += rowlen; |
| yp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| sincosd(*thetap, &sinthe, &costhe); |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| w = sqrt(prj->w[0]/(1.0 + costhe*(*yp))); |
| *xp = 2.0*w*costhe*(*xp) - prj->x0; |
| *yp = w*sinthe - prj->y0; |
| *(statp++) = 0; |
| } |
| } |
|
|
| return 0; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int copset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = COP; |
| strcpy(prj->code, "COP"); |
| strcpy(prj->name, "conic perspective"); |
|
|
| if (undefined(prj->pv[1])) { |
| return PRJERR_BAD_PARAM_SET("copset"); |
| } |
| if (undefined(prj->pv[2])) prj->pv[2] = 0.0; |
| if (prj->r0 == 0.0) prj->r0 = R2D; |
|
|
| prj->category = CONIC; |
| prj->pvrange = 102; |
| prj->simplezen = 0; |
| prj->equiareal = 0; |
| prj->conformal = 0; |
| prj->global = 0; |
| prj->divergent = 1; |
|
|
| prj->w[0] = sind(prj->pv[1]); |
| if (prj->w[0] == 0.0) { |
| return PRJERR_BAD_PARAM_SET("copset"); |
| } |
|
|
| prj->w[1] = 1.0/prj->w[0]; |
|
|
| prj->w[3] = prj->r0*cosd(prj->pv[2]); |
| if (prj->w[3] == 0.0) { |
| return PRJERR_BAD_PARAM_SET("copset"); |
| } |
|
|
| prj->w[4] = 1.0/prj->w[3]; |
| prj->w[5] = 1.0/tand(prj->pv[1]); |
|
|
| prj->w[2] = prj->w[3]*prj->w[5]; |
|
|
| prj->prjx2s = copx2s; |
| prj->prjs2x = cops2x; |
|
|
| return prjoff(prj, 0.0, prj->pv[1]); |
| } |
|
|
| |
|
|
| int copx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int mx, my, rowlen, rowoff, status; |
| double alpha, dy, dy2, r, xj; |
| register int ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != COP) { |
| if ((status = copset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| xj = *xp + prj->x0; |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = xj; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| dy = prj->w[2] - (*yp + prj->y0); |
| dy2 = dy*dy; |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| xj = *phip; |
|
|
| r = sqrt(xj*xj + dy2); |
| if (prj->pv[1] < 0.0) r = -r; |
|
|
| if (r == 0.0) { |
| alpha = 0.0; |
| } else { |
| alpha = atan2d(xj/r, dy/r); |
| } |
|
|
| *phip = alpha*prj->w[1]; |
| *thetap = prj->pv[1] + atand(prj->w[5] - r*prj->w[4]); |
| *(statp++) = 0; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-13, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("copx2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int cops2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int mphi, mtheta, rowlen, rowoff, status; |
| double alpha, cosalpha, r, s, t, sinalpha, y0; |
| register int iphi, itheta, istat, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != COP) { |
| if ((status = copset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| alpha = prj->w[0]*(*phip); |
| sincosd(alpha, &sinalpha, &cosalpha); |
|
|
| xp = x + rowoff; |
| yp = y + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = sinalpha; |
| *yp = cosalpha; |
| xp += rowlen; |
| yp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| y0 = prj->y0 - prj->w[2]; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| t = *thetap - prj->pv[1]; |
| s = cosd(t); |
|
|
| istat = 0; |
| if (s == 0.0) { |
| |
| r = 0.0; |
| istat = 1; |
| if (!status) status = PRJERR_BAD_WORLD_SET("cops2x"); |
|
|
| } else if (fabs(*thetap) == 90.0) { |
| |
| r = 0.0; |
|
|
| |
| if (prj->bounds&1) { |
| if ((*thetap < 0.0) != (prj->pv[1] < 0.0)) { |
| istat = 1; |
| if (!status) status = PRJERR_BAD_WORLD_SET("cops2x"); |
| } |
| } |
|
|
| } else { |
| r = prj->w[2] - prj->w[3]*sind(t)/s; |
|
|
| |
| if (prj->bounds&1) { |
| if (r*prj->w[0] < 0.0) { |
| istat = 1; |
| if (!status) status = PRJERR_BAD_WORLD_SET("cops2x"); |
| } |
| } |
| } |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| *xp = r*(*xp) - prj->x0; |
| *yp = -r*(*yp) - y0; |
| *(statp++) = istat; |
| } |
| } |
|
|
| return status; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int coeset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| double theta1, theta2; |
|
|
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = COE; |
| strcpy(prj->code, "COE"); |
| strcpy(prj->name, "conic equal area"); |
|
|
| if (undefined(prj->pv[1])) { |
| return PRJERR_BAD_PARAM_SET("coeset"); |
| } |
| if (undefined(prj->pv[2])) prj->pv[2] = 0.0; |
| if (prj->r0 == 0.0) prj->r0 = R2D; |
|
|
| prj->category = CONIC; |
| prj->pvrange = 102; |
| prj->simplezen = 0; |
| prj->equiareal = 1; |
| prj->conformal = 0; |
| prj->global = 1; |
| prj->divergent = 0; |
|
|
| theta1 = prj->pv[1] - prj->pv[2]; |
| theta2 = prj->pv[1] + prj->pv[2]; |
|
|
| prj->w[0] = (sind(theta1) + sind(theta2))/2.0; |
| if (prj->w[0] == 0.0) { |
| return PRJERR_BAD_PARAM_SET("coeset"); |
| } |
|
|
| prj->w[1] = 1.0/prj->w[0]; |
|
|
| prj->w[3] = prj->r0/prj->w[0]; |
| prj->w[4] = 1.0 + sind(theta1)*sind(theta2); |
| prj->w[5] = 2.0*prj->w[0]; |
| prj->w[6] = prj->w[3]*prj->w[3]*prj->w[4]; |
| prj->w[7] = 1.0/(2.0*prj->r0*prj->w[3]); |
| prj->w[8] = prj->w[3]*sqrt(prj->w[4] + prj->w[5]); |
|
|
| prj->w[2] = prj->w[3]*sqrt(prj->w[4] - prj->w[5]*sind(prj->pv[1])); |
|
|
| prj->prjx2s = coex2s; |
| prj->prjs2x = coes2x; |
|
|
| return prjoff(prj, 0.0, prj->pv[1]); |
| } |
|
|
| |
|
|
| int coex2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int mx, my, rowlen, rowoff, status; |
| double alpha, dy, dy2, r, t, w, xj; |
| const double tol = 1.0e-12; |
| register int ix, iy, istat, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != COE) { |
| if ((status = coeset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| xj = *xp + prj->x0; |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = xj; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| dy = prj->w[2] - (*yp + prj->y0); |
| dy2 = dy*dy; |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| xj = *phip; |
|
|
| r = sqrt(xj*xj + dy2); |
| if (prj->pv[1] < 0.0) r = -r; |
|
|
| if (r == 0.0) { |
| alpha = 0.0; |
| } else { |
| alpha = atan2d(xj/r, dy/r); |
| } |
|
|
| istat = 0; |
| if (fabs(r - prj->w[8]) < tol) { |
| t = -90.0; |
| } else { |
| w = (prj->w[6] - r*r)*prj->w[7]; |
| if (fabs(w) > 1.0) { |
| if (fabs(w-1.0) < tol) { |
| t = 90.0; |
| } else if (fabs(w+1.0) < tol) { |
| t = -90.0; |
| } else { |
| t = 0.0; |
| istat = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("coex2s"); |
| } |
| } else { |
| t = asind(w); |
| } |
| } |
|
|
| *phip = alpha*prj->w[1]; |
| *thetap = t; |
| *(statp++) = istat; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-13, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("coex2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int coes2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int mphi, mtheta, rowlen, rowoff, status; |
| double alpha, cosalpha, r, sinalpha, y0; |
| register int iphi, itheta, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != COE) { |
| if ((status = coeset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| alpha = prj->w[0]*(*phip); |
| sincosd(alpha, &sinalpha, &cosalpha); |
|
|
| xp = x + rowoff; |
| yp = y + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = sinalpha; |
| *yp = cosalpha; |
| xp += rowlen; |
| yp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| y0 = prj->y0 - prj->w[2]; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| if (*thetap == -90.0) { |
| r = prj->w[8]; |
| } else { |
| r = prj->w[3]*sqrt(prj->w[4] - prj->w[5]*sind(*thetap)); |
| } |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| *xp = r*(*xp) - prj->x0; |
| *yp = -r*(*yp) - y0; |
| *(statp++) = 0; |
| } |
| } |
|
|
| return 0; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int codset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = COD; |
| strcpy(prj->code, "COD"); |
| strcpy(prj->name, "conic equidistant"); |
|
|
| if (undefined(prj->pv[1])) { |
| return PRJERR_BAD_PARAM_SET("codset"); |
| } |
| if (undefined(prj->pv[2])) prj->pv[2] = 0.0; |
| if (prj->r0 == 0.0) prj->r0 = R2D; |
|
|
| prj->category = CONIC; |
| prj->pvrange = 102; |
| prj->simplezen = 0; |
| prj->equiareal = 0; |
| prj->conformal = 0; |
| prj->global = 1; |
| prj->divergent = 0; |
|
|
| if (prj->pv[2] == 0.0) { |
| prj->w[0] = prj->r0*sind(prj->pv[1])*D2R; |
| } else { |
| prj->w[0] = prj->r0*sind(prj->pv[1])*sind(prj->pv[2])/prj->pv[2]; |
| } |
|
|
| if (prj->w[0] == 0.0) { |
| return PRJERR_BAD_PARAM_SET("codset"); |
| } |
|
|
| prj->w[1] = 1.0/prj->w[0]; |
| prj->w[2] = prj->r0*cosd(prj->pv[2])*cosd(prj->pv[1])/prj->w[0]; |
| prj->w[3] = prj->w[2] + prj->pv[1]; |
|
|
| prj->prjx2s = codx2s; |
| prj->prjs2x = cods2x; |
|
|
| return prjoff(prj, 0.0, prj->pv[1]); |
| } |
|
|
| |
|
|
| int codx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int mx, my, rowlen, rowoff, status; |
| double alpha, dy, dy2, r, xj; |
| register int ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != COD) { |
| if ((status = codset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| xj = *xp + prj->x0; |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = xj; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| dy = prj->w[2] - (*yp + prj->y0); |
| dy2 = dy*dy; |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| xj = *phip; |
|
|
| r = sqrt(xj*xj + dy2); |
| if (prj->pv[1] < 0.0) r = -r; |
|
|
| if (r == 0.0) { |
| alpha = 0.0; |
| } else { |
| alpha = atan2d(xj/r, dy/r); |
| } |
|
|
| *phip = alpha*prj->w[1]; |
| *thetap = prj->w[3] - r; |
| *(statp++) = 0; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-13, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("codx2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int cods2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int mphi, mtheta, rowlen, rowoff, status; |
| double alpha, cosalpha, r, sinalpha, y0; |
| register int iphi, itheta, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != COD) { |
| if ((status = codset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| alpha = prj->w[0]*(*phip); |
| sincosd(alpha, &sinalpha, &cosalpha); |
|
|
| xp = x + rowoff; |
| yp = y + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = sinalpha; |
| *yp = cosalpha; |
| xp += rowlen; |
| yp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| y0 = prj->y0 - prj->w[2]; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| r = prj->w[3] - *thetap; |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| *xp = r*(*xp) - prj->x0; |
| *yp = -r*(*yp) - y0; |
| *(statp++) = 0; |
| } |
| } |
|
|
| return 0; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int cooset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| double cos1, cos2, tan1, tan2, theta1, theta2; |
|
|
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = COO; |
| strcpy(prj->code, "COO"); |
| strcpy(prj->name, "conic orthomorphic"); |
|
|
| if (undefined(prj->pv[1])) { |
| return PRJERR_BAD_PARAM_SET("cooset"); |
| } |
| if (undefined(prj->pv[2])) prj->pv[2] = 0.0; |
| if (prj->r0 == 0.0) prj->r0 = R2D; |
|
|
| prj->category = CONIC; |
| prj->pvrange = 102; |
| prj->simplezen = 0; |
| prj->equiareal = 0; |
| prj->conformal = 1; |
| prj->global = 0; |
| prj->divergent = 1; |
|
|
| theta1 = prj->pv[1] - prj->pv[2]; |
| theta2 = prj->pv[1] + prj->pv[2]; |
|
|
| tan1 = tand((90.0 - theta1)/2.0); |
| cos1 = cosd(theta1); |
|
|
| if (theta1 == theta2) { |
| prj->w[0] = sind(theta1); |
| } else { |
| tan2 = tand((90.0 - theta2)/2.0); |
| cos2 = cosd(theta2); |
| prj->w[0] = log(cos2/cos1)/log(tan2/tan1); |
| } |
| if (prj->w[0] == 0.0) { |
| return PRJERR_BAD_PARAM_SET("cooset"); |
| } |
|
|
| prj->w[1] = 1.0/prj->w[0]; |
|
|
| prj->w[3] = prj->r0*(cos1/prj->w[0])/pow(tan1,prj->w[0]); |
| if (prj->w[3] == 0.0) { |
| return PRJERR_BAD_PARAM_SET("cooset"); |
| } |
| prj->w[2] = prj->w[3]*pow(tand((90.0 - prj->pv[1])/2.0),prj->w[0]); |
| prj->w[4] = 1.0/prj->w[3]; |
|
|
| prj->prjx2s = coox2s; |
| prj->prjs2x = coos2x; |
|
|
| return prjoff(prj, 0.0, prj->pv[1]); |
| } |
|
|
| |
|
|
| int coox2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int mx, my, rowlen, rowoff, status; |
| double alpha, dy, dy2, r, t, xj; |
| register int ix, iy, istat, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != COO) { |
| if ((status = cooset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| xj = *xp + prj->x0; |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = xj; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| dy = prj->w[2] - (*yp + prj->y0); |
| dy2 = dy*dy; |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| xj = *phip; |
|
|
| r = sqrt(xj*xj + dy2); |
| if (prj->pv[1] < 0.0) r = -r; |
|
|
| if (r == 0.0) { |
| alpha = 0.0; |
| } else { |
| alpha = atan2d(xj/r, dy/r); |
| } |
|
|
| istat = 0; |
| if (r == 0.0) { |
| if (prj->w[0] < 0.0) { |
| t = -90.0; |
| } else { |
| t = 0.0; |
| istat = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("coox2s"); |
| } |
| } else { |
| t = 90.0 - 2.0*atand(pow(r*prj->w[4],prj->w[1])); |
| } |
|
|
| *phip = alpha*prj->w[1]; |
| *thetap = t; |
| *(statp++) = istat; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-13, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("coox2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int coos2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int mphi, mtheta, rowlen, rowoff, status; |
| double alpha, cosalpha, r, sinalpha, y0; |
| register int iphi, itheta, istat, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != COO) { |
| if ((status = cooset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| alpha = prj->w[0]*(*phip); |
| sincosd(alpha, &sinalpha, &cosalpha); |
|
|
| xp = x + rowoff; |
| yp = y + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = sinalpha; |
| *yp = cosalpha; |
| xp += rowlen; |
| yp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| y0 = prj->y0 - prj->w[2]; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| istat = 0; |
|
|
| if (*thetap == -90.0) { |
| r = 0.0; |
| if (prj->w[0] >= 0.0) { |
| istat = 1; |
| if (!status) status = PRJERR_BAD_WORLD_SET("coos2x"); |
| } |
| } else { |
| r = prj->w[3]*pow(tand((90.0 - *thetap)/2.0),prj->w[0]); |
| } |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| *xp = r*(*xp) - prj->x0; |
| *yp = -r*(*yp) - y0; |
| *(statp++) = istat; |
| } |
| } |
|
|
| return status; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int bonset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = BON; |
| strcpy(prj->code, "BON"); |
| strcpy(prj->name, "Bonne's"); |
|
|
| if (undefined(prj->pv[1])) { |
| return PRJERR_BAD_PARAM_SET("bonset"); |
| } |
|
|
| if (prj->pv[1] == 0.0) { |
| |
| return sflset(prj); |
| } |
|
|
| prj->category = POLYCONIC; |
| prj->pvrange = 101; |
| prj->simplezen = 0; |
| prj->equiareal = 1; |
| prj->conformal = 0; |
| prj->global = 1; |
| prj->divergent = 0; |
|
|
| if (prj->r0 == 0.0) { |
| prj->r0 = R2D; |
| prj->w[1] = 1.0; |
| prj->w[2] = prj->r0*cosd(prj->pv[1])/sind(prj->pv[1]) + prj->pv[1]; |
| } else { |
| prj->w[1] = prj->r0*D2R; |
| prj->w[2] = prj->r0*(cosd(prj->pv[1])/sind(prj->pv[1]) + prj->pv[1]*D2R); |
| } |
|
|
| prj->prjx2s = bonx2s; |
| prj->prjs2x = bons2x; |
|
|
| return prjoff(prj, 0.0, 0.0); |
| } |
|
|
| |
|
|
| int bonx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int mx, my, rowlen, rowoff, status; |
| double alpha, dy, dy2, costhe, r, s, t, xj; |
| register int ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->pv[1] == 0.0) { |
| |
| return sflx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat); |
| } |
|
|
| if (prj->flag != BON) { |
| if ((status = bonset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| xj = *xp + prj->x0; |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = xj; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| dy = prj->w[2] - (*yp + prj->y0); |
| dy2 = dy*dy; |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| xj = *phip; |
|
|
| r = sqrt(xj*xj + dy2); |
| if (prj->pv[1] < 0.0) r = -r; |
|
|
| if (r == 0.0) { |
| alpha = 0.0; |
| } else { |
| alpha = atan2d(xj/r, dy/r); |
| } |
|
|
| t = (prj->w[2] - r)/prj->w[1]; |
| costhe = cosd(t); |
| if (costhe == 0.0) { |
| s = 0.0; |
| } else { |
| s = alpha*(r/prj->r0)/costhe; |
| } |
|
|
| *phip = s; |
| *thetap = t; |
| *(statp++) = 0; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-11, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("bonx2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int bons2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int mphi, mtheta, rowlen, rowoff, status; |
| double alpha, cosalpha, r, s, sinalpha, y0; |
| register int iphi, itheta, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->pv[1] == 0.0) { |
| |
| return sfls2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat); |
| } |
|
|
| if (prj->flag != BON) { |
| if ((status = bonset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
| y0 = prj->y0 - prj->w[2]; |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| s = prj->r0*(*phip); |
|
|
| xp = x + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = s; |
| xp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| r = prj->w[2] - prj->w[1]*(*thetap); |
| s = cosd(*thetap)/r; |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| alpha = s*(*xp); |
| sincosd(alpha, &sinalpha, &cosalpha); |
| *xp = r*sinalpha - prj->x0; |
| *yp = -r*cosalpha - y0; |
| *(statp++) = 0; |
| } |
| } |
|
|
| return 0; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int pcoset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = PCO; |
| strcpy(prj->code, "PCO"); |
|
|
| strcpy(prj->name, "polyconic"); |
| prj->category = POLYCONIC; |
| prj->pvrange = 0; |
| prj->simplezen = 0; |
| prj->equiareal = 0; |
| prj->conformal = 0; |
| prj->global = 1; |
| prj->divergent = 0; |
|
|
| if (prj->r0 == 0.0) { |
| prj->r0 = R2D; |
| prj->w[0] = 1.0; |
| prj->w[1] = 1.0; |
| prj->w[2] = 360.0/PI; |
| } else { |
| prj->w[0] = prj->r0*D2R; |
| prj->w[1] = 1.0/prj->w[0]; |
| prj->w[2] = 2.0*prj->r0; |
| } |
| prj->w[3] = D2R/prj->w[2]; |
|
|
| prj->prjx2s = pcox2s; |
| prj->prjs2x = pcos2x; |
|
|
| return prjoff(prj, 0.0, 0.0); |
| } |
|
|
| |
|
|
| int pcox2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int mx, my, rowlen, rowoff, status; |
| double f, fneg, fpos, lambda, tanthe, the, theneg, thepos, w, x1, xj, xx, |
| yj, ymthe, y1; |
| const double tol = 1.0e-12; |
| register int ix, iy, k, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != PCO) { |
| if ((status = pcoset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| xj = *xp + prj->x0; |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = xj; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| yj = *yp + prj->y0; |
| w = fabs(yj*prj->w[1]); |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| xj = *phip; |
|
|
| if (w < tol) { |
| *phip = xj*prj->w[1]; |
| *thetap = 0.0; |
|
|
| } else if (fabs(w-90.0) < tol) { |
| *phip = 0.0; |
| *thetap = copysign(90.0, yj); |
|
|
| } else { |
| if (w < 1.0e-4) { |
| |
| the = yj / (prj->w[0] + prj->w[3]*xj*xj); |
| ymthe = yj - prj->w[0]*the; |
| tanthe = tand(the); |
|
|
| } else { |
| |
| thepos = yj / prj->w[0]; |
| theneg = 0.0; |
|
|
| |
| xx = xj*xj; |
| fpos = xx; |
| fneg = -xx; |
|
|
| for (k = 0; k < 64; k++) { |
| |
| lambda = fpos/(fpos-fneg); |
| if (lambda < 0.1) { |
| lambda = 0.1; |
| } else if (lambda > 0.9) { |
| lambda = 0.9; |
| } |
| the = thepos - lambda*(thepos-theneg); |
|
|
| |
| ymthe = yj - prj->w[0]*the; |
| tanthe = tand(the); |
| f = xx + ymthe*(ymthe - prj->w[2]/tanthe); |
|
|
| |
| if (fabs(f) < tol) break; |
| if (fabs(thepos-theneg) < tol) break; |
|
|
| |
| if (f > 0.0) { |
| thepos = the; |
| fpos = f; |
| } else { |
| theneg = the; |
| fneg = f; |
| } |
| } |
| } |
|
|
| x1 = prj->r0 - ymthe*tanthe; |
| y1 = xj*tanthe; |
| if (x1 == 0.0 && y1 == 0.0) { |
| *phip = 0.0; |
| } else { |
| *phip = atan2d(y1, x1)/sind(the); |
| } |
|
|
| *thetap = the; |
| } |
|
|
| *(statp++) = 0; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-12, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("pcox2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int pcos2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int mphi, mtheta, rowlen, rowoff, status; |
| double cospsi, costhe, cotthe, sinpsi, sinthe, therad; |
| register int iphi, itheta, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != PCO) { |
| if ((status = pcoset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| xp = x + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = *phip; |
| xp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| if (*thetap == 0.0) { |
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| *xp = prj->w[0]*(*xp) - prj->x0; |
| *yp = -prj->y0; |
| *(statp++) = 0; |
| } |
|
|
| } else if (fabs(*thetap) < 1.0e-4) { |
| |
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| *xp = prj->w[0]*(*xp)*cosd(*thetap) - prj->x0; |
| *yp = (prj->w[0] + prj->w[3]*(*xp)*(*xp))*(*thetap) - prj->y0; |
| *(statp++) = 0; |
| } |
|
|
| } else { |
| therad = (*thetap)*D2R; |
| sincosd(*thetap, &sinthe, &costhe); |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| sincosd((*xp)*sinthe, &sinpsi, &cospsi); |
| cotthe = costhe/sinthe; |
| *xp = prj->r0*cotthe*sinpsi - prj->x0; |
| *yp = prj->r0*(cotthe*(1.0 - cospsi) + therad) - prj->y0; |
| *(statp++) = 0; |
| } |
| } |
| } |
|
|
| return 0; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int tscset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = TSC; |
| strcpy(prj->code, "TSC"); |
|
|
| strcpy(prj->name, "tangential spherical cube"); |
| prj->category = QUADCUBE; |
| prj->pvrange = 0; |
| prj->simplezen = 0; |
| prj->equiareal = 0; |
| prj->conformal = 0; |
| prj->global = 1; |
| prj->divergent = 0; |
|
|
| if (prj->r0 == 0.0) { |
| prj->r0 = R2D; |
| prj->w[0] = 45.0; |
| prj->w[1] = 1.0/45.0; |
| } else { |
| prj->w[0] = prj->r0*PI/4.0; |
| prj->w[1] = 1.0/prj->w[0]; |
| } |
|
|
| prj->prjx2s = tscx2s; |
| prj->prjs2x = tscs2x; |
|
|
| return prjoff(prj, 0.0, 0.0); |
| } |
|
|
| |
|
|
| int tscx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int mx, my, rowlen, rowoff, status; |
| double l, m, n, xf, yf; |
| register int ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != TSC) { |
| if ((status = tscset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| xf = (*xp + prj->x0)*prj->w[1]; |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = xf; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| yf = (*yp + prj->y0)*prj->w[1]; |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| xf = *phip; |
|
|
| |
| if (fabs(xf) <= 1.0) { |
| if (fabs(yf) > 3.0) { |
| *phip = 0.0; |
| *thetap = 0.0; |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("tscx2s"); |
| continue; |
| } |
| } else { |
| if (fabs(xf) > 7.0 || fabs(yf) > 1.0) { |
| *phip = 0.0; |
| *thetap = 0.0; |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("tscx2s"); |
| continue; |
| } |
| } |
|
|
| |
| if (xf < -1.0) xf += 8.0; |
|
|
| |
| if (xf > 5.0) { |
| |
| xf = xf - 6.0; |
| m = -1.0/sqrt(1.0 + xf*xf + yf*yf); |
| l = -m*xf; |
| n = -m*yf; |
| } else if (xf > 3.0) { |
| |
| xf = xf - 4.0; |
| l = -1.0/sqrt(1.0 + xf*xf + yf*yf); |
| m = l*xf; |
| n = -l*yf; |
| } else if (xf > 1.0) { |
| |
| xf = xf - 2.0; |
| m = 1.0/sqrt(1.0 + xf*xf + yf*yf); |
| l = -m*xf; |
| n = m*yf; |
| } else if (yf > 1.0) { |
| |
| yf = yf - 2.0; |
| n = 1.0/sqrt(1.0 + xf*xf + yf*yf); |
| l = -n*yf; |
| m = n*xf; |
| } else if (yf < -1.0) { |
| |
| yf = yf + 2.0; |
| n = -1.0/sqrt(1.0 + xf*xf + yf*yf); |
| l = -n*yf; |
| m = -n*xf; |
| } else { |
| |
| l = 1.0/sqrt(1.0 + xf*xf + yf*yf); |
| m = l*xf; |
| n = l*yf; |
| } |
|
|
| if (l == 0.0 && m == 0.0) { |
| *phip = 0.0; |
| } else { |
| *phip = atan2d(m, l); |
| } |
|
|
| *thetap = asind(n); |
| *(statp++) = 0; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-13, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("tscx2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int tscs2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int face, mphi, mtheta, rowlen, rowoff, status; |
| double cosphi, costhe, l, m, n, sinphi, sinthe, x0, xf, y0, yf, zeta; |
| const double tol = 1.0e-12; |
| register int iphi, istat, itheta, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != TSC) { |
| if ((status = tscset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| sincosd(*phip, &sinphi, &cosphi); |
|
|
| xp = x + rowoff; |
| yp = y + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = cosphi; |
| *yp = sinphi; |
| xp += rowlen; |
| yp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| sincosd(*thetap, &sinthe, &costhe); |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| l = costhe*(*xp); |
| m = costhe*(*yp); |
| n = sinthe; |
|
|
| face = 0; |
| zeta = n; |
| if (l > zeta) { |
| face = 1; |
| zeta = l; |
| } |
| if (m > zeta) { |
| face = 2; |
| zeta = m; |
| } |
| if (-l > zeta) { |
| face = 3; |
| zeta = -l; |
| } |
| if (-m > zeta) { |
| face = 4; |
| zeta = -m; |
| } |
| if (-n > zeta) { |
| face = 5; |
| zeta = -n; |
| } |
|
|
| switch (face) { |
| case 1: |
| xf = m/zeta; |
| yf = n/zeta; |
| x0 = 0.0; |
| y0 = 0.0; |
| break; |
| case 2: |
| xf = -l/zeta; |
| yf = n/zeta; |
| x0 = 2.0; |
| y0 = 0.0; |
| break; |
| case 3: |
| xf = -m/zeta; |
| yf = n/zeta; |
| x0 = 4.0; |
| y0 = 0.0; |
| break; |
| case 4: |
| xf = l/zeta; |
| yf = n/zeta; |
| x0 = 6.0; |
| y0 = 0.0; |
| break; |
| case 5: |
| xf = m/zeta; |
| yf = l/zeta; |
| x0 = 0.0; |
| y0 = -2.0; |
| break; |
| default: |
| |
| xf = m/zeta; |
| yf = -l/zeta; |
| x0 = 0.0; |
| y0 = 2.0; |
| break; |
| } |
|
|
| istat = 0; |
| if (fabs(xf) > 1.0) { |
| if (fabs(xf) > 1.0+tol) { |
| istat = 1; |
| if (!status) status = PRJERR_BAD_WORLD_SET("tscs2x"); |
| } |
| xf = copysign(1.0, xf); |
| } |
| if (fabs(yf) > 1.0) { |
| if (fabs(yf) > 1.0+tol) { |
| istat = 1; |
| if (!status) status = PRJERR_BAD_WORLD_SET("tscs2x"); |
| } |
| yf = copysign(1.0, yf); |
| } |
|
|
| *xp = prj->w[0]*(xf + x0) - prj->x0; |
| *yp = prj->w[0]*(yf + y0) - prj->y0; |
| *(statp++) = istat; |
| } |
| } |
|
|
| return status; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int cscset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = CSC; |
| strcpy(prj->code, "CSC"); |
|
|
| strcpy(prj->name, "COBE quadrilateralized spherical cube"); |
| prj->category = QUADCUBE; |
| prj->pvrange = 0; |
| prj->simplezen = 0; |
| prj->equiareal = 0; |
| prj->conformal = 0; |
| prj->global = 1; |
| prj->divergent = 0; |
|
|
| if (prj->r0 == 0.0) { |
| prj->r0 = R2D; |
| prj->w[0] = 45.0; |
| prj->w[1] = 1.0/45.0; |
| } else { |
| prj->w[0] = prj->r0*PI/4.0; |
| prj->w[1] = 1.0/prj->w[0]; |
| } |
|
|
| prj->prjx2s = cscx2s; |
| prj->prjs2x = cscs2x; |
|
|
| return prjoff(prj, 0.0, 0.0); |
| } |
|
|
| |
|
|
| int cscx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int face, mx, my, rowlen, rowoff, status; |
| double l, m, n, t; |
| register int ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
| float chi, psi, xf, xx, yf, yy, z0, z1, z2, z3, z4, z5, z6; |
| const float p00 = -0.27292696f; |
| const float p10 = -0.07629969f; |
| const float p20 = -0.22797056f; |
| const float p30 = 0.54852384f; |
| const float p40 = -0.62930065f; |
| const float p50 = 0.25795794f; |
| const float p60 = 0.02584375f; |
| const float p01 = -0.02819452f; |
| const float p11 = -0.01471565f; |
| const float p21 = 0.48051509f; |
| const float p31 = -1.74114454f; |
| const float p41 = 1.71547508f; |
| const float p51 = -0.53022337f; |
| const float p02 = 0.27058160f; |
| const float p12 = -0.56800938f; |
| const float p22 = 0.30803317f; |
| const float p32 = 0.98938102f; |
| const float p42 = -0.83180469f; |
| const float p03 = -0.60441560f; |
| const float p13 = 1.50880086f; |
| const float p23 = -0.93678576f; |
| const float p33 = 0.08693841f; |
| const float p04 = 0.93412077f; |
| const float p14 = -1.41601920f; |
| const float p24 = 0.33887446f; |
| const float p05 = -0.63915306f; |
| const float p15 = 0.52032238f; |
| const float p06 = 0.14381585f; |
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != CSC) { |
| if ((status = cscset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| xf = (float)((*xp + prj->x0)*prj->w[1]); |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = xf; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| yf = (float)((*yp + prj->y0)*prj->w[1]); |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| xf = (float)(*phip); |
|
|
| |
| if (fabs((double)xf) <= 1.0) { |
| if (fabs((double)yf) > 3.0) { |
| *phip = 0.0; |
| *thetap = 0.0; |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("cscx2s"); |
| continue; |
| } |
| } else { |
| if (fabs((double)xf) > 7.0 || fabs((double)yf) > 1.0) { |
| *phip = 0.0; |
| *thetap = 0.0; |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("cscx2s"); |
| continue; |
| } |
| } |
|
|
| |
| if (xf < -1.0f) xf += 8.0f; |
|
|
| |
| if (xf > 5.0f) { |
| face = 4; |
| xf = xf - 6.0f; |
| } else if (xf > 3.0f) { |
| face = 3; |
| xf = xf - 4.0f; |
| } else if (xf > 1.0f) { |
| face = 2; |
| xf = xf - 2.0f; |
| } else if (yf > 1.0f) { |
| face = 0; |
| yf = yf - 2.0f; |
| } else if (yf < -1.0f) { |
| face = 5; |
| yf = yf + 2.0f; |
| } else { |
| face = 1; |
| } |
|
|
| xx = xf*xf; |
| yy = yf*yf; |
|
|
| z0 = p00 + xx*(p10 + xx*(p20 + xx*(p30 + xx*(p40 + xx*(p50 + |
| xx*(p60)))))); |
| z1 = p01 + xx*(p11 + xx*(p21 + xx*(p31 + xx*(p41 + xx*(p51))))); |
| z2 = p02 + xx*(p12 + xx*(p22 + xx*(p32 + xx*(p42)))); |
| z3 = p03 + xx*(p13 + xx*(p23 + xx*(p33))); |
| z4 = p04 + xx*(p14 + xx*(p24)); |
| z5 = p05 + xx*(p15); |
| z6 = p06; |
|
|
| chi = z0 + yy*(z1 + yy*(z2 + yy*(z3 + yy*(z4 + yy*(z5 + yy*z6))))); |
| chi = xf + xf*(1.0f - xx)*chi; |
|
|
| z0 = p00 + yy*(p10 + yy*(p20 + yy*(p30 + yy*(p40 + yy*(p50 + |
| yy*(p60)))))); |
| z1 = p01 + yy*(p11 + yy*(p21 + yy*(p31 + yy*(p41 + yy*(p51))))); |
| z2 = p02 + yy*(p12 + yy*(p22 + yy*(p32 + yy*(p42)))); |
| z3 = p03 + yy*(p13 + yy*(p23 + yy*(p33))); |
| z4 = p04 + yy*(p14 + yy*(p24)); |
| z5 = p05 + yy*(p15); |
| z6 = p06; |
|
|
| psi = z0 + xx*(z1 + xx*(z2 + xx*(z3 + xx*(z4 + xx*(z5 + xx*z6))))); |
| psi = yf + yf*(1.0f - yy)*psi; |
|
|
| t = 1.0/sqrt((double)(chi*chi + psi*psi) + 1.0); |
| switch (face) { |
| case 1: |
| l = t; |
| m = chi*l; |
| n = psi*l; |
| break; |
| case 2: |
| m = t; |
| l = -chi*m; |
| n = psi*m; |
| break; |
| case 3: |
| l = -t; |
| m = chi*l; |
| n = -psi*l; |
| break; |
| case 4: |
| m = -t; |
| l = -chi*m; |
| n = -psi*m; |
| break; |
| case 5: |
| n = -t; |
| l = -psi*n; |
| m = -chi*n; |
| break; |
| default: |
| |
| n = t; |
| l = -psi*n; |
| m = chi*n; |
| break; |
| } |
|
|
| if (l == 0.0 && m == 0.0) { |
| *phip = 0.0; |
| } else { |
| *phip = atan2d(m, l); |
| } |
|
|
| *thetap = asind(n); |
| *(statp++) = 0; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-13, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("cscx2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int cscs2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int face, mphi, mtheta, rowlen, rowoff, status; |
| double cosphi, costhe, eta, l, m, n, sinphi, sinthe, xi, zeta; |
| const float tol = 1.0e-7; |
| register int iphi, istat, itheta, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
| float chi, chi2, chi2psi2, chi4, chipsi, psi, psi2, psi4, chi2co, psi2co, |
| x0, xf, y0, yf; |
| const float gstar = 1.37484847732f; |
| const float mm = 0.004869491981f; |
| const float gamma = -0.13161671474f; |
| const float omega1 = -0.159596235474f; |
| const float d0 = 0.0759196200467f; |
| const float d1 = -0.0217762490699f; |
| const float c00 = 0.141189631152f; |
| const float c10 = 0.0809701286525f; |
| const float c01 = -0.281528535557f; |
| const float c11 = 0.15384112876f; |
| const float c20 = -0.178251207466f; |
| const float c02 = 0.106959469314f; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != CSC) { |
| if ((status = cscset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| sincosd(*phip, &sinphi, &cosphi); |
|
|
| xp = x + rowoff; |
| yp = y + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = cosphi; |
| *yp = sinphi; |
| xp += rowlen; |
| yp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| sincosd(*thetap, &sinthe, &costhe); |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| l = costhe*(*xp); |
| m = costhe*(*yp); |
| n = sinthe; |
|
|
| face = 0; |
| zeta = n; |
| if (l > zeta) { |
| face = 1; |
| zeta = l; |
| } |
| if (m > zeta) { |
| face = 2; |
| zeta = m; |
| } |
| if (-l > zeta) { |
| face = 3; |
| zeta = -l; |
| } |
| if (-m > zeta) { |
| face = 4; |
| zeta = -m; |
| } |
| if (-n > zeta) { |
| face = 5; |
| zeta = -n; |
| } |
|
|
| switch (face) { |
| case 1: |
| xi = m; |
| eta = n; |
| x0 = 0.0; |
| y0 = 0.0; |
| break; |
| case 2: |
| xi = -l; |
| eta = n; |
| x0 = 2.0; |
| y0 = 0.0; |
| break; |
| case 3: |
| xi = -m; |
| eta = n; |
| x0 = 4.0; |
| y0 = 0.0; |
| break; |
| case 4: |
| xi = l; |
| eta = n; |
| x0 = 6.0; |
| y0 = 0.0; |
| break; |
| case 5: |
| xi = m; |
| eta = l; |
| x0 = 0.0; |
| y0 = -2.0; |
| break; |
| default: |
| |
| xi = m; |
| eta = -l; |
| x0 = 0.0; |
| y0 = 2.0; |
| break; |
| } |
|
|
| chi = (float)( xi/zeta); |
| psi = (float)(eta/zeta); |
|
|
| chi2 = chi*chi; |
| psi2 = psi*psi; |
| chi2co = 1.0f - chi2; |
| psi2co = 1.0f - psi2; |
|
|
| |
| chipsi = (float)fabs((double)(chi*psi)); |
| chi4 = (chi2 > 1.0e-16f) ? chi2*chi2 : 0.0f; |
| psi4 = (psi2 > 1.0e-16f) ? psi2*psi2 : 0.0f; |
| chi2psi2 = (chipsi > 1.0e-16f) ? chi2*psi2 : 0.0f; |
|
|
| xf = chi*(chi2 + chi2co*(gstar + psi2*(gamma*chi2co + mm*chi2 + |
| psi2co*(c00 + c10*chi2 + c01*psi2 + c11*chi2psi2 + c20*chi4 + |
| c02*psi4)) + chi2*(omega1 - chi2co*(d0 + d1*chi2)))); |
| yf = psi*(psi2 + psi2co*(gstar + chi2*(gamma*psi2co + mm*psi2 + |
| chi2co*(c00 + c10*psi2 + c01*chi2 + c11*chi2psi2 + c20*psi4 + |
| c02*chi4)) + psi2*(omega1 - psi2co*(d0 + d1*psi2)))); |
|
|
| istat = 0; |
| if (fabs((double)xf) > 1.0) { |
| if (fabs((double)xf) > 1.0+tol) { |
| istat = 1; |
| if (!status) status = PRJERR_BAD_WORLD_SET("cscs2x"); |
| } |
| xf = (float)copysign(1.0, (double)xf); |
| } |
| if (fabs((double)yf) > 1.0) { |
| if (fabs((double)yf) > 1.0+tol) { |
| istat = 1; |
| if (!status) status = PRJERR_BAD_WORLD_SET("cscs2x"); |
| } |
| yf = (float)copysign(1.0, (double)yf); |
| } |
|
|
| *xp = prj->w[0]*(xf + x0) - prj->x0; |
| *yp = prj->w[0]*(yf + y0) - prj->y0; |
| *(statp++) = istat; |
| } |
| } |
|
|
| return status; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int qscset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = QSC; |
| strcpy(prj->code, "QSC"); |
|
|
| strcpy(prj->name, "quadrilateralized spherical cube"); |
| prj->category = QUADCUBE; |
| prj->pvrange = 0; |
| prj->simplezen = 0; |
| prj->equiareal = 1; |
| prj->conformal = 0; |
| prj->global = 1; |
| prj->divergent = 0; |
|
|
| if (prj->r0 == 0.0) { |
| prj->r0 = R2D; |
| prj->w[0] = 45.0; |
| prj->w[1] = 1.0/45.0; |
| } else { |
| prj->w[0] = prj->r0*PI/4.0; |
| prj->w[1] = 1.0/prj->w[0]; |
| } |
|
|
| prj->prjx2s = qscx2s; |
| prj->prjs2x = qscs2x; |
|
|
| return prjoff(prj, 0.0, 0.0); |
| } |
|
|
| |
|
|
| int qscx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int direct, face, mx, my, rowlen, rowoff, status; |
| double cosw, l, m, n, omega, sinw, tau, xf, yf, w, zeco, zeta; |
| const double tol = 1.0e-12; |
| register int ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != QSC) { |
| if ((status = qscset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| xf = (*xp + prj->x0)*prj->w[1]; |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = xf; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| yf = (*yp + prj->y0)*prj->w[1]; |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| xf = *phip; |
|
|
| |
| if (fabs(xf) <= 1.0) { |
| if (fabs(yf) > 3.0) { |
| *phip = 0.0; |
| *thetap = 0.0; |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("qscx2s"); |
| continue; |
| } |
| } else { |
| if (fabs(xf) > 7.0 || fabs(yf) > 1.0) { |
| *phip = 0.0; |
| *thetap = 0.0; |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("qscx2s"); |
| continue; |
| } |
| } |
|
|
| |
| if (xf < -1.0) xf += 8.0; |
|
|
| |
| if (xf > 5.0) { |
| face = 4; |
| xf -= 6.0; |
| } else if (xf > 3.0) { |
| face = 3; |
| xf -= 4.0; |
| } else if (xf > 1.0) { |
| face = 2; |
| xf -= 2.0; |
| } else if (yf > 1.0) { |
| face = 0; |
| yf -= 2.0; |
| } else if (yf < -1.0) { |
| face = 5; |
| yf += 2.0; |
| } else { |
| face = 1; |
| } |
|
|
| direct = (fabs(xf) > fabs(yf)); |
| if (direct) { |
| if (xf == 0.0) { |
| omega = 0.0; |
| tau = 1.0; |
| zeta = 1.0; |
| zeco = 0.0; |
| } else { |
| w = 15.0*yf/xf; |
| omega = sind(w)/(cosd(w) - SQRT2INV); |
| tau = 1.0 + omega*omega; |
| zeco = xf*xf*(1.0 - 1.0/sqrt(1.0 + tau)); |
| zeta = 1.0 - zeco; |
| } |
| } else { |
| if (yf == 0.0) { |
| omega = 0.0; |
| tau = 1.0; |
| zeta = 1.0; |
| zeco = 0.0; |
| } else { |
| w = 15.0*xf/yf; |
| sincosd(w, &sinw, &cosw); |
| omega = sinw/(cosw - SQRT2INV); |
| tau = 1.0 + omega*omega; |
| zeco = yf*yf*(1.0 - 1.0/sqrt(1.0 + tau)); |
| zeta = 1.0 - zeco; |
| } |
| } |
|
|
| if (zeta < -1.0) { |
| if (zeta < -1.0-tol) { |
| *phip = 0.0; |
| *thetap = 0.0; |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("qscx2s"); |
| continue; |
| } |
|
|
| zeta = -1.0; |
| zeco = 2.0; |
| w = 0.0; |
| } else { |
| w = sqrt(zeco*(2.0-zeco)/tau); |
| } |
|
|
| switch (face) { |
| case 1: |
| l = zeta; |
| if (direct) { |
| m = w; |
| if (xf < 0.0) m = -m; |
| n = m*omega; |
| } else { |
| n = w; |
| if (yf < 0.0) n = -n; |
| m = n*omega; |
| } |
| break; |
| case 2: |
| m = zeta; |
| if (direct) { |
| l = w; |
| if (xf > 0.0) l = -l; |
| n = -l*omega; |
| } else { |
| n = w; |
| if (yf < 0.0) n = -n; |
| l = -n*omega; |
| } |
| break; |
| case 3: |
| l = -zeta; |
| if (direct) { |
| m = w; |
| if (xf > 0.0) m = -m; |
| n = -m*omega; |
| } else { |
| n = w; |
| if (yf < 0.0) n = -n; |
| m = -n*omega; |
| } |
| break; |
| case 4: |
| m = -zeta; |
| if (direct) { |
| l = w; |
| if (xf < 0.0) l = -l; |
| n = l*omega; |
| } else { |
| n = w; |
| if (yf < 0.0) n = -n; |
| l = n*omega; |
| } |
| break; |
| case 5: |
| n = -zeta; |
| if (direct) { |
| m = w; |
| if (xf < 0.0) m = -m; |
| l = m*omega; |
| } else { |
| l = w; |
| if (yf < 0.0) l = -l; |
| m = l*omega; |
| } |
| break; |
| default: |
| |
| n = zeta; |
| if (direct) { |
| m = w; |
| if (xf < 0.0) m = -m; |
| l = -m*omega; |
| } else { |
| l = w; |
| if (yf > 0.0) l = -l; |
| m = -l*omega; |
| } |
| break; |
| } |
|
|
| if (l == 0.0 && m == 0.0) { |
| *phip = 0.0; |
| } else { |
| *phip = atan2d(m, l); |
| } |
|
|
| *thetap = asind(n); |
| *(statp++) = 0; |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-13, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("qscx2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int qscs2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int face, mphi, mtheta, rowlen, rowoff, status; |
| double cosphi, costhe, eta, l, m, n, omega, p, sinphi, sinthe, t, tau, x0, |
| xf, xi, y0, yf, zeco, zeta; |
| const double tol = 1.0e-12; |
| register int iphi, istat, itheta, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != QSC) { |
| if ((status = qscset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| sincosd(*phip, &sinphi, &cosphi); |
|
|
| xp = x + rowoff; |
| yp = y + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| *xp = cosphi; |
| *yp = sinphi; |
| xp += rowlen; |
| yp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| sincosd(*thetap, &sinthe, &costhe); |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| if (fabs(*thetap) == 90.0) { |
| *xp = -prj->x0; |
| *yp = copysign(2.0*prj->w[0], *thetap) - prj->y0; |
| *(statp++) = 0; |
| continue; |
| } |
|
|
| l = costhe*(*xp); |
| m = costhe*(*yp); |
| n = sinthe; |
|
|
| face = 0; |
| zeta = n; |
| if (l > zeta) { |
| face = 1; |
| zeta = l; |
| } |
| if (m > zeta) { |
| face = 2; |
| zeta = m; |
| } |
| if (-l > zeta) { |
| face = 3; |
| zeta = -l; |
| } |
| if (-m > zeta) { |
| face = 4; |
| zeta = -m; |
| } |
| if (-n > zeta) { |
| face = 5; |
| zeta = -n; |
| } |
|
|
| zeco = 1.0 - zeta; |
|
|
| switch (face) { |
| case 1: |
| xi = m; |
| eta = n; |
| if (zeco < 1.0e-8) { |
| |
| t = (*thetap)*D2R; |
| p = atan2(*yp, *xp); |
| zeco = (p*p + t*t)/2.0; |
| } |
| x0 = 0.0; |
| y0 = 0.0; |
| break; |
| case 2: |
| xi = -l; |
| eta = n; |
| if (zeco < 1.0e-8) { |
| |
| t = (*thetap)*D2R; |
| p = atan2(*yp, *xp) - PI/2.0; |
| zeco = (p*p + t*t)/2.0; |
| } |
| x0 = 2.0; |
| y0 = 0.0; |
| break; |
| case 3: |
| xi = -m; |
| eta = n; |
| if (zeco < 1.0e-8) { |
| |
| t = (*thetap)*D2R; |
| p = atan2(*yp, *xp); |
| p -= copysign(PI, p); |
| zeco = (p*p + t*t)/2.0; |
| } |
| x0 = 4.0; |
| y0 = 0.0; |
| break; |
| case 4: |
| xi = l; |
| eta = n; |
| if (zeco < 1.0e-8) { |
| |
| t = (*thetap)*D2R; |
| p = atan2(*yp, *xp) + PI/2.0; |
| zeco = (p*p + t*t)/2.0; |
| } |
| x0 = 6; |
| y0 = 0.0; |
| break; |
| case 5: |
| xi = m; |
| eta = l; |
| if (zeco < 1.0e-8) { |
| |
| t = (*thetap + 90.0)*D2R; |
| zeco = t*t/2.0; |
| } |
| x0 = 0.0; |
| y0 = -2; |
| break; |
| default: |
| |
| xi = m; |
| eta = -l; |
| if (zeco < 1.0e-8) { |
| |
| t = (90.0 - *thetap)*D2R; |
| zeco = t*t/2.0; |
| } |
| x0 = 0.0; |
| y0 = 2.0; |
| break; |
| } |
|
|
| xf = 0.0; |
| yf = 0.0; |
| if (xi != 0.0 || eta != 0.0) { |
| if (-xi > fabs(eta)) { |
| omega = eta/xi; |
| tau = 1.0 + omega*omega; |
| xf = -sqrt(zeco/(1.0 - 1.0/sqrt(1.0+tau))); |
| yf = (xf/15.0)*(atand(omega) - asind(omega/sqrt(tau+tau))); |
| } else if (xi > fabs(eta)) { |
| omega = eta/xi; |
| tau = 1.0 + omega*omega; |
| xf = sqrt(zeco/(1.0 - 1.0/sqrt(1.0+tau))); |
| yf = (xf/15.0)*(atand(omega) - asind(omega/sqrt(tau+tau))); |
| } else if (-eta >= fabs(xi)) { |
| omega = xi/eta; |
| tau = 1.0 + omega*omega; |
| yf = -sqrt(zeco/(1.0 - 1.0/sqrt(1.0+tau))); |
| xf = (yf/15.0)*(atand(omega) - asind(omega/sqrt(tau+tau))); |
| } else if (eta >= fabs(xi)) { |
| omega = xi/eta; |
| tau = 1.0 + omega*omega; |
| yf = sqrt(zeco/(1.0 - 1.0/sqrt(1.0+tau))); |
| xf = (yf/15.0)*(atand(omega) - asind(omega/sqrt(tau+tau))); |
| } |
| } |
|
|
| istat = 0; |
| if (fabs(xf) > 1.0) { |
| if (fabs(xf) > 1.0+tol) { |
| istat = 1; |
| if (!status) status = PRJERR_BAD_WORLD_SET("qscs2x"); |
| } |
| xf = copysign(1.0, xf); |
| } |
| if (fabs(yf) > 1.0) { |
| if (fabs(yf) > 1.0+tol) { |
| istat = 1; |
| if (!status) status = PRJERR_BAD_WORLD_SET("qscs2x"); |
| } |
| yf = copysign(1.0, yf); |
| } |
|
|
| *xp = prj->w[0]*(xf + x0) - prj->x0; |
| *yp = prj->w[0]*(yf + y0) - prj->y0; |
| *(statp++) = istat; |
| } |
| } |
|
|
| return status; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int hpxset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = HPX; |
| strcpy(prj->code, "HPX"); |
|
|
| if (undefined(prj->pv[1])) prj->pv[1] = 4.0; |
| if (undefined(prj->pv[2])) prj->pv[2] = 3.0; |
|
|
| strcpy(prj->name, "HEALPix"); |
| prj->category = HEALPIX; |
| prj->pvrange = 102; |
| prj->simplezen = 0; |
| prj->equiareal = 1; |
| prj->conformal = 0; |
| prj->global = 1; |
| prj->divergent = 0; |
|
|
| if (prj->pv[1] <= 0.0 || prj->pv[2] <= 0.0) { |
| return PRJERR_BAD_PARAM_SET("hpxset"); |
| } |
|
|
| prj->m = ((int)(prj->pv[1]+0.5))%2; |
| prj->n = ((int)(prj->pv[2]+0.5))%2; |
|
|
| if (prj->r0 == 0.0) { |
| prj->r0 = R2D; |
| prj->w[0] = 1.0; |
| prj->w[1] = 1.0; |
| } else { |
| prj->w[0] = prj->r0*D2R; |
| prj->w[1] = R2D/prj->r0; |
| } |
|
|
| prj->w[2] = (prj->pv[2] - 1.0) / prj->pv[2]; |
| prj->w[3] = 90.0 * prj->pv[2] / prj->pv[1]; |
| prj->w[4] = (prj->pv[2] + 1.0) / 2.0; |
| prj->w[5] = 90.0 * (prj->pv[2] - 1.0) / prj->pv[1]; |
| prj->w[6] = 180.0 / prj->pv[1]; |
| prj->w[7] = prj->pv[1] / 360.0; |
| prj->w[8] = prj->w[3] * prj->w[0]; |
| prj->w[9] = prj->w[6] * prj->w[0]; |
|
|
| prj->prjx2s = hpxx2s; |
| prj->prjs2x = hpxs2x; |
|
|
| return prjoff(prj, 0.0, 0.0); |
| } |
|
|
| |
|
|
| int hpxx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int h, mx, my, offset, rowlen, rowoff, status; |
| double absy, r, s, sigma, slim, t, ylim, yr; |
| register int istat, ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != HPX) { |
| if ((status = hpxset(prj))) return status; |
| } |
|
|
| slim = prj->w[6] + 1e-12; |
| ylim = prj->w[9] * prj->w[4]; |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| s = prj->w[1] * (*xp + prj->x0); |
| |
| t = -180.0 + (2.0 * floor((*xp + 180.0) * prj->w[7]) + 1.0) * prj->w[6]; |
| t = prj->w[1] * (*xp - t); |
|
|
| phip = phi + rowoff; |
| thetap = theta + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| |
| *phip = s; |
| *thetap = t; |
| phip += rowlen; |
| thetap += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| yr = prj->w[1]*(*yp + prj->y0); |
| absy = fabs(yr); |
|
|
| istat = 0; |
| if (absy <= prj->w[5]) { |
| |
| t = asind(yr/prj->w[3]); |
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| *thetap = t; |
| *(statp++) = 0; |
| } |
|
|
| } else if (absy <= ylim) { |
| |
| offset = (prj->n || *yp > 0.0) ? 0 : 1; |
|
|
| sigma = prj->w[4] - absy / prj->w[6]; |
|
|
| if (sigma == 0.0) { |
| s = 1e9; |
| t = 90.0; |
|
|
| } else { |
| t = 1.0 - sigma*sigma/prj->pv[2]; |
| if (t < -1.0) { |
| s = 0.0; |
| t = 0.0; |
| istat = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("hpxx2s"); |
| } else { |
| s = 1.0/sigma; |
| t = asind(t); |
| } |
| } |
| if (*yp < 0.0) t = -t; |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| if (offset) { |
| |
| h = (int)floor(*phip / prj->w[6]) + prj->m; |
| if (h%2) { |
| *thetap -= prj->w[6]; |
| } else { |
| *thetap += prj->w[6]; |
| } |
| } |
|
|
| |
| r = s * *thetap; |
|
|
| |
| if (prj->bounds&2) { |
| if (slim <= fabs(r)) { |
| istat = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("hpxx2s"); |
| } |
| } |
|
|
| if (r != 0.0) r -= *thetap; |
| *phip += r; |
| *thetap = t; |
|
|
| *(statp++) = istat; |
| } |
|
|
| } else { |
| |
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| *phip = 0.0; |
| *thetap = 0.0; |
| *(statp++) = 1; |
| } |
| if (!status) status = PRJERR_BAD_PIX_SET("hpxx2s"); |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-12, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("hpxx2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int hpxs2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int h, mphi, mtheta, offset, rowlen, rowoff, status; |
| double abssin, eta, sigma, sinthe, t, xi; |
| register int iphi, itheta, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != HPX) { |
| if ((status = hpxset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| xi = prj->w[0] * (*phip) - prj->x0; |
|
|
| |
| t = -180.0 + (2.0*floor((*phip+180.0) * prj->w[7]) + 1.0) * prj->w[6]; |
| t = prj->w[0] * (*phip - t); |
|
|
| xp = x + rowoff; |
| yp = y + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| |
| *xp = xi; |
| *yp = t; |
| xp += rowlen; |
| yp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| sinthe = sind(*thetap); |
| abssin = fabs(sinthe); |
|
|
| if (abssin <= prj->w[2]) { |
| |
| eta = prj->w[8] * sinthe - prj->y0; |
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| *yp = eta; |
| *(statp++) = 0; |
| } |
|
|
| } else { |
| |
| offset = (prj->n || *thetap > 0.0) ? 0 : 1; |
|
|
| sigma = sqrt(prj->pv[2]*(1.0 - abssin)); |
| xi = sigma - 1.0; |
|
|
| eta = prj->w[9] * (prj->w[4] - sigma); |
| if (*thetap < 0) eta = -eta; |
| eta -= prj->y0; |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| if (offset) { |
| |
| h = (int)floor((*xp + prj->x0) / prj->w[9]) + prj->m; |
| if (h%2) { |
| *yp -= prj->w[9]; |
| } else { |
| *yp += prj->w[9]; |
| } |
| } |
|
|
| |
| *xp += *yp * xi; |
| *yp = eta; |
| *(statp++) = 0; |
|
|
| |
| if (180.0 < *xp) *xp = 360.0 - *xp; |
| } |
| } |
| } |
|
|
| return 0; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| int xphset(prj) |
|
|
| struct prjprm *prj; |
|
|
| { |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
|
|
| prj->flag = XPH; |
| strcpy(prj->code, "XPH"); |
|
|
| strcpy(prj->name, "butterfly"); |
| prj->category = HEALPIX; |
| prj->pvrange = 0; |
| prj->simplezen = 0; |
| prj->equiareal = 1; |
| prj->conformal = 0; |
| prj->global = 1; |
| prj->divergent = 0; |
|
|
| if (prj->r0 == 0.0) { |
| prj->r0 = R2D; |
| prj->w[0] = 1.0; |
| prj->w[1] = 1.0; |
| } else { |
| prj->w[0] = prj->r0*D2R; |
| prj->w[1] = R2D/prj->r0; |
| } |
|
|
| prj->w[0] /= sqrt(2.0); |
| prj->w[1] /= sqrt(2.0); |
| prj->w[2] = 2.0/3.0; |
| prj->w[3] = 1e-4; |
| prj->w[4] = sqrt(prj->w[2])*R2D; |
| prj->w[5] = 90.0 - prj->w[3]*prj->w[4]; |
| prj->w[6] = sqrt(1.5)*D2R; |
|
|
| prj->prjx2s = xphx2s; |
| prj->prjs2x = xphs2x; |
|
|
| return prjoff(prj, 0.0, 90.0); |
| } |
|
|
| |
|
|
| int xphx2s(prj, nx, ny, sxy, spt, x, y, phi, theta, stat) |
|
|
| struct prjprm *prj; |
| int nx, ny, sxy, spt; |
| const double x[], y[]; |
| double phi[], theta[]; |
| int stat[]; |
|
|
| { |
| int mx, my, rowlen, rowoff, status; |
| double abseta, eta, eta1, sigma, xi, xi1, xr, yr; |
| const double tol = 1.0e-12; |
| register int istat, ix, iy, *statp; |
| register const double *xp, *yp; |
| register double *phip, *thetap; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != XPH) { |
| if ((status = xphset(prj))) return status; |
| } |
|
|
| if (ny > 0) { |
| mx = nx; |
| my = ny; |
| } else { |
| mx = 1; |
| my = 1; |
| ny = nx; |
| } |
|
|
| status = 0; |
|
|
|
|
| |
| xp = x; |
| rowoff = 0; |
| rowlen = nx*spt; |
| for (ix = 0; ix < nx; ix++, rowoff += spt, xp += sxy) { |
| xr = (*xp + prj->x0)*prj->w[1]; |
|
|
| phip = phi + rowoff; |
| for (iy = 0; iy < my; iy++) { |
| *phip = xr; |
| phip += rowlen; |
| } |
| } |
|
|
|
|
| |
| yp = y; |
| phip = phi; |
| thetap = theta; |
| statp = stat; |
| for (iy = 0; iy < ny; iy++, yp += sxy) { |
| yr = (*yp + prj->y0)*prj->w[1]; |
|
|
| for (ix = 0; ix < mx; ix++, phip += spt, thetap += spt) { |
| xr = *phip; |
|
|
| if (xr <= 0.0 && 0.0 < yr) { |
| xi1 = -xr - yr; |
| eta1 = xr - yr; |
| *phip = -180.0; |
| } else if (xr < 0.0 && yr <= 0.0) { |
| xi1 = xr - yr; |
| eta1 = xr + yr; |
| *phip = -90.0; |
| } else if (0.0 <= xr && yr < 0.0) { |
| xi1 = xr + yr; |
| eta1 = -xr + yr; |
| *phip = 0.0; |
| } else { |
| xi1 = -xr + yr; |
| eta1 = -xr - yr; |
| *phip = 90.0; |
| } |
|
|
| xi = xi1 + 45.0; |
| eta = eta1 + 90.0; |
| abseta = fabs(eta); |
|
|
| if (abseta <= 90.0) { |
| if (abseta <= 45.0) { |
| |
| *phip += xi; |
| *thetap = asind(eta/67.5); |
| istat = 0; |
|
|
| |
| if (prj->bounds&2) { |
| if (45.0+tol < fabs(xi1)) { |
| istat = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("xphx2s"); |
| } |
| } |
|
|
| *(statp++) = istat; |
|
|
| } else { |
| |
| sigma = (90.0 - abseta) / 45.0; |
|
|
| |
| if (xr == 0.0) { |
| if (yr <= 0.0) { |
| *phip = 0.0; |
| } else { |
| *phip = 180.0; |
| } |
| } else if (yr == 0.0) { |
| if (xr < 0.0) { |
| *phip = -90.0; |
| } else { |
| *phip = 90.0; |
| } |
| } else { |
| *phip += 45.0 + xi1/sigma; |
| } |
|
|
| if (sigma < prj->w[3]) { |
| *thetap = 90.0 - sigma*prj->w[4]; |
| } else { |
| *thetap = asind(1.0 - sigma*sigma/3.0); |
| } |
| if (eta < 0.0) *thetap = -(*thetap); |
|
|
| |
| istat = 0; |
| if (prj->bounds&2) { |
| if (eta < -45.0 && eta+90.0+tol < fabs(xi1)) { |
| istat = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("xphx2s"); |
| } |
| } |
|
|
| *(statp++) = istat; |
| } |
|
|
| } else { |
| |
| *phip = 0.0; |
| *thetap = 0.0; |
| *(statp++) = 1; |
| if (!status) status = PRJERR_BAD_PIX_SET("xphx2s"); |
| } |
| } |
| } |
|
|
|
|
| |
| if (prj->bounds&4 && prjbchk(1.0e-12, nx, my, spt, phi, theta, stat)) { |
| if (!status) status = PRJERR_BAD_PIX_SET("xphx2s"); |
| } |
|
|
| return status; |
| } |
|
|
| |
|
|
| int xphs2x(prj, nphi, ntheta, spt, sxy, phi, theta, x, y, stat) |
|
|
| struct prjprm *prj; |
| int nphi, ntheta, spt, sxy; |
| const double phi[], theta[]; |
| double x[], y[]; |
| int stat[]; |
|
|
| { |
| int mphi, mtheta, rowlen, rowoff, status; |
| double abssin, chi, eta, psi, sigma, sinthe, xi; |
| register int iphi, itheta, *statp; |
| register const double *phip, *thetap; |
| register double *xp, *yp; |
|
|
|
|
| |
| if (prj == 0x0) return PRJERR_NULL_POINTER; |
| if (prj->flag != XPH) { |
| if ((status = xphset(prj))) return status; |
| } |
|
|
| if (ntheta > 0) { |
| mphi = nphi; |
| mtheta = ntheta; |
| } else { |
| mphi = 1; |
| mtheta = 1; |
| ntheta = nphi; |
| } |
|
|
|
|
| |
| phip = phi; |
| rowoff = 0; |
| rowlen = nphi*sxy; |
| for (iphi = 0; iphi < nphi; iphi++, rowoff += sxy, phip += spt) { |
| chi = *phip; |
| if (180.0 <= fabs(chi)) { |
| chi = fmod(chi, 360.0); |
| if (chi < -180.0) { |
| chi += 360.0; |
| } else if (180.0 <= chi) { |
| chi -= 360.0; |
| } |
| } |
|
|
| |
| chi += 180.0; |
| psi = fmod(chi, 90.0); |
|
|
| xp = x + rowoff; |
| yp = y + rowoff; |
| for (itheta = 0; itheta < mtheta; itheta++) { |
| |
| *xp = psi; |
| *yp = chi - 180.0; |
| xp += rowlen; |
| yp += rowlen; |
| } |
| } |
|
|
|
|
| |
| thetap = theta; |
| xp = x; |
| yp = y; |
| statp = stat; |
| for (itheta = 0; itheta < ntheta; itheta++, thetap += spt) { |
| sinthe = sind(*thetap); |
| abssin = fabs(sinthe); |
|
|
| for (iphi = 0; iphi < mphi; iphi++, xp += sxy, yp += sxy) { |
| if (abssin <= prj->w[2]) { |
| |
| xi = *xp; |
| eta = 67.5 * sinthe; |
|
|
| } else { |
| |
| if (*thetap < prj->w[5]) { |
| sigma = sqrt(3.0*(1.0 - abssin)); |
| } else { |
| sigma = (90.0 - *thetap)*prj->w[6]; |
| } |
|
|
| xi = 45.0 + (*xp - 45.0)*sigma; |
| eta = 45.0 * (2.0 - sigma); |
| if (*thetap < 0.0) eta = -eta; |
| } |
|
|
| xi -= 45.0; |
| eta -= 90.0; |
|
|
| |
| if (*yp < -90.0) { |
| *xp = prj->w[0]*(-xi + eta) - prj->x0; |
| *yp = prj->w[0]*(-xi - eta) - prj->y0; |
|
|
| } else if (*yp < 0.0) { |
| *xp = prj->w[0]*(+xi + eta) - prj->x0; |
| *yp = prj->w[0]*(-xi + eta) - prj->y0; |
|
|
| } else if (*yp < 90.0) { |
| *xp = prj->w[0]*( xi - eta) - prj->x0; |
| *yp = prj->w[0]*( xi + eta) - prj->y0; |
|
|
| } else { |
| *xp = prj->w[0]*(-xi - eta) - prj->x0; |
| *yp = prj->w[0]*( xi - eta) - prj->y0; |
| } |
|
|
| *(statp++) = 0; |
| } |
| } |
|
|
| return 0; |
| } |
|
|