/usr/include/astrometry/ngcic-accurate.h is in libastrometry-dev 0.70+dfsg-1.
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 | /*
# This file is part of the Astrometry.net suite.
# Licensed under a 3-clause BSD style license - see LICENSE
*/
#ifndef NGCIC_ACCURATE_H
#define NGCIC_ACCURATE_H
/*
The accurate NGC/IC positions database can be found here:
http://www.ngcic.org/corwin/default.htm
*/
struct ngcic_accurate {
// true: NGC. false: IC.
int is_ngc;
// NGC/IC number
int id;
// RA,Dec in B2000.0 degrees
float ra;
float dec;
};
typedef struct ngcic_accurate ngcic_accurate;
int ngcic_accurate_get_radec(int is_ngc, int id, float* ra, float* dec);
int ngcic_accurate_num_entries();
ngcic_accurate* ngcic_accurate_get_entry(int i);
#endif
|