Skip to content
New issue

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

Enable backdating of ECMWF data to 2020 #16

Merged
merged 1 commit into from
Oct 2, 2023
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
3 changes: 2 additions & 1 deletion nwp/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def build_config_on_runtime(model: str, run: str, delay: int = 0) -> dict:
schedules.append(ScheduleDefinition(job=asset_job, cron_schedule="0 8 * * *"))


@daily_partitioned_config(start_date=dt.datetime(2021, 1, 1))
@daily_partitioned_config(start_date=dt.datetime(2020, 1, 1))
def ecmwf_daily_partitioned_config_docker(start: dt.datetime, _end: dt.datetime):
config: NWPConsumerConfig = NWPConsumerConfig(
date_from=start.strftime("%Y-%m-%d"),
Expand Down Expand Up @@ -94,6 +94,7 @@ def ecmwf_daily_partitioned_config(start: dt.datetime, _end: dt.datetime):
return {"ops": {
"nwp_consumer_download_op": {"config": json.loads(config.json())},
}}

@job(config=ecmwf_daily_partitioned_config)
def ecmwf_daily_local_archive():
nwp_consumer_convert_op(nwp_consumer_download_op())
Expand Down