/usr/include/cat/astro_image.h is in skycat 3.1.2+starlink1~b-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #ifndef _astroImage_h_
#define _astroImage_h_
/*
* E.S.O. - VLT project
* $Id: astro_image.h,v 1.1.1.1 2009/03/31 14:11:52 cguirao Exp $
*
* astro_image.h - C interface to C++ class AstroImage
*
* (Note: C applications must have at least a dummy C++ main and link
* with C++)
*
* See the man page for a complete description.
*
* who when what
* -------------- -------- ----------------------------------------
* Allan Brighton 05/10/95 Created
* 02/01/06 Renamed astroImage.h to astro_image.h to avoid
* name conflict on file systems that ignore case
*/
/* handle for an open image server */
typedef void* AiHandle;
/*
* open the named image server and return a handle for it or NULL if
* there were errors
*/
AiHandle aiOpen(char* name);
/* close the image server connection and free its resources */
void aiClose(AiHandle);
/*
* pass a request to the catalog and return the name of a FITS file
* containing the resulting image, or NULL if not found
*
* Args:
*
* handle - handle returned from ai_open()
*
* ra, dec - world coordinates position
*
* width, height - dimensions of image to return.
*
* The return filename is the name of a temporary file that will
* be reused on the next call to this routine.
*/
char* aiGetImage(AiHandle handle, double ra, double dec,
double width, double height);
#endif /* _astroImage_h_ */
|