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
|
#if HAVE_CONFIG_H
#include <conf.h>
#endif
#include <stdio.h>
#include <ctype.h>
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#if HAVE_STDLIB_H
#include <stdlib.h>
#else
double strtod();
#endif
#include <math.h>
int SAOdtype=0;
double SAOstrtod(str, ptr)
char *str;
char **ptr;
{
double d = 0.0;
double m = 0.0;
double s = 0.0;
char *p, *px;
char c;
SAOdtype = 0;
if ( ptr == NULL ) ptr = &p;
while ( *str == ' ' ) str++;
/* No base implied (yet).
*/
d = strtod(str, ptr);
px = *ptr;
if( strchr(str, (int)'.') )
SAOdtype = '.';
if ( ( c = **ptr )
&& ( c == 'h' || c == 'd' || c == ':' || c == ' ' || c == 'm' )
&& ( (*ptr - str) <= 4 )
&& ( ( isdigit((int)*((*ptr)+1)) )
|| ( (*((*ptr)+1)) == ' ' && isdigit((int)*((*ptr)+2)) ) ) ) {
double sign = 1.0;
SAOdtype = c;
(*ptr)++;
if ( *str == '-' ) {
sign = -1.0;
d = -d;
}
m = strtod(*ptr, ptr);
if ( c == 'm' ) {
s = m;
m = d;
d = 0.0;
} else
if ( ( c = **ptr )
&& ( c == ':' || c == ' ' || c == 'm' )
&& ( (*ptr - px) <= 3 )
&& ( ( isdigit((int)*((*ptr)+1)) )
|| ( (*((*ptr)+1)) == ' ' && isdigit((int)*((*ptr)+2))))) {
(*ptr)++;
s = strtod(*ptr, ptr);
}
return sign * (d + m / 60 + s / 3600);
}
/* I guess that there wern't really any units.
*/
return d;
}
char *SAOconvert(buff, val, type, prec)
char *buff;
double val;
int type;
int prec;
{
char fmt[32];
char *sign = "";
float degrees = val;
float minutes;
float seconds;
char ch1, ch2;
switch ( type ) {
case 'b': {
int v = val;
unsigned int i;
int c = 2;
buff[0] = '0';
buff[1] = 'b';
for ( i = 0x8000; i; i /= 2 ) {
if ( v & i || c > 2 ) {
buff[c] = v & i ? '1' : '0';
c++;
}
}
buff[c] = '\0';
return buff;
}
case 'o':
sprintf(buff, "0o%o", (int) val);
return buff;
case 'x':
sprintf(buff, "0x%x", (int) val);
return buff;
case ':': ch1 = ':'; ch2 = ':'; break;
case ' ': ch1 = ' '; ch2 = ' '; break;
case 'h': ch1 = 'h'; ch2 = 'm'; break;
case 'd': ch1 = 'd'; ch2 = 'm'; break;
case 'm': ch1 = 'm'; ch2 = 'm'; break;
default: return 0;
}
if ( degrees < 0.0 ) {
sign = "-";
degrees = - degrees;
}
minutes = (degrees - ((int) degrees)) * 60;
if ( minutes < 0 ) minutes = 0.0;
seconds = (minutes - ((int) minutes)) * 60;
if ( seconds < 0 ) seconds = 0.0;
if ( prec == -1 ){
if ( type == 'h' ) prec = 4;
else prec = 3;
}
if ( prec == -2 ) {
if ( type == 'm' ){
if ( seconds < 10.0 )
sprintf(buff, "%s%d%c0%g"
, sign, (int)(minutes+degrees*60), ch2, seconds);
else
sprintf(buff, "%s%d%c%g"
, sign, (int)(minutes+degrees*60), ch2, seconds);
}
else if ( seconds < 10.0 )
sprintf(buff, "%s%d%c0%2d%c0%g"
, sign, (int) (degrees)
, ch1 , (int) (minutes)
, ch2, seconds);
else
sprintf(buff, "%s%d%c%2d%c%g"
, sign, (int) (degrees)
, ch1 , (int) (minutes)
, ch2, seconds);
} else {
double p = pow(10.0, (double) prec);
int m = minutes;
int d = degrees;
if ( (((int)(seconds * p + .5))/ p) >= 60 ) {
seconds = 0.0;
m++;
if ( m >= 60 ) {
m = 0;
d++;
}
}
if ( (((int)(seconds * p + .5))/ p) < 10.0 )
sprintf(fmt, "%%s%%d%c%%2.2d%c0%%.%df", ch1, ch2, prec);
else
sprintf(fmt, "%%s%%d%c%%2.2d%c%%.%df" , ch1, ch2, prec);
sprintf(buff, fmt, sign, d, m, seconds);
}
return buff;
}
|