We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is an incredible package, thank you!
When calling the station.plot for the following (current season) for the following:
The following error pops up: NameError: name 'plot_season' is not defined.
The code does execute if I change the line of code it errors out on to use season instead of plot_season.
def plot_snowdepth_time_series(self, season=None, climatology=None, climatology_years=30): label=plot_season+f' ({data[season]["snow"][-1]:.1f}{unit_label})') def plot_snow_time_series(self, season=None, rolling_days=None, climatology=None, climatology_years=30): label=plot_season+f' ({max(data[season]["snow"]):.1f}{unit_label})')
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is an incredible package, thank you!
When calling the station.plot for the following (current season) for the following:
OR
The following error pops up: NameError: name 'plot_season' is not defined.
The code does execute if I change the line of code it errors out on to use season instead of plot_season.
def plot_snowdepth_time_series(self, season=None, climatology=None, climatology_years=30):
label=plot_season+f' ({data[season]["snow"][-1]:.1f}{unit_label})')
def plot_snow_time_series(self, season=None, rolling_days=None, climatology=None, climatology_years=30):
label=plot_season+f' ({max(data[season]["snow"]):.1f}{unit_label})')
The text was updated successfully, but these errors were encountered: