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
|
/* Header files. */
/* ============= */
/* Interface definitions. */
/* ---------------------- */
#include "ast.h" /* AST C interface definition */
/* C header files. */
/* --------------- */
#include <stdio.h>
/* Main function. */
/* ============== */
int main( int argc, char *argv[] ) {
/*
*+
* Name:
* ast_test
* Purpose:
* Test installation of the AST library.
* Type:
* C program.
* Description:
* This program performs a simple test (without using graphics) of
* the AST library, to check that it is correctly installed. It is
* not an exhaustive test of the system.
* Arguments:
* None.
* Copyright:
* Copyright (C) 1997-2006 Council for the Central Laboratory of the
* Research Councils
* Licence:
* This program 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.
*
* This program 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
* License along with this program. If not, see
* <http://www.gnu.org/licenses/>.
* Authors:
* RFWS: R.F. Warren-Smith (Starlink)
* History:
* 19-NOV-1997 (RFWS);
* Original version.
*-
*/
/* Local Constants: */
#define NCOORD 10 /* Number of coordinates to transform */
/* Local Variables: */
AstFrameSet *cvt; /* Pointer to conversion FrameSet */
AstSkyFrame *sky1; /* Pointer to first SkyFrame */
AstSkyFrame *sky2; /* Pointer to second SkyFrame */
double xin[ NCOORD ]; /* Input coordinate array */
double xout[ NCOORD ]; /* Output coordinate array */
double yin[ NCOORD ]; /* Input coordinate array */
double yout[ NCOORD ]; /* Output coordinate array */
int i; /* Loop counter for coordinates */
/* Begin an AST context. */
astBegin;
/* Create two SkyFrames. */
sky1 = astSkyFrame( "system = FK4_NO_E, equinox = B1920, epoch = B1958" );
sky2 = astSkyFrame( "system = ecliptic, equinox = J2001" );
/* Create a FrameSet describing the conversion between them. */
cvt = astConvert( sky1, sky2, "" );
/* If successful, set up some input coordinates. */
if ( cvt != AST__NULL ) {
for ( i = 0; i < NCOORD; i++ ) {
xin[ i ] = 0.1 * (double) i;
yin[ i ] = 0.2 * (double) i;
}
/* Display the FrameSet. */
astShow( cvt );
printf( "\n");
/* Activate reporting of coordinate transformations. */
astSet( cvt, "Report = 1" );
/* Perform the forward transformation. */
astTran2( cvt, 10, xin, yin, 1, xout, yout );
printf( "\n");
/* Perform the inverse transformation. */
astTran2( cvt, 10, xout, yout, 0, xin, yin );
}
/* End the AST context. */
astEnd;
/* Return an error status. */
return astOK ? 0 : 1;
/* Undefine local macros. */
#undef NCOORD
}
|