juliensimon commited on
Commit
1185fbb
·
verified ·
1 Parent(s): eb87b64

Update observatory database: 609 observatories

Browse files
Files changed (2) hide show
  1. README.md +147 -0
  2. data/observatories.parquet +3 -0
README.md ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ pretty_name: "Observatory Database"
4
+ language:
5
+ - en
6
+ description: >-
7
+ Comprehensive database of astronomical observatories worldwide, sourced from Wikidata.
8
+ 609 observatories from 59 countries with coordinates, elevation,
9
+ aperture size, operator, and wavelength coverage.
10
+ size_categories:
11
+ - n<1K
12
+ task_categories:
13
+ - tabular-classification
14
+ tags:
15
+ - space
16
+ - astronomy
17
+ - observatories
18
+ - telescopes
19
+ - wikidata
20
+ - open-data
21
+ - tabular-data
22
+ - parquet
23
+ configs:
24
+ - config_name: default
25
+ data_files:
26
+ - split: train
27
+ path: data/observatories.parquet
28
+ ---
29
+
30
+ # Observatory Database
31
+
32
+ *Part of the [Astronomy Datasets](https://huggingface.co/collections/juliensimon/astronomy-datasets-69c24caf2f17e36128946743) collection on Hugging Face.*
33
+
34
+ Comprehensive database of astronomical observatories — **609** facilities from
35
+ **59** countries, sourced from [Wikidata](https://www.wikidata.org/).
36
+
37
+ ## Dataset description
38
+
39
+ From ancient naked-eye platforms to modern space-based flagship missions, observatories
40
+ have been humanity's primary windows into the universe. This dataset covers optical
41
+ telescopes, radio dishes, neutrino detectors, gamma-ray satellites, and space observatories —
42
+ any facility classified in Wikidata as an astronomical observatory (Q62832), space
43
+ observatory (Q1377879), or radio observatory (Q148578).
44
+
45
+ Each entry includes geographic coordinates (latitude/longitude), elevation above sea level,
46
+ primary aperture size, operating organization, opening date, and the electromagnetic
47
+ wavelength bands observed. This enables spatial analysis of observatory distribution,
48
+ historical studies of observational astronomy, and comparison of ground-based vs.
49
+ space-based capabilities.
50
+
51
+ Sourced from Wikidata's structured knowledge base, curated by the WikiProject Astronomy
52
+ community with contributions from professional astronomers and enthusiasts worldwide.
53
+
54
+ ## Schema
55
+
56
+ | Column | Type | Description |
57
+ |--------|------|-------------|
58
+ | `wikidata_id` | string | Wikidata entity ID (e.g. Q179224) |
59
+ | `name` | string | Observatory name |
60
+ | `country` | string | Country where the observatory is located |
61
+ | `latitude` | float | Geographic latitude (decimal degrees) |
62
+ | `longitude` | float | Geographic longitude (decimal degrees) |
63
+ | `elevation_m` | float | Elevation above sea level (metres) |
64
+ | `aperture_m` | float | Primary mirror/dish aperture (metres) |
65
+ | `operator` | string | Operating organization or agency |
66
+ | `opening_date` | string | Date the observatory opened (YYYY-MM-DD) |
67
+ | `wavelengths` | string | Observed wavelength bands, semicolon-separated |
68
+
69
+ ## Quick stats
70
+
71
+ - **609** observatories from **59** countries
72
+ - **357** with geographic coordinates
73
+ - **0** with aperture data
74
+ - **46** with elevation data
75
+ - Highest elevation: Caltech Submillimeter Observatory (13,570 m)
76
+ - Estimated ground-based: **510**, space-based: **99**
77
+ - Top countries: United States (109), United Kingdom (43), Italy (25), France (24), Netherlands (19)
78
+ - Top wavelength bands:
79
+
80
+ ## Usage
81
+
82
+ ```python
83
+ from datasets import load_dataset
84
+
85
+ ds = load_dataset("juliensimon/observatory-database", split="train")
86
+ df = ds.to_pandas()
87
+
88
+ # Observatories by country
89
+ print(df["country"].value_counts().head(10))
90
+
91
+ # High-altitude observatories (above 3000 m)
92
+ high_alt = df[df["elevation_m"] > 3000].sort_values("elevation_m", ascending=False)
93
+ print(high_alt[["name", "country", "elevation_m"]].head(10))
94
+
95
+ # Large aperture telescopes (> 8 m)
96
+ large = df[df["aperture_m"] > 8].sort_values("aperture_m", ascending=False)
97
+ print(large[["name", "country", "aperture_m"]])
98
+
99
+ # Radio observatories
100
+ radio = df[df["wavelengths"].str.contains("radio", case=False, na=False)]
101
+ print(f"{len(radio):,} radio observatories")
102
+
103
+ # Space observatories
104
+ space_obs = df[df["wavelengths"].str.contains("X-ray|gamma|ultraviolet", case=False, na=False)]
105
+ print(space_obs[["name", "wavelengths"]].head(10))
106
+ ```
107
+
108
+ ## Data source
109
+
110
+ [Wikidata](https://www.wikidata.org/) SPARQL endpoint. Observatories identified via
111
+ property P31 (instance of) = Q62832 (astronomical observatory), Q1377879 (space
112
+ observatory), or Q148578 (radio observatory). Data is community-curated by
113
+ [WikiProject Astronomy](https://www.wikidata.org/wiki/Wikidata:WikiProject_Astronomy).
114
+
115
+ ## Update schedule
116
+
117
+ Quarterly (January, April, July, October). Re-run manually to pick up newly catalogued facilities.
118
+
119
+ ## Related datasets
120
+
121
+ - [astronomer-database](https://huggingface.co/datasets/juliensimon/astronomer-database) — Astronomers from Wikidata
122
+ - [chandra-sources](https://huggingface.co/datasets/juliensimon/chandra-sources) — Chandra X-ray source catalog
123
+
124
+ ## Pipeline
125
+
126
+ Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
127
+
128
+ ## Support
129
+
130
+ If you find this dataset useful, please give it a ❤️ on the [dataset page](https://huggingface.co/datasets/juliensimon/observatory-database) and share feedback in the Community tab! Also consider giving a ⭐️ to the [space-datasets](https://github.com/juliensimon/space-datasets) repo.
131
+
132
+ ## Citation
133
+
134
+ ```bibtex
135
+ @dataset{observatory_database,
136
+ author = {Simon, Julien},
137
+ title = {Observatory Database},
138
+ year = {2026},
139
+ publisher = {Hugging Face},
140
+ url = {https://huggingface.co/datasets/juliensimon/observatory-database},
141
+ note = {Sourced from Wikidata (CC0)}
142
+ }
143
+ ```
144
+
145
+ ## License
146
+
147
+ [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/) (Wikidata content is public domain)
data/observatories.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac7fc4cf429f922706b014ecfe8b8449063143d2925172baacd62974756b736d
3
+ size 27915