Skip to content

Commit

Permalink
fix for processing satellite data for old models
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdudfield committed Oct 15, 2024
1 parent 1b2a45a commit 048a9d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pvnet_app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def app(
if not sat_available:
sat_datetimes = pd.DatetimeIndex([])
else:
sat_datetimes = preprocess_sat_data(t0, use_legacy=use_day_ahead_model)
sat_datetimes = preprocess_sat_data(t0, use_legacy=not use_ocf_data_sampler)

# Download NWP data
logger.info("Downloading NWP data")
Expand Down

0 comments on commit 048a9d7

Please sign in to comment.