juliensimon commited on
Commit
b7a6908
·
verified ·
1 Parent(s): 8a24772

Update constellation catalog: 94 constellations

Browse files
Files changed (2) hide show
  1. README.md +128 -0
  2. data/constellations.parquet +3 -0
README.md ADDED
@@ -0,0 +1,128 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ pretty_name: "Constellation Catalog"
4
+ language:
5
+ - en
6
+ description: >-
7
+ All 94 IAU-recognized constellations sourced from Wikidata, with IAU
8
+ abbreviations, area in square degrees, sky coordinates, brightest star,
9
+ and mythological origin.
10
+ size_categories:
11
+ - n<1K
12
+ task_categories:
13
+ - tabular-classification
14
+ tags:
15
+ - space
16
+ - astronomy
17
+ - constellations
18
+ - wikidata
19
+ - open-data
20
+ - tabular-data
21
+ - parquet
22
+ configs:
23
+ - config_name: default
24
+ default: true
25
+ data_files:
26
+ - split: train
27
+ path: data/constellations.parquet
28
+ ---
29
+
30
+ # Constellation Catalog
31
+
32
+ *Part of the [Astronomy Datasets](https://huggingface.co/collections/juliensimon/astronomy-datasets-69c24caf2f17e36128946743) collection on Hugging Face.*
33
+
34
+ Complete catalog of all **94** IAU-recognized constellations, sourced from [Wikidata](https://www.wikidata.org/).
35
+
36
+ ## Dataset description
37
+
38
+ The International Astronomical Union (IAU) officially recognizes 88 constellations that together tile the entire celestial sphere. These range from ancient Greek figures catalogued by Ptolemy in the Almagest to southern-hemisphere constellations added by European explorers in the 16th–18th centuries and formalized by Eugène Delporte in 1930.
39
+
40
+ This dataset records each constellation with its IAU three-letter abbreviation, the area it covers in square degrees, the coordinates of its center (right ascension and declination), its brightest star, and the mythological figure or object it was named after. This enables sky-coverage analysis, educational tools, and cross-referencing with star and deep-sky-object catalogs.
41
+
42
+ Sourced from Wikidata's structured knowledge base (property P31=Q8928 for instance-of:constellation), maintained by the astronomy community.
43
+
44
+ ## Schema
45
+
46
+ | Column | Type | Description |
47
+ |--------|------|-------------|
48
+ | `wikidata_id` | string | Wikidata entity ID (e.g. Q8928) |
49
+ | `name` | string | Full English name of the constellation |
50
+ | `iau_abbreviation` | string | IAU three-letter abbreviation (e.g. Ori, UMa) |
51
+ | `symbol` | string | Traditional symbol or figure |
52
+ | `brightest_star` | string | Common name of the brightest star |
53
+ | `area_sq_deg` | float | Area of the constellation in square degrees |
54
+ | `ra_center` | float | Right ascension of center (degrees) |
55
+ | `dec_center` | float | Declination of center (degrees) |
56
+ | `named_after` | string | Mythological figure, animal, or object it represents |
57
+
58
+ ## Quick stats
59
+
60
+ - **94** IAU-recognized constellations
61
+ - **86** with area in square degrees (total sky: ~40,337 sq deg)
62
+ - **2** with sky coordinates (RA/Dec center)
63
+ - **0** with brightest star identified
64
+ - **75** with named-after mythology or origin
65
+
66
+ ## Usage
67
+
68
+ ```python
69
+ from datasets import load_dataset
70
+
71
+ ds = load_dataset("juliensimon/constellation-catalog", split="train")
72
+ df = ds.to_pandas()
73
+
74
+ # Largest constellations by area
75
+ print(df.nlargest(10, "area_sq_deg")[["name", "iau_abbreviation", "area_sq_deg"]])
76
+
77
+ # Constellations named after mythological figures
78
+ myth = df[df["named_after"].notna()]
79
+ print(myth[["name", "named_after"]].head(10))
80
+
81
+ # Northern sky constellations (positive declination)
82
+ northern = df[df["dec_center"] > 0]
83
+ print(f"{len(northern)} northern-hemisphere constellations")
84
+
85
+ # Find by IAU abbreviation
86
+ orion = df[df["iau_abbreviation"] == "Ori"].iloc[0]
87
+ print(f"Orion: {orion['area_sq_deg']:.0f} sq deg, brightest star: {orion['brightest_star']}")
88
+ ```
89
+
90
+ ## Data source
91
+
92
+ [Wikidata](https://www.wikidata.org/) SPARQL endpoint. Constellations identified via
93
+ property P31 (instance of) = Q8928 (constellation). IAU formalization by Eugène Delporte (1930).
94
+
95
+ ## Update schedule
96
+
97
+ Quarterly (January, April, July, October). Re-run manually to pick up Wikidata improvements.
98
+
99
+ ## Related datasets
100
+
101
+ - [astronomer-database](https://huggingface.co/datasets/juliensimon/astronomer-database) -- Astronomer biographies
102
+ - [observatory-database](https://huggingface.co/datasets/juliensimon/observatory-database) -- Astronomical observatories
103
+ - [bright-star-catalog](https://huggingface.co/datasets/juliensimon/bright-star-catalog) -- Yale Bright Star Catalog
104
+
105
+ ## Pipeline
106
+
107
+ Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
108
+
109
+ ## Support
110
+
111
+ If you find this dataset useful, please give it a ❤️ on the [dataset page](https://huggingface.co/datasets/juliensimon/constellation-catalog) and share feedback in the Community tab! Also consider giving a ⭐️ to the [space-datasets](https://github.com/juliensimon/space-datasets) repo.
112
+
113
+ ## Citation
114
+
115
+ ```bibtex
116
+ @dataset{constellation_catalog,
117
+ author = {Simon, Julien},
118
+ title = {Constellation Catalog},
119
+ year = {2026},
120
+ publisher = {Hugging Face},
121
+ url = {https://huggingface.co/datasets/juliensimon/constellation-catalog},
122
+ note = {Sourced from Wikidata (CC0)}
123
+ }
124
+ ```
125
+
126
+ ## License
127
+
128
+ [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/) (Wikidata content is public domain)
data/constellations.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2074fe22232f92f0b0d521dc15e16d768f6d39a46b0ebb519d3c9b21b7df3355
3
+ size 9437