Skip to content

Commit

Permalink
Merge pull request #139 from openclimatefix/no-satellite-download
Browse files Browse the repository at this point in the history
change ~ to not
  • Loading branch information
peterdudfield authored Oct 14, 2024
2 parents 4875ab0 + d82c4d4 commit 13213c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pvnet_app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,10 +186,10 @@ def app(

# Download NWP data
logger.info("Downloading NWP data")
download_all_nwp_data(download_ukv=~use_ecmwf_only)
download_all_nwp_data(download_ukv=not use_ecmwf_only)

# Preprocess the NWP data
preprocess_nwp_data(use_ukv=~use_ecmwf_only)
preprocess_nwp_data(use_ukv=not use_ecmwf_only)

# ---------------------------------------------------------------------------
# 2. Set up models
Expand Down

0 comments on commit 13213c1

Please sign in to comment.