/usr/include/astrometry/starkd.h is in astrometry.net 0.46-0ubuntu2.
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 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 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 | /*
This file is part of the Astrometry.net suite.
Copyright 2006-2008 Dustin Lang, Keir Mierle and Sam Roweis.
Copyright 2009-2010 Dustin Lang.
The Astrometry.net suite is free software; you can redistribute
it and/or modify it under the terms of the GNU General Public License
as published by the Free Software Foundation, version 2.
The Astrometry.net suite 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
General Public License for more details.
You should have received a copy of the GNU General Public License
along with the Astrometry.net suite ; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef STAR_KD_H
#define STAR_KD_H
#include <stdint.h>
#include <stdio.h>
#include "kdtree.h"
#include "kdtree_fits_io.h"
#include "fitstable.h"
#include "keywords.h"
#include "anqfits.h"
#ifdef SWIG
// this keyword (from keywords.h) confuses swig
#define Malloc
#endif
#define AN_FILETYPE_STARTREE "SKDT"
#define AN_FILETYPE_TAGALONG "TAGALONG"
#define STARTREE_NAME "stars"
struct startree_s {
kdtree_t* tree;
qfits_header* header;
int* inverse_perm;
uint8_t* sweep;
// reading or writing?
int writing;
// reading: tagged-along data (a FITS BINTABLE with one row per star,
// in the same order); access this via startree_get_tagalong() ONLY!
fitstable_t* tagalong;
};
typedef struct startree_s startree_t;
startree_t* startree_open(const char* fn);
startree_t* startree_open_fits(anqfits_t* fits);
/**
Searches for stars within a radius of a point.
xyzcenter: double[3]: unit-sphere coordinates of point; see
starutil.h : radecdeg2xyzarr() to convert RA,Decs to this form.
radius2: radius-squared on the unit sphere; see starutil.h :
deg2distsq() or arcsec2distsq().
xyzresults: if non-NULL, returns the xyz positions of the stars that
are found, in a newly-allocated array.
radecresults: if non-NULL, returns the RA,Dec positions (in degrees)
of the stars within range.
starinds: if non-NULL, returns the indices of stars within range.
This can be used to retrieve extra information about the stars, using
the 'startree_get_data_column()' function.
*/
void startree_search_for(const startree_t* s, const double* xyzcenter, double radius2,
double** xyzresults, double** radecresults,
int** starinds, int* nresults);
/**
RA, Dec, and radius in degrees. Otherwise same as startree_search_for().
*/
void startree_search_for_radec(const startree_t* s, double ra, double dec, double radius,
double** xyzresults, double** radecresults,
int** starinds, int* nresults);
void startree_search(const startree_t* s, const double* xyzcenter, double radius2,
double** xyzresults, double** radecresults, int* nresults);
/**
Reads a column of data from the "tag-along" table.
Get the "inds" and "N" from "startree_search" or "startree_search_for".
To get all entries, set "inds" = NULL and N = startree_N().
The return value is a newly-allocated array of size N. It should be
freed using "startree_free_data_column"
*/
Malloc
double* startree_get_data_column(startree_t* s, const char* colname, const int* indices, int N);
/**
Same as startree_get_data_column but for int64_t. Don't you love C templating?
*/
Malloc
int64_t* startree_get_data_column_int64(startree_t* s, const char* colname, const int* indices, int N);
/**
Reads a column of data from the "tag-along" table.
The column may be an array (that is, each row contains multiple
entries); the array size is placed in "arraysize".
The array entries
*/
Malloc
double* startree_get_data_column_array(startree_t* s, const char* colname, const int* indices, int N, int* arraysize);
void startree_free_data_column(startree_t* s, double* d);
anbool startree_has_tagalong(startree_t* s);
fitstable_t* startree_get_tagalong(startree_t* s);
/*
Returns a string-list of the names of the columns in the "tagalong" table of this star kdtree.
If you pass in a non-NULL "lst", the names will be added to that list; otherwise, a new sl*
will be allocated (free it with sl_free2()).
If you want to avoid "sl*", see:
-- startree_get_tagalong_N_columns(s)
-- startree_get_tagalong_column_name(s, i)
*/
sl* startree_get_tagalong_column_names(startree_t* s, sl* lst);
/**
Returns the number of columns in the tagalong table.
*/
int startree_get_tagalong_N_columns(startree_t* s);
/**
Returns the name of the 'i'th column in the tagalong table.
The lifetime of the returned string is the lifetime of this starkd.
*/
const char* startree_get_tagalong_column_name(startree_t* s, int i);
/**
Returns the FITS type of the 'i'th column in the tagalong table.
*/
tfits_type startree_get_tagalong_column_fits_type(startree_t* s, int i);
/**
Returns the array size of the 'i'th column in the tagalong table.
For scalar columns, this is 1.
*/
int startree_get_tagalong_column_array_size(startree_t* s, int i);
/*
Retrieve parameters of the cut-an process, if they are available.
Older index files may not have these header cards.
*/
// healpix nside, or -1
int startree_get_cut_nside(const startree_t* s);
int startree_get_cut_nsweeps(const startree_t* s);
// in arcsec; 0 if none.
double startree_get_cut_dedup(const startree_t* s);
// band (one of several static strings), or NULL
char* startree_get_cut_band(const startree_t* s);
// margin, in healpix, or -1
int startree_get_cut_margin(const startree_t* s);
double startree_get_jitter(const startree_t* s);
void startree_set_jitter(startree_t* s, double jitter_arcsec);
//uint64_t startree_get_starid(const startree_t* s, int ind);
// returns the sweep number of star 'ind', or -1 if the index is out of bounds
// or the tree has no sweep numbers.
int startree_get_sweep(const startree_t* s, int ind);
int startree_N(const startree_t* s);
int startree_nodes(const startree_t* s);
int startree_D(const startree_t* s);
qfits_header* startree_header(const startree_t* s);
int startree_get(startree_t* s, int starid, double* posn);
int startree_get_radec(startree_t* s, int starid, double* ra, double* dec);
int startree_close(startree_t* s);
void startree_compute_inverse_perm(startree_t* s);
int startree_check_inverse_perm(startree_t* s);
// for writing
startree_t* startree_new(void);
int startree_write_to_file(startree_t* s, const char* fn);
int startree_write_to_file_flipped(startree_t* s, const char* fn);
int startree_append_to(startree_t* s, FILE* fid);
#endif
|