• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

AUTHORSH A D01-Dec-201658 63

COPYINGH A D01-Dec-201617.6 KiB341281

ChangeLogH A D01-Dec-20162 KiB4634

INSTALLH A D01-Dec-20169.3 KiB237179

Makefile.amH A D01-Dec-2016511 97

Makefile.inH A D16-Jun-201726.2 KiB789702

NEWSH A D16-Jun-20175.2 KiB161104

READMEH A D16-Jun-20172.1 KiB6844

THANKSH A D01-Dec-2016960 2416

aclocal.m4H A D16-Jun-201733.8 KiB952857

apply_match.cH A D01-Dec-201614.6 KiB491295

atpmatch.cH A D01-Dec-2016205.9 KiB6,8913,426

atpmatch.hH A D01-Dec-20168.6 KiB24173

configureH A D16-Jun-2017153.3 KiB5,3874,395

configure.inH A D16-Jun-2017459 2618

degtorad.hH A D01-Dec-2016210 127

depcompH A D01-Dec-201615.6 KiB531330

install-shH A D01-Dec-20169 KiB324189

intransa.datH A D01-Dec-201651 87

intransb.datH A D01-Dec-201649 87

intransc.datH A D01-Dec-201653 87

intransd.datH A D01-Dec-201658 98

intranse.datH A D01-Dec-201695 1413

intransf.datH A D01-Dec-2016119 1817

match.1H A D01-Dec-201610 KiB382328

match.cH A D01-Dec-201633.5 KiB981537

match.hH A D01-Dec-2016473 174

misc.cH A D01-Dec-201627.5 KiB1,157670

misc.hH A D01-Dec-20166.2 KiB21168

missingH A D01-Dec-201610.8 KiB361268

mkinstalldirsH A D01-Dec-20163.4 KiB159109

project_coords.cH A D01-Dec-201610.4 KiB351201

self_m57.datH A D01-Dec-2016126 76

self_m57_asec.datH A D01-Dec-2016162 76

self_m57_rad.datH A D01-Dec-2016174 76

selfa.datH A D01-Dec-2016680 2120

selfb.datH A D01-Dec-2016680 2120

selfc.datH A D01-Dec-2016680 2120

selfd.datH A D01-Dec-20162.3 KiB7170

selfe.datH A D01-Dec-20162.3 KiB7170

selftest.plH A D01-Dec-201636.9 KiB1,115617

README

1match  v1.0   -  by Michael W. Richmond <mwrsps@rit.edu>
2(C)opyright 2000, 2001, 2002, 2003, 2007, 2010, 2011, 2017 Michael W. Richmond, all rights
3reserved
4
5This package contains software to match one list of objects against
6another list, allowing for arbitrary translation, rotation, scaling,
7and some distortion.  The code is designed specifically for
8astronomical data: list of stars or galaxies.  There is a small
9"pre-processor" to put astronomical data into the proper format
10for matching, and a "post-processor" to apply a transformation
11to the astronomical coordinates in a list.  Most of the real work
12is done by the "match" program itself.
13
14The idea behind the matching of lists is to form a set of triangles
15from the points in each list, and look for similar triangles.
16The algorithm is described at length in the article
17"FOCAS Automatic Catalog Matching Algorithms", by Francisco Valdes
18et al., in Publications of the Astronomical Society of the Pacific,
19volume 107, page 1119 (1995).  See the following URL (which should
20all be entered on one line)
21
22     http://adsabs.harvard.edu/cgi-bin/nph-bib_query?
23          bibcode=1995PASP..107.1119V&db_key=AST&high=39463d35aa24090
24
25
26INSTALLATION
27
28Follow the standard installation procedure:
29
30  - uncompress the gzip'ed tar archive
31  - cd match-1.0
32  - ./configure
33  - make
34
35If your system has Perl installed, you can run a quick self-test:
36
37  - make check
38
39The test assumes that Perl is located in /usr/bin/perl.  If it's
40somewhere else, simply type
41
42  - perl selftest.pl
43
44See the documentation in "match.html" for a description of the
45programs, the input and output formats, etc.
46
47
48REQUIREMENTS
49
50The software is written in ANSI C, and requires nothing beyond the
51standard math library.  The selftest script is written in Perl;
52it works with Perl 5, but fails with Perl 4.
53
54
55NOTES
56
57The pre- and post-processing steps assume that celestial coordinates
58are expressed in decimal degrees, not sexigesimal notation.
59That is,
60
61        this:   233.0082           not this:  15:32:01.9
62
63Incorporating support for sexigesimal notation is probably a Good
64Idea for some future release.
65
66
67
68