Skip to content

Commit a299fbe

Browse files
committed
Update meteor shower positions
1 parent 1dbbab3 commit a299fbe

2 files changed

Lines changed: 13 additions & 13 deletions

File tree

src/main/kotlin/com/kylecorry/sol/science/astronomy/locators/MeteorShowerLocator.kt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,22 @@ internal class MeteorShowerLocator(private val shower: MeteorShower) : ICelestia
1010
override fun getCoordinates(ut: UniversalTime): EquatorialCoordinate {
1111
return when (shower) {
1212
MeteorShower.Quadrantids -> EquatorialCoordinate(49.7, timeToAngle(15, 20, 0))
13-
MeteorShower.Lyrids -> EquatorialCoordinate(33.3, timeToAngle(18, 10, 0))
13+
MeteorShower.Lyrids -> EquatorialCoordinate(33.3, timeToAngle(18, 8, 0))
1414
MeteorShower.EtaAquariids -> EquatorialCoordinate(
1515
-1.0,
16-
timeToAngle(22, 30, 0)
16+
timeToAngle(22, 32, 0)
1717
)
1818

1919
MeteorShower.DeltaAquariids -> EquatorialCoordinate(
20-
-16.3,
21-
timeToAngle(22, 42, 0)
20+
-16.4,
21+
timeToAngle(22, 40, 0)
2222
)
2323

24-
MeteorShower.Perseids -> EquatorialCoordinate(58.0, timeToAngle(3, 13, 0))
25-
MeteorShower.Orionids -> EquatorialCoordinate(15.6, timeToAngle(6, 21, 0))
26-
MeteorShower.Leonids -> EquatorialCoordinate(21.6, timeToAngle(10, 17, 0))
27-
MeteorShower.Geminids -> EquatorialCoordinate(32.3, timeToAngle(7, 24, 0))
28-
MeteorShower.Ursids -> EquatorialCoordinate(75.3, timeToAngle(14, 36, 0))
24+
MeteorShower.Perseids -> EquatorialCoordinate(58.1, timeToAngle(3, 17, 0))
25+
MeteorShower.Orionids -> EquatorialCoordinate(15.8, timeToAngle(6, 25, 0))
26+
MeteorShower.Leonids -> EquatorialCoordinate(21.8, timeToAngle(10, 16, 0))
27+
MeteorShower.Geminids -> EquatorialCoordinate(32.4, timeToAngle(7, 33, 0))
28+
MeteorShower.Ursids -> EquatorialCoordinate(75.4, timeToAngle(14, 38, 0))
2929
}
3030
}
3131

src/main/kotlin/com/kylecorry/sol/science/astronomy/meteors/MeteorShower.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ import java.time.ZonedDateTime
55
enum class MeteorShower(val solarLongitude: Float, val rate: Int) {
66
Quadrantids(283.3f, 120),
77
Lyrids(32.4f, 18),
8-
EtaAquariids(46.2f, 60),
9-
DeltaAquariids(127.6f, 20),
8+
EtaAquariids(46.2f, 50),
9+
DeltaAquariids(127.6f, 25),
1010
Perseids(140.0f, 100),
11-
Orionids(207.5f, 23),
11+
Orionids(207.5f, 20),
1212
Leonids(236.0f, 15),
13-
Geminids(262.0f, 120),
13+
Geminids(262.0f, 150),
1414
Ursids(270.5f, 10)
1515
}
1616

0 commit comments

Comments
 (0)