Skip to content

Commit

Permalink
Fix coordinates for LA coast
Browse files Browse the repository at this point in the history
Signed-off-by: Kyle Corry <[email protected]>
  • Loading branch information
kylecorry31 committed Nov 26, 2024
1 parent d26f1b8 commit 33cd83c
Showing 1 changed file with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,12 @@ class TideModelTest {
time(6, 42) to false,
time(21, 51) to true
),
// TODO: Tides in the mexico gulf are not working
// louisiana to tides(
// LocalDate.of(2024, 11, 28),
// cst,
// time(4, 30) to true,
// time(16, 25) to false,
// ),
louisiana to tides(
LocalDate.of(2024, 11, 26),
cst,
time(4, 58) to false,
time(18, 28) to true,
),
// New moon
rhodeIsland to tides(
LocalDate.of(2024, 12, 1),
Expand Down Expand Up @@ -180,7 +179,7 @@ class TideModelTest {
}

private val rhodeIsland = Coordinate(41.49008, -71.312796)
private val louisiana = Coordinate(30.03, -90.11)
private val louisiana = Coordinate(29.06, -90.96)
private val california = Coordinate(33.7833, -118.4167)
private val dublin = Coordinate(53.35, -6.22)
private val hongKong = Coordinate(22.28, 114.18)
Expand Down

0 comments on commit 33cd83c

Please sign in to comment.