Skip to content

Commit

Permalink
Merge pull request #31 from inkenbrandt/patch-1
Browse files Browse the repository at this point in the history
Fixed grapth spelling error
  • Loading branch information
JohnVolk authored Mar 6, 2024
2 parents d01b769 + 55e175f commit 8242c19
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions fluxdataqaqc/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ def _get_units(plt_vars, units):
daily_line.append(fig)
else:
print(
'Energy balance components time series grapths missing all '
'Energy balance components time series graphs missing all '
'variables'
)
if fig is not None and monthly:
Expand Down Expand Up @@ -491,7 +491,7 @@ def _get_units(plt_vars, units):
else:
print(
'Shortwave and potential clear sky radiation time series '
'grapths missing all variables'
'graphs missing all variables'
)

####
Expand Down Expand Up @@ -564,7 +564,7 @@ def _get_units(plt_vars, units):
daily_line.append(fig)
else:
print(
'Radiation components time series grapths missing all variables'
'Radiation components time series graphs missing all variables'
)
if fig is not None and monthly:
# same for monthly fig
Expand Down Expand Up @@ -599,7 +599,7 @@ def _get_units(plt_vars, units):
daily_line.append(fig)
else:
print(
'Average air temperature time series grapths missing all '
'Average air temperature time series graphs missing all '
'variables'
)
if fig is not None and monthly:
Expand Down Expand Up @@ -633,7 +633,7 @@ def _get_units(plt_vars, units):
if fig is not None:
daily_line.append(fig)
else:
print('Vapor pressure time series grapths missing all variables')
print('Vapor pressure time series graphs missing all variables')
if fig is not None and monthly:
# same for monthly fig
title = 'Monthly Average Vapor Pressure'
Expand Down Expand Up @@ -663,7 +663,7 @@ def _get_units(plt_vars, units):
if fig is not None:
daily_line.append(fig)
else:
print('Windspeed time series grapths missing all variables')
print('Windspeed time series graphs missing all variables')
if fig is not None and monthly:
# same for monthly fig
title = 'Monthly Average Windspeed'
Expand Down Expand Up @@ -695,7 +695,7 @@ def _get_units(plt_vars, units):
if fig is not None:
daily_line.append(fig)
else:
print('Precipitation time series grapths missing all variables')
print('Precipitation time series graphs missing all variables')
if fig is not None and monthly:
# same for monthly fig
title = 'Monthly Station and gridMET Precipitation'
Expand Down Expand Up @@ -727,7 +727,7 @@ def _get_units(plt_vars, units):
if fig is not None:
daily_line.append(fig)
else:
print('Latent energy time series grapths missing all variables')
print('Latent energy time series graphs missing all variables')
if fig is not None and monthly:
# same for monthly fig
title = 'Monthly Average Latent Energy Flux'
Expand Down Expand Up @@ -769,7 +769,7 @@ def _get_units(plt_vars, units):
daily_line.append(fig)
else:
print(
'Evapotranspiration time series grapths missing all variables'
'Evapotranspiration time series graphs missing all variables'
)
if fig is not None and monthly:
# same for monthly fig
Expand Down Expand Up @@ -825,7 +825,7 @@ def _get_units(plt_vars, units):
daily_line.append(fig)
else:
print(
'Fraction of reference ET time series grapths missing all '
'Fraction of reference ET time series graphs missing all '
'variables'
)
if fig is not None and monthly:
Expand Down Expand Up @@ -868,7 +868,7 @@ def _get_units(plt_vars, units):
daily_line.append(fig)
else:
print(
'Energy balance ratio time series grapths missing all '
'Energy balance ratio time series graphs missing all '
'variables'
)
if fig is not None and monthly:
Expand Down Expand Up @@ -980,7 +980,7 @@ def _get_units(plt_vars, units):
)
monthly_scatter.append(fig)
else:
print('Energy balance scatter grapths missing all variables')
print('Energy balance scatter graphs missing all variables')


####
Expand Down Expand Up @@ -1062,7 +1062,7 @@ def _get_units(plt_vars, units):
)
monthly_scatter.append(fig)
else:
print('Latent energy scatter grapths missing all variables')
print('Latent energy scatter graphs missing all variables')

####
# ET scatter plots
Expand Down Expand Up @@ -1141,7 +1141,7 @@ def _get_units(plt_vars, units):
)
monthly_scatter.append(fig)
else:
print('Evapotranspiration scatter grapths missing all variables')
print('Evapotranspiration scatter graphs missing all variables')

####
# multiple soil moisture time series plots
Expand Down

0 comments on commit 8242c19

Please sign in to comment.