# SPDX-FileCopyrightText: 2024 Helmholtz-Zentrum Dresden-Rossendorf (HZDR)
# SPDX-License-Identifier: MIT

from pathlib import Path
from processing import prepare_data

# Adapt this depending on where you saved the file
data_file = Path("data/725053-94728-2020.gz")

weather_data = prepare_data(data_file)
print(weather_data)
