1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
|
/*============================================================================
WCSLIB 5.14 - an implementation of the FITS WCS standard.
Copyright (C) 1995-2016, 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: wcsutil.c,v 5.14 2016/02/07 10:49:31 mcalabre Exp $
*===========================================================================*/
#include <ctype.h>
#include <locale.h>
#include <math.h>
#include <stdio.h>
#include <string.h>
#include "wcsutil.h"
#include "wcsmath.h"
#include "dis.h"
/*--------------------------------------------------------------------------*/
void wcsutil_blank_fill(int n, char c[])
{
int k;
for (k = strlen(c); k < n; k++) {
c[k] = ' ';
}
return;
}
/*--------------------------------------------------------------------------*/
void wcsutil_null_fill(int n, char c[])
{
int j, k;
if (n <= 0) return;
/* Null-fill the string. */
*(c+n-1) = '\0';
for (j = 0; j < n; j++) {
if (c[j] == '\0') {
for (k = j+1; k < n; k++) {
c[k] = '\0';
}
break;
}
}
for (k = j-1; k > 0; k--) {
if (c[k] != ' ') break;
c[k] = '\0';
}
return;
}
/*--------------------------------------------------------------------------*/
int wcsutil_allEq(int nvec, int nelem, const double *first)
{
double v0;
const double *vp;
if (nvec <= 0 || nelem <= 0) return 0;
v0 = *first;
for (vp = first+nelem; vp < first + nvec*nelem; vp += nelem) {
if (*vp != v0) return 0;
}
return 1;
}
/*--------------------------------------------------------------------------*/
int wcsutil_Eq(int nelem, double tol, const double *arr1, const double *arr2)
{
int i;
if (nelem == 0) return 1;
if (nelem < 0) return 0;
if (arr1 == 0x0 && arr2 == 0x0) return 1;
if (arr1 == 0x0 || arr2 == 0x0) return 0;
if (tol == 0.0) {
/* Handled separately for speed of execution. */
for (i = 0; i < nelem; i++, arr1++, arr2++) {
if (*arr1 != *arr2) return 0;
}
} else {
for (i = 0; i < nelem; i++, arr1++, arr2++) {
/* Undefined values must match exactly. */
if (*arr1 == UNDEFINED && *arr2 != UNDEFINED) return 0;
if (*arr1 != UNDEFINED && *arr2 == UNDEFINED) return 0;
/* Otherwise, compare within the specified tolerance. */
if (fabs(*arr1 - *arr2) > 0.5*tol) return 0;
}
}
return 1;
}
/*--------------------------------------------------------------------------*/
int wcsutil_intEq(int nelem, const int *arr1, const int *arr2)
{
int i;
if (nelem == 0) return 1;
if (nelem < 0) return 0;
if (arr1 == 0x0 && arr2 == 0x0) return 1;
if (arr1 == 0x0 || arr2 == 0x0) return 0;
for (i = 0; i < nelem; i++, arr1++, arr2++) {
if (*arr1 != *arr2) return 0;
}
return 1;
}
/*--------------------------------------------------------------------------*/
int wcsutil_strEq(int nelem, char (*arr1)[72], char (*arr2)[72])
{
int i;
if (nelem == 0) return 1;
if (nelem < 0) return 0;
if (arr1 == 0x0 && arr2 == 0x0) return 1;
if (arr1 == 0x0 || arr2 == 0x0) return 0;
for (i = 0; i < nelem; i++, arr1++, arr2++) {
if (strncmp(*arr1, *arr2, 72)) return 0;
}
return 1;
}
/*--------------------------------------------------------------------------*/
void wcsutil_setAll(int nvec, int nelem, double *first)
{
double v0, *vp;
if (nvec <= 0 || nelem <= 0) return;
v0 = *first;
for (vp = first+nelem; vp < first + nvec*nelem; vp += nelem) {
*vp = v0;
}
}
/*--------------------------------------------------------------------------*/
void wcsutil_setAli(int nvec, int nelem, int *first)
{
int v0, *vp;
if (nvec <= 0 || nelem <= 0) return;
v0 = *first;
for (vp = first+nelem; vp < first + nvec*nelem; vp += nelem) {
*vp = v0;
}
}
/*--------------------------------------------------------------------------*/
void wcsutil_setBit(int nelem, const int *sel, int bits, int *array)
{
int *arrp;
if (bits == 0 || nelem <= 0) return;
if (sel == 0x0) {
/* All elements selected. */
for (arrp = array; arrp < array + nelem; arrp++) {
*arrp |= bits;
}
} else {
/* Some elements selected. */
for (arrp = array; arrp < array + nelem; arrp++) {
if (*(sel++)) *arrp |= bits;
}
}
}
/*--------------------------------------------------------------------------*/
char *wcsutil_fptr2str(int (*func)(void), char hext[19])
{
unsigned char *p = (unsigned char *)(&func);
char *t = hext;
int i, *(ip[2]), j[2], le = 1, gotone = 0;
/* Test for little-endian addresses. */
ip[0] = j;
ip[1] = j + 1;
if ((unsigned char *)ip[0] < (unsigned char *)ip[1]) {
/* Little-endian, reverse it. */
p += sizeof(func) - 1;
le = -1;
}
sprintf(t, "0x0");
t += 2;
for (i = 0; i < sizeof(func); i++) {
/* Skip leading zeroes. */
if (*p) gotone = 1;
if (gotone) {
sprintf(t, "%02x", *p);
t += 2;
}
p += le;
}
return hext;
}
/*--------------------------------------------------------------------------*/
static void wcsutil_locale_to_dot(char *buf)
{
struct lconv *locale_data = localeconv();
const char *decimal_point = locale_data->decimal_point;
if (decimal_point[0] != '.' || decimal_point[1] != 0) {
size_t decimal_point_len = strlen(decimal_point);
char *inbuf = buf;
char *outbuf = buf;
for ( ; *inbuf; inbuf++) {
if (strncmp(inbuf, decimal_point, decimal_point_len) == 0) {
*outbuf++ = '.';
inbuf += decimal_point_len - 1;
} else {
*outbuf++ = *inbuf;
}
}
*outbuf = '\0';
}
}
void wcsutil_double2str(char *buf, const char *format, double value)
{
char *bp, *cp;
sprintf(buf, format, value);
wcsutil_locale_to_dot(buf);
/* Look for a decimal point or exponent. */
bp = buf;
while (*bp) {
if (*bp != ' ') {
if (*bp == '.') return;
if (*bp == 'e') return;
if (*bp == 'E') return;
}
bp++;
}
/* Not found, add a fractional part. */
bp = buf;
if (*bp == ' ') {
cp = buf + 1;
if (*cp == ' ') cp++;
while (*cp) {
*bp = *cp;
bp++;
cp++;
}
*bp = '.';
bp++;
if (bp < cp) *bp = '0';
}
}
/*--------------------------------------------------------------------------*/
static const char *wcsutil_dot_to_locale(const char *inbuf, char *outbuf)
{
struct lconv *locale_data = localeconv();
const char *decimal_point = locale_data->decimal_point;
if (decimal_point[0] != '.' || decimal_point[1] != 0) {
char *out = outbuf;
size_t decimal_point_len = strlen(decimal_point);
for ( ; *inbuf; inbuf++) {
if (*inbuf == '.') {
strncpy(out, decimal_point, decimal_point_len);
out += decimal_point_len;
} else {
*out++ = *inbuf;
}
}
*out = '\0';
return outbuf;
} else {
return inbuf;
}
}
int wcsutil_str2double(const char *buf, const char *format, double *value)
{
char ctmp[72];
return sscanf(wcsutil_dot_to_locale(buf, ctmp), "%lf", value) < 1;
}
/*--------------------------------------------------------------------------*/
int wcsutil_dpkey_int(const struct dpkey *dp)
{
if (dp->type != 0) {
return (int)dp->value.f;
}
return dp->value.i;
}
/*--------------------------------------------------------------------------*/
double wcsutil_dpkey_double(const struct dpkey *dp)
{
if (dp->type == 0) {
return (double)dp->value.i;
}
return dp->value.f;
}
|