Skip to content
This repository was archived by the owner on Sep 11, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion nowcasting_dataset/config/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,15 @@ def set_forecast_and_history_minutes(cls, values):
"""
# It would be much better to use nowcasting_dataset.data_sources.ALL_DATA_SOURCE_NAMES,
# but that causes a circular import.
ALL_DATA_SOURCE_NAMES = ("pv", "satellite", "nwp", "gsp", "topographic", "sun")
ALL_DATA_SOURCE_NAMES = (
"pv",
"hrvsatellite",
"satellite",
"nwp",
"gsp",
"topographic",
"sun",
)
enabled_data_sources = [
data_source_name
for data_source_name in ALL_DATA_SOURCE_NAMES
Expand Down