This file is indexed.

/usr/include/astrometry/plotannotations.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
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
/*
# This file is part of the Astrometry.net suite.
# Licensed under a 3-clause BSD style license - see LICENSE
 */
#ifndef PLOTANNOTATIONS_H
#define PLOTANNOTATIONS_H

#include "astrometry/plotstuff.h"

struct annotation_args {
	anbool NGC;

	anbool constellations;
	anbool constellation_lines;
	anbool constellation_markers;
	anbool constellation_labels;
	anbool constellation_labels_long;
    // don't *exactly* connect the stars, leave a gap of this many pixels.
    // probably want this = plotstuff marker size
    float  constellation_lines_offset;

    anbool constellation_pastel;

	anbool bright;
    anbool bright_labels;

    anbool bright_pastel;

	anbool HD;
	anbool HD_labels;
	float ngc_fraction;
	bl* targets;
	char* hd_catalog;
};
typedef struct annotation_args plotann_t;

void* plot_annotations_init(plot_args_t* args);

plotann_t* plot_annotations_get(plot_args_t* pargs);

int plot_annotations_command(const char* command, const char* cmdargs,
							 plot_args_t* args, void* baton);

int plot_annotations_plot(const char* command, 
						  cairo_t* cr, plot_args_t* args, void* baton);

void plot_annotations_free(plot_args_t* args, void* baton);

int plot_annotations_set_hd_catalog(plotann_t* ann, const char* hdfn);

int plot_annotations_add_named_target(plotann_t* ann, const char* target);

void plot_annotations_add_target(plotann_t* ann, double ra, double dec,
								 const char* name);


DECLARE_PLOTTER(annotations);


#endif