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

..03-May-2022-

almstars/H25-Dec-2021-4,4634,398

README.mdH A D25-Dec-20214.7 KiB7048

constellation_names.eng.fabH A D25-Dec-20212.3 KiB5049

constellationship.fabH A D25-Dec-202112.3 KiB5249

description.bn.utf8H A D25-Dec-202127.6 KiB533514

description.de.utf8H A D25-Dec-202118.9 KiB521513

description.en.utf8H A D25-Dec-202119.8 KiB508489

description.es.utf8H A D25-Dec-202121 KiB557538

description.fr.utf8H A D25-Dec-202120.8 KiB551532

description.gl.utf8H A D25-Dec-202120.3 KiB546527

description.hr.utf8H A D25-Dec-202119.8 KiB546527

description.ja.utf8H A D25-Dec-202121.5 KiB488469

description.nl.utf8H A D25-Dec-202120.4 KiB554535

description.ru.utf8H A D25-Dec-202127.4 KiB545526

description.sk.utf8H A D25-Dec-202119.6 KiB536517

description.uk.utf8H A D25-Dec-202127.2 KiB544525

description.zh_CN.utf8H A D25-Dec-202118.5 KiB474455

dso_names.fabH A D25-Dec-2021596 1817

info.iniH A D25-Dec-2021325 87

make_names.pyH A D25-Dec-20216 KiB132117

planet_names.fabH A D25-Dec-2021608 1816

star_names.fabH A D25-Dec-202169.8 KiB2,0662,065

README.md

1# Almagest
2
3## Technical notes
4
5In these notes we will provide technical details on how the data used by the Almagest sky culture has been compiled.  For the user–facing documentation, see the `description.en.utf8` file in this directory.
6
7### The almstars directory
8
9Files included in the `almstars` directory come from Ernie Wright's
10[Visualization of the Almagest Catalog.](http://www.etwright.org/astro/almagest.html)
11
12The `cat1.dat` file is used as the source of Almagest descriptions of the stars in English language.  In addition to star descriptions, this file contains BSC (HR) numbers where available and modern designations such as "1 alp UMi" for Polaris or "NGC 2632 M44" for the Beehive (Praesepe) Cluster.
13
14#### Catalog File Format
15
16(Description by Ernie Wright.)
17
18The three Almagest catalog files (`cat1.dat`, `cat2.dat`, `cat3.dat`) are 7-bit ASCII text files with Windows (0Dh 0Ah) line endings. They can be examined in Wordpad (turn off word wrap) or any other text editor. They can also be loaded into most spreadsheet programs by telling them that the data is in fixed-length fields delimited by spaces.
19
20The first line identifies the file as an Almagest Stars catalog and names the catalog:
21
22```text
23   Almagest Catalog:  catalog-name
24```
25
26This is followed by 1028 variable-length lines. Each line is a star record containing the following fields.
27
28```text
29   Bytes  Format  Units    Explanation
30   ---------------------------------------------------------
31    1- 4  I4               [1-1028] Baily number
32    6- 8  A3               constellation abbreviation
33   10-11  I2               [1-45] index within constellation
34   13-15  I3      deg      longitude degrees
35   17-18  I2      arcmin   longitude minutes
36   20     A1               latitude minus
37   21-22  I2      deg      latitude degrees
38   24-25  I2      arcmin   latitude minutes
39   27-29  F3.1             magnitude
40   31-34  I4               [1-9110] HR number
41   36-47  A12              modern Bayer/Flamsteed ID
42   49-    A?               description
43```
44
45The first line identifies the Almagest star by both Baily number (on the left) and the ordinal within the constellation. The former, as in modern catalogs, is a running ordinal, attributed to Francis Baily, that uniquely numbers each entry in the Almagest catalog. It is listed by Peters and Knobel, and it is the only Almagest star identification in Grasshoff's Appendix B. Toomer, however, follows Manitius in numbering only within each constellation, so you need both numbers when consulting the sources of the catalogs.
46
47The second line is Ptolemy's description of the star's location within the figure of the constellation. Occasionally this also includes remarks about relative brightness or color. The description is given as it appears in the catalog source. The Manitius catalog's descriptions are in German, those from Peters/Knobel are in Latin, and those from Toomer are in English.
48
49The line following the description contains the modern identity of the star and the longitude, latitude, and magnitude as given in the Almagest. (These values do not reflect the amount that the Almagest stars have been shifted, but they do include the corrections entered on the Set Epoch dialog.) The modern identification comprises the HR (Harvard Revised) number in the Yale Bright Star Catalog, the Flamsteed number, the Bayer letter, and the constellation.
50
51The second part of the data lists the corresponding Yale catalog information for stars within one degree of the clicked position.
52
53### The make_names.py script
54
55The `make_names.py` script parses an "almstars" catalogue file and generates `star_names.fab` and `dso_names.fab` files that can be used by Stellarium.  There are four catalogue files included in the `almstars/` directory and the script uses `cat1.dat`.  If you would like to experiment with a different catalogue, change the value of the `CAT_FILE` variable at the top of the script and run the script as follows:
56
57```sh
58$ python3.9 make_names.py
59Almagest Catalog:  Toomer/Grasshoff
60  found 1022 unique stars and 16 proper names
6152 nu1 Boo (HR 5763) is in Boo, Her.
62112 bet Tau (HR 1791) is in Aur, Tau.
6324 alp PsA (HR 8728) is in Aqr, PsA.
64```
65
66Since `star_names.fab` requires HIP rather than HR numbers, the required cross-catalogue data is extracted from the `cross-id.dat` file.  The DSOs are identified by their modern designations and the necessary translations are hard-coded in the script. (There are only three such objects in the Almagest.)
67
68In addition, information required to generate proper names and location of the stars relative to constellation figures that is present in the primary source but not reflected in the computer readable catalogues, is manually
69coded in the script.  See the `PROPER_NAMES` and `OUTSIDE` dictionaries.
70