Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions wavey/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,20 @@
BREAKWATER_LAT_IDX = 91 # 36.61132
BREAKWATER_LON_IDX = 55 # 238.10899

# Location of Point Lobos
LOBOS_LAT = 36.5228
LOBOS_LON = 238.0598
# Closest grid point with forecast data
LOBOS_LAT_IDX = 71 # 36.52092
LOBOS_LON_IDX = 46 # 238.05843

# Location of Monastery Beach
MONASTERY_LAT = 36.5260
MONASTERY_LON = 238.0722
# Closest grid point with forecast data
MONASTERY_LAT_IDX = 72 # 36.52544
MONASTERY_LON_IDX = 48 # 238.06966

# Location of Point Lobos
LOBOS_LAT = 36.5228
LOBOS_LON = 238.0598

DPI = 100
"""Matplotlib figure dpi."""

Expand Down Expand Up @@ -241,8 +244,8 @@ def main(
draw_arrows_stride=1,
)
ax_mon.plot(MONASTERY_LON, MONASTERY_LAT, "ro")
# ax_mon.plot(LOBOS_LON, LOBOS_LAT, "ro")
ax_mon.set_title("Monastery")
ax_mon.plot(LOBOS_LON, LOBOS_LAT, "ro")
ax_mon.set_title("Pt. Lobos & Monastery")

plt.tight_layout()
plt.colorbar(map_main.img, orientation="vertical", label="(ft)", shrink=0.8)
Expand Down