Skip to content

Commit

Permalink
sunlight plot: production rez
Browse files Browse the repository at this point in the history
  • Loading branch information
dhimmel committed Jan 22, 2025
1 parent 2ae9d5c commit a482a51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openskistats/sunlight.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,10 +391,10 @@ class SolarPolarPlot:
date_time: datetime | None = None

def get_bearings_range(self) -> npt.NDArray[np.float64]:
return np.arange(0, 360, 4, dtype=np.float64)
return np.arange(0, 360, 1, dtype=np.float64)

def get_y_range(self) -> npt.NDArray[np.float64]:
return np.arange(0, 90, 2, dtype=np.float64)
return np.arange(0, 90, 1, dtype=np.float64)

def plot(
self,
Expand Down

0 comments on commit a482a51

Please sign in to comment.