You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This function demonstrates the use of Open Climate Fix's datapipes with the Open Source Quartz Solar Forecast Project.
20
+
It is an exploratory integration and not currently utilized in the Quartz Solar Forecast production pipeline.
21
+
22
+
It processes solar power (PV) and numerical weather prediction (NWP) data to prepare it for forecasting tasks.
23
+
24
+
:param config_file: The config file that specifies the paths to the data files, data preprocessing parameters, and other configurations necessary for the datapipes to function correctly.
25
+
- 'pv_and_nwp_config.yaml' specifes the paths to necessary data files (e.g., PV output data, NWP data).
26
+
- The YAML file needs to be edited to reflect the correct paths to your data files and any specific preprocessing requirements for your project.
27
+
28
+
This script is meant as a starting point for integrating Open Climate Fix datapipes into the Quartz Solar Forecast Project, serving as an example of how to preprocess and load data for solar power forecasting.
pv_filename: 'test.nc'# Available at https://github.com/openclimatefix/ocf_datapipes/blob/main/tests/data/pv/passiv/test.nc
6
+
pv_metadata_filename: 'UK_PV_metadata.csv'# Available at https://github.com/openclimatefix/ocf_datapipes/blob/main/tests/data/pv/passiv/UK_PV_metadata.csv
7
+
get_center: false
8
+
pv_image_size_meters_height: 10000000
9
+
pv_image_size_meters_width: 10000000
10
+
nwp:
11
+
ukv:
12
+
nwp_channels:
13
+
- t
14
+
nwp_image_size_pixels_height: 2
15
+
nwp_image_size_pixels_width: 2
16
+
nwp_zarr_path: nwp_data/test.zarr # Available at https://github.com/openclimatefix/ocf_datapipes/tree/main/tests/data/nwp_data/test.zarr
0 commit comments