Skip to content

Commit f10166c

Browse files
committed
Fix all data quality issues
1 parent 7879bed commit f10166c

8 files changed

Lines changed: 54 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ All notable changes to Stellium will be documented here.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.11.1] - 2025-12-15
9+
10+
### Fixed
11+
12+
#### Notables Data Quality
13+
14+
Fixed missing required fields in several notable entries that caused them to be skipped during registry loading:
15+
16+
- Added missing `hour`/`minute` fields to 9 birth entries (using 12:00 noon for unknown birth times)
17+
- Added missing `category` fields to 5 historical events
18+
19+
The registry now loads all 196 entries (175 births, 21 events) without warnings.
20+
21+
---
22+
823
## [0.11.0] - 2025-12-15
924

1025
### Fixed

src/stellium/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
>>> chart = ChartBuilder.from_native(native).calculate()
1414
"""
1515

16-
__version__ = "0.11.0"
16+
__version__ = "0.11.1"
1717

1818
# === Core Building Blocks (Most Common) ===
1919
# === Convenience Re-exports ===

src/stellium/data/notables/births/architects.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
year: 1950
2424
month: 10
2525
day: 31
26+
hour: 12
27+
minute: 0
2628
latitude: 33.3152
2729
longitude: 44.3661
2830
location_name: Baghdad, Iraq
@@ -42,6 +44,8 @@
4244
year: 1917
4345
month: 4
4446
day: 26
47+
hour: 12
48+
minute: 0
4549
latitude: 23.1291
4650
longitude: 113.2644
4751
location_name: Guangzhou, China

src/stellium/data/notables/births/leaders.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -639,6 +639,8 @@
639639
year: 1945
640640
month: 6
641641
day: 19
642+
hour: 12
643+
minute: 0
642644
latitude: 28.6139
643645
longitude: 77.2090
644646
location_name: Delhi, India
@@ -658,6 +660,8 @@
658660
year: 1898
659661
month: 5
660662
day: 3
663+
hour: 12
664+
minute: 0
661665
latitude: 50.4547
662666
longitude: 30.5238
663667
location_name: Kiev, Ukraine

src/stellium/data/notables/births/media.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -737,6 +737,8 @@
737737
year: 1889
738738
month: 4
739739
day: 16
740+
hour: 20
741+
minute: 0
740742
latitude: 51.5074
741743
longitude: -0.1278
742744
location_name: London, England

src/stellium/data/notables/births/scientists.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -334,6 +334,8 @@
334334
year: 1920
335335
month: 7
336336
day: 25
337+
hour: 12
338+
minute: 0
337339
latitude: 51.5094
338340
longitude: -0.2061
339341
location_name: London, England
@@ -353,6 +355,8 @@
353355
year: 1906
354356
month: 12
355357
day: 9
358+
hour: 12
359+
minute: 0
356360
latitude: 40.7128
357361
longitude: -74.0060
358362
location_name: New York, New York
@@ -434,6 +438,8 @@
434438
year: 1955
435439
month: 6
436440
day: 8
441+
hour: 12
442+
minute: 0
437443
latitude: 51.5074
438444
longitude: -0.1278
439445
location_name: London, England

src/stellium/data/notables/births/writers.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,8 @@
289289
year: 1207
290290
month: 9
291291
day: 30
292+
hour: 12
293+
minute: 0
292294
latitude: 37.8747
293295
longitude: 67.7786
294296
location_name: Balkh, Afghanistan

src/stellium/data/notables/events/historical.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,10 @@
367367
longitude: 63.305
368368
location_name: Baikonur, Kazakhstan
369369
timezone: Asia/Qyzylorda
370+
category: space
371+
subcategories:
372+
- scientific
373+
- historical
370374
notable_for: Launch of the first artificial Earth satellite by the Soviet Union, marking the beginning of the Space Race.
371375
data_quality: AA
372376
sources:
@@ -383,6 +387,10 @@
383387
longitude: 6.1432
384388
location_name: Geneva, Switzerland
385389
timezone: Europe/Zurich
390+
category: health
391+
subcategories:
392+
- pandemic
393+
- historical
386394
notable_for: WHO declares COVID-19 a global pandemic.
387395
data_quality: X
388396
sources:
@@ -399,6 +407,10 @@
399407
longitude: -74.0113
400408
location_name: New York, New York
401409
timezone: America/New_York
410+
category: economic
411+
subcategories:
412+
- financial
413+
- historical
402414
notable_for: The Wall Street Crash of 1929, the most devastating stock market crash in the history of the United States.
403415
data_quality: X
404416
sources:
@@ -415,6 +427,10 @@
415427
longitude: 139.7600
416428
location_name: Tokyo Bay, Japan
417429
timezone: Asia/Tokyo
430+
category: military
431+
subcategories:
432+
- war
433+
- historical
418434
notable_for: Formal surrender of Japan aboard USS Missouri marking the end of World War II.
419435
data_quality: AA
420436
sources:
@@ -431,6 +447,10 @@
431447
longitude: -80.604
432448
location_name: Cape Canaveral, Florida
433449
timezone: America/New_York
450+
category: space
451+
subcategories:
452+
- disaster
453+
- historical
434454
notable_for: The Space Shuttle Challenger disintegrates after liftoff, killing all crew members on board.
435455
data_quality: AA
436456
sources:

0 commit comments

Comments
 (0)