hc99's picture
Add files using upload-large-folder tool
56d74b6 verified
raw
history blame
13 kB
/*============================================================================
WCSLIB 6.2 - an implementation of the FITS WCS standard.
Copyright (C) 1995-2018, Mark Calabretta
This file is part of WCSLIB.
WCSLIB is free software: you can redistribute it and/or modify it under the
terms of the GNU Lesser General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option)
any later version.
WCSLIB is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
more details.
You should have received a copy of the GNU Lesser General Public License
along with WCSLIB. If not, see http://www.gnu.org/licenses.
Direct correspondence concerning WCSLIB to mark@calabretta.id.au
Author: Mark Calabretta, Australia Telescope National Facility, CSIRO.
http://www.atnf.csiro.au/people/Mark.Calabretta
$Id: cel.c,v 6.2 2018/10/20 10:03:13 mcalabre Exp $
*===========================================================================*/
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include "wcserr.h"
#include "wcsmath.h"
#include "wcsprintf.h"
#include "wcstrig.h"
#include "sph.h"
#include "cel.h"
const int CELSET = 137;
/* Map status return value to message. */
const char *cel_errmsg[] = {
"Success",
"Null celprm pointer passed",
"Invalid projection parameters",
"Invalid coordinate transformation parameters",
"Ill-conditioned coordinate transformation parameters",
"One or more of the (x,y) coordinates were invalid",
"One or more of the (lng,lat) coordinates were invalid"};
/* Map error returns for lower-level routines. */
const int cel_prjerr[] = {
CELERR_SUCCESS, /* 0: PRJERR_SUCCESS */
CELERR_NULL_POINTER, /* 1: PRJERR_NULL_POINTER */
CELERR_BAD_PARAM, /* 2: PRJERR_BAD_PARAM */
CELERR_BAD_PIX, /* 3: PRJERR_BAD_PIX */
CELERR_BAD_WORLD /* 4: PRJERR_BAD_WORLD */
};
/* Convenience macro for invoking wcserr_set(). */
#define CEL_ERRMSG(status) WCSERR_SET(status), cel_errmsg[status]
/*--------------------------------------------------------------------------*/
int celini(cel)
struct celprm *cel;
{
register int k;
if (cel == 0x0) return CELERR_NULL_POINTER;
cel->flag = 0;
cel->offset = 0;
cel->phi0 = UNDEFINED;
cel->theta0 = UNDEFINED;
cel->ref[0] = 0.0;
cel->ref[1] = 0.0;
cel->ref[2] = UNDEFINED;
cel->ref[3] = +90.0;
for (k = 0; k < 5; cel->euler[k++] = 0.0);
cel->latpreq = -1;
cel->err = 0x0;
return cel_prjerr[prjini(&(cel->prj))];
}
/*--------------------------------------------------------------------------*/
int celfree(cel)
struct celprm *cel;
{
if (cel == 0x0) return CELERR_NULL_POINTER;
if (cel->err) {
free(cel->err);
cel->err = 0x0;
}
return cel_prjerr[prjfree(&(cel->prj))];
}
/*--------------------------------------------------------------------------*/
int celprt(cel)
const struct celprm *cel;
{
int i;
if (cel == 0x0) return CELERR_NULL_POINTER;
wcsprintf(" flag: %d\n", cel->flag);
wcsprintf(" offset: %d\n", cel->offset);
if (undefined(cel->phi0)) {
wcsprintf(" phi0: UNDEFINED\n");
} else {
wcsprintf(" phi0: %9f\n", cel->phi0);
}
if (undefined(cel->theta0)) {
wcsprintf(" theta0: UNDEFINED\n");
} else {
wcsprintf(" theta0: %9f\n", cel->theta0);
}
wcsprintf(" ref:");
for (i = 0; i < 4; i++) {
wcsprintf(" %#- 11.5g", cel->ref[i]);
}
wcsprintf("\n");
wcsprintf(" prj: (see below)\n");
wcsprintf(" euler:");
for (i = 0; i < 5; i++) {
wcsprintf(" %#- 11.5g", cel->euler[i]);
}
wcsprintf("\n");
wcsprintf(" latpreq: %d", cel->latpreq);
if (cel->latpreq == 0) {
wcsprintf(" (not required)\n");
} else if (cel->latpreq == 1) {
wcsprintf(" (disambiguation)\n");
} else if (cel->latpreq == 2) {
wcsprintf(" (specification)\n");
} else {
wcsprintf(" (UNDEFINED)\n");
}
wcsprintf(" isolat: %d\n", cel->isolat);
WCSPRINTF_PTR(" err: ", cel->err, "\n");
if (cel->err) {
wcserr_prt(cel->err, " ");
}
wcsprintf("\n");
wcsprintf(" prj.*\n");
prjprt(&(cel->prj));
return 0;
}
/*--------------------------------------------------------------------------*/
int celperr(const struct celprm *cel, const char *prefix)
{
if (cel == 0x0) return CELERR_NULL_POINTER;
if (cel->err && wcserr_prt(cel->err, prefix) == 0) {
wcserr_prt(cel->prj.err, prefix);
}
return 0;
}
/*--------------------------------------------------------------------------*/
int celset(cel)
struct celprm *cel;
{
static const char *function = "celset";
int status;
const double tol = 1.0e-10;
double clat0, cphip, cthe0, lat0, lng0, phip, slat0, slz, sphip, sthe0;
double latp, latp1, latp2, lngp;
double u, v, x, y, z;
struct prjprm *celprj;
struct wcserr **err;
if (cel == 0x0) return CELERR_NULL_POINTER;
err = &(cel->err);
/* Initialize the projection driver routines. */
celprj = &(cel->prj);
if (cel->offset) {
celprj->phi0 = cel->phi0;
celprj->theta0 = cel->theta0;
} else {
/* Ensure that these are undefined - no fiducial offset. */
celprj->phi0 = UNDEFINED;
celprj->theta0 = UNDEFINED;
}
if ((status = prjset(celprj))) {
return wcserr_set(CEL_ERRMSG(cel_prjerr[status]));
}
/* Defaults set by the projection routines. */
if (undefined(cel->phi0)) {
cel->phi0 = celprj->phi0;
}
if (undefined(cel->theta0)) {
cel->theta0 = celprj->theta0;
} else if (fabs(cel->theta0) > 90.0) {
if (fabs(cel->theta0) > 90.0 + tol) {
return wcserr_set(WCSERR_SET(CELERR_BAD_COORD_TRANS),
"Invalid coordinate transformation parameters: theta0 > 90");
}
if (cel->theta0 > 90.0) {
cel->theta0 = 90.0;
} else {
cel->theta0 = -90.0;
}
}
lng0 = cel->ref[0];
lat0 = cel->ref[1];
phip = cel->ref[2];
latp = cel->ref[3];
/* Set default for native longitude of the celestial pole? */
if (undefined(phip) || phip == 999.0) {
phip = (lat0 < cel->theta0) ? 180.0 : 0.0;
phip += cel->phi0;
if (phip < -180.0) {
phip += 360.0;
} else if (phip > 180.0) {
phip -= 360.0;
}
cel->ref[2] = phip;
}
/* Compute celestial coordinates of the native pole. */
cel->latpreq = 0;
if (cel->theta0 == 90.0) {
/* Fiducial point at the native pole. */
lngp = lng0;
latp = lat0;
} else {
/* Fiducial point away from the native pole. */
sincosd(lat0, &slat0, &clat0);
sincosd(cel->theta0, &sthe0, &cthe0);
if (phip == cel->phi0) {
sphip = 0.0;
cphip = 1.0;
u = cel->theta0;
v = 90.0 - lat0;
} else {
sincosd(phip - cel->phi0, &sphip, &cphip);
x = cthe0*cphip;
y = sthe0;
z = sqrt(x*x + y*y);
if (z == 0.0) {
if (slat0 != 0.0) {
return wcserr_set(WCSERR_SET(CELERR_BAD_COORD_TRANS),
"Invalid coordinate description:\n"
"lat0 == 0 is required for |phip - phi0| = 90 and theta0 == 0");
}
/* latp determined solely by LATPOLEa in this case. */
cel->latpreq = 2;
if (latp > 90.0) {
latp = 90.0;
} else if (latp < -90.0) {
latp = -90.0;
}
} else {
slz = slat0/z;
if (fabs(slz) > 1.0) {
if ((fabs(slz) - 1.0) < tol) {
if (slz > 0.0) {
slz = 1.0;
} else {
slz = -1.0;
}
} else {
return wcserr_set(WCSERR_SET(CELERR_BAD_COORD_TRANS),
"Invalid coordinate description:\n|lat0| <= %.3f is required "
"for these values of phip, phi0, and theta0", asind(z));
}
}
u = atan2d(y,x);
v = acosd(slz);
}
}
if (cel->latpreq == 0) {
latp1 = u + v;
if (latp1 > 180.0) {
latp1 -= 360.0;
} else if (latp1 < -180.0) {
latp1 += 360.0;
}
latp2 = u - v;
if (latp2 > 180.0) {
latp2 -= 360.0;
} else if (latp2 < -180.0) {
latp2 += 360.0;
}
if (fabs(latp1) < 90.0+tol &&
fabs(latp2) < 90.0+tol) {
/* There are two valid solutions for latp. */
cel->latpreq = 1;
}
if (fabs(latp-latp1) < fabs(latp-latp2)) {
if (fabs(latp1) < 90.0+tol) {
latp = latp1;
} else {
latp = latp2;
}
} else {
if (fabs(latp2) < 90.0+tol) {
latp = latp2;
} else {
latp = latp1;
}
}
/* Account for rounding error. */
if (fabs(latp) < 90.0+tol) {
if (latp > 90.0) {
latp = 90.0;
} else if (latp < -90.0) {
latp = -90.0;
}
}
}
z = cosd(latp)*clat0;
if (fabs(z) < tol) {
if (fabs(clat0) < tol) {
/* Celestial pole at the fiducial point. */
lngp = lng0;
} else if (latp > 0.0) {
/* Celestial north pole at the native pole.*/
lngp = lng0 + phip - cel->phi0 - 180.0;
} else {
/* Celestial south pole at the native pole. */
lngp = lng0 - phip + cel->phi0;
}
} else {
x = (sthe0 - sind(latp)*slat0)/z;
y = sphip*cthe0/clat0;
if (x == 0.0 && y == 0.0) {
/* Sanity check (shouldn't be possible). */
return wcserr_set(WCSERR_SET(CELERR_BAD_COORD_TRANS),
"Invalid coordinate transformation parameters, internal error");
}
lngp = lng0 - atan2d(y,x);
}
/* Make celestial longitude of the native pole the same sign as at the
fiducial point. */
if (lng0 >= 0.0) {
if (lngp < 0.0) {
lngp += 360.0;
} else if (lngp > 360.0) {
lngp -= 360.0;
}
} else {
if (lngp > 0.0) {
lngp -= 360.0;
} else if (lngp < -360.0) {
lngp += 360.0;
}
}
}
/* Reset LATPOLEa. */
cel->ref[3] = latp;
/* Set the Euler angles. */
cel->euler[0] = lngp;
cel->euler[1] = 90.0 - latp;
cel->euler[2] = phip;
sincosd(cel->euler[1], &cel->euler[4], &cel->euler[3]);
cel->isolat = (cel->euler[4] == 0.0);
cel->flag = CELSET;
/* Check for ill-conditioned parameters. */
if (fabs(latp) > 90.0+tol) {
return wcserr_set(WCSERR_SET(CELERR_ILL_COORD_TRANS),
"Ill-conditioned coordinate transformation parameters\nNo valid "
"solution for latp for these values of phip, phi0, and theta0");
}
return 0;
}
/*--------------------------------------------------------------------------*/
int celx2s(cel, nx, ny, sxy, sll, x, y, phi, theta, lng, lat, stat)
struct celprm *cel;
int nx, ny, sxy, sll;
const double x[], y[];
double phi[], theta[];
double lng[], lat[];
int stat[];
{
static const char *function = "celx2s";
int istat, nphi, status = 0;
struct prjprm *celprj;
struct wcserr **err;
/* Initialize. */
if (cel == 0x0) return CELERR_NULL_POINTER;
err = &(cel->err);
if (cel->flag != CELSET) {
if ((status = celset(cel))) return status;
}
/* Apply spherical deprojection. */
celprj = &(cel->prj);
if ((istat = celprj->prjx2s(celprj, nx, ny, sxy, 1, x, y, phi, theta,
stat))) {
if (istat) {
status = wcserr_set(CEL_ERRMSG(cel_prjerr[istat]));
if (status != CELERR_BAD_PIX) {
return status;
}
}
}
nphi = (ny > 0) ? (nx*ny) : nx;
/* Compute celestial coordinates. */
sphx2s(cel->euler, nphi, 0, 1, sll, phi, theta, lng, lat);
return status;
}
/*--------------------------------------------------------------------------*/
int cels2x(cel, nlng, nlat, sll, sxy, lng, lat, phi, theta, x, y, stat)
struct celprm *cel;
int nlng, nlat, sll, sxy;
const double lng[], lat[];
double phi[], theta[];
double x[], y[];
int stat[];
{
static const char *function = "cels2x";
int istat, nphi, ntheta, status = 0;
struct prjprm *celprj;
struct wcserr **err;
/* Initialize. */
if (cel == 0x0) return CELERR_NULL_POINTER;
err = &(cel->err);
if (cel->flag != CELSET) {
if ((status = celset(cel))) return status;
}
/* Compute native coordinates. */
sphs2x(cel->euler, nlng, nlat, sll, 1, lng, lat, phi, theta);
if (cel->isolat) {
/* Constant celestial latitude -> constant native latitude. */
nphi = nlng;
ntheta = nlat;
} else {
nphi = (nlat > 0) ? (nlng*nlat) : nlng;
ntheta = 0;
}
/* Apply the spherical projection. */
celprj = &(cel->prj);
if ((istat = celprj->prjs2x(celprj, nphi, ntheta, 1, sxy, phi, theta, x, y,
stat))) {
if (istat) {
status = wcserr_set(CEL_ERRMSG(cel_prjerr[istat]));
if (status != CELERR_BAD_WORLD) {
return status;
}
}
}
return status;
}