Skip to content
This repository was archived by the owner on Sep 11, 2023. It is now read-only.

Commit fe0b7e8

Browse files
Merge pull request #255 from openclimatefix/issue/217-data-source-configs
Issue/217 data source configs
2 parents ad3c1ad + 20db79f commit fe0b7e8

File tree

9 files changed

+432
-215
lines changed

9 files changed

+432
-215
lines changed

gcp.yaml

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
general:
2+
cloud: gcp
3+
description: example configuration
4+
name: example
5+
git: null
6+
input_data:
7+
default_forecast_minutes: 60
8+
default_history_minutes: 30
9+
gsp:
10+
forecast_minutes: 60
11+
gsp_zarr_path: gs://solar-pv-nowcasting-data/PV/GSP/v0/pv_gsp.zarr
12+
history_minutes: 30
13+
nwp:
14+
forecast_minutes: 60
15+
history_minutes: 30
16+
nwp_channels:
17+
- t
18+
- dswrf
19+
- prate
20+
- r
21+
- sde
22+
- si10
23+
- vis
24+
- lcc
25+
- mcc
26+
- hcc
27+
nwp_image_size_pixels: 64
28+
nwp_zarr_path: gs://solar-pv-nowcasting-data/NWP/UK_Met_Office/UKV__2018-01_to_2019-12__chunks__variable10__init_time1__step1__x548__y704__.zarr
29+
pv:
30+
forecast_minutes: 60
31+
history_minutes: 30
32+
solar_pv_data_filename: gs://solar-pv-nowcasting-data/PV/PVOutput.org/UK_PV_timeseries_batch.nc
33+
solar_pv_metadata_filename: gs://solar-pv-nowcasting-data/PV/PVOutput.org/UK_PV_metadata.csv
34+
satellite:
35+
forecast_minutes: 60
36+
history_minutes: 30
37+
sat_channels:
38+
- HRV
39+
- IR_016
40+
- IR_039
41+
- IR_087
42+
- IR_097
43+
- IR_108
44+
- IR_120
45+
- IR_134
46+
- VIS006
47+
- VIS008
48+
- WV_062
49+
- WV_073
50+
satellite_image_size_pixels: 64
51+
satellite_zarr_path: gs://solar-pv-nowcasting-data/satellite/EUMETSAT/SEVIRI_RSS/OSGB36/all_zarr_int16_single_timestep.zarr
52+
sun:
53+
forecast_minutes: 60
54+
history_minutes: 30
55+
sun_zarr_path: gs://solar-pv-nowcasting-data/Sun/v0/sun.zarr/
56+
topographic:
57+
forecast_minutes: 60
58+
history_minutes: 30
59+
topographic_filename: gs://solar-pv-nowcasting-data/Topographic/europe_dem_1km_osgb.tif
60+
output_data:
61+
filepath: gs://solar-pv-nowcasting-data/prepared_ML_training_data/v5/
62+
process:
63+
batch_size: 32
64+
local_temp_path: ~/temp/
65+
seed: 1234
66+
upload_every_n_batches: 16

nowcasting_dataset/config/gcp.yaml

+57-38
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,65 @@
11
general:
2-
name: gcp
3-
description: Configuration for Google Cloud
2+
cloud: gcp
3+
description: example configuration
4+
name: example
45
input_data:
5-
nwp_zarr_path: gs://solar-pv-nowcasting-data/NWP/UK_Met_Office/UKV__2018-01_to_2019-12__chunks__variable10__init_time1__step1__x548__y704__.zarr
6-
satellite_zarr_path: gs://solar-pv-nowcasting-data/satellite/EUMETSAT/SEVIRI_RSS/OSGB36/all_zarr_int16_single_timestep.zarr
7-
solar_pv_data_filename: gs://solar-pv-nowcasting-data/PV/PVOutput.org/UK_PV_timeseries_batch.nc
8-
solar_pv_metadata_filename: gs://solar-pv-nowcasting-data/PV/PVOutput.org/UK_PV_metadata.csv
9-
gsp_zarr_path: gs://solar-pv-nowcasting-data/PV/GSP/v2/pv_gsp.zarr
10-
topographic_filename: gs://solar-pv-nowcasting-data/Topographic/europe_dem_1km_osgb.tif
11-
sun_zarr_path: gs://solar-pv-nowcasting-data/Sun/v0/sun.zarr
6+
default_forecast_minutes: 60
7+
default_history_minutes: 30
8+
gsp:
9+
forecast_minutes: 60
10+
gsp_zarr_path: gs://solar-pv-nowcasting-data/PV/GSP/v2/pv_gsp.zarr
11+
history_minutes: 30
12+
nwp:
13+
forecast_minutes: 60
14+
history_minutes: 30
15+
nwp_channels:
16+
- t
17+
- dswrf
18+
- prate
19+
- r
20+
- sde
21+
- si10
22+
- vis
23+
- lcc
24+
- mcc
25+
- hcc
26+
nwp_image_size_pixels: 64
27+
nwp_zarr_path: gs://solar-pv-nowcasting-data/NWP/UK_Met_Office/UKV__2018-01_to_2019-12__chunks__variable10__init_time1__step1__x548__y704__.zarr
28+
pv:
29+
forecast_minutes: 60
30+
history_minutes: 30
31+
solar_pv_data_filename: gs://solar-pv-nowcasting-data/PV/PVOutput.org/UK_PV_timeseries_batch.nc
32+
solar_pv_metadata_filename: gs://solar-pv-nowcasting-data/PV/PVOutput.org/UK_PV_metadata.csv
33+
satellite:
34+
forecast_minutes: 60
35+
history_minutes: 30
36+
sat_channels:
37+
- HRV
38+
- IR_016
39+
- IR_039
40+
- IR_087
41+
- IR_097
42+
- IR_108
43+
- IR_120
44+
- IR_134
45+
- VIS006
46+
- VIS008
47+
- WV_062
48+
- WV_073
49+
satellite_image_size_pixels: 64
50+
satellite_zarr_path: gs://solar-pv-nowcasting-data/satellite/EUMETSAT/SEVIRI_RSS/OSGB36/all_zarr_int16_single_timestep.zarr
51+
sun:
52+
forecast_minutes: 60
53+
history_minutes: 30
54+
sun_zarr_path: gs://solar-pv-nowcasting-data/Sun/v0/sun.zarr/
55+
topographic:
56+
forecast_minutes: 60
57+
history_minutes: 30
58+
topographic_filename: gs://solar-pv-nowcasting-data/Topographic/europe_dem_1km_osgb.tif
1259
output_data:
1360
filepath: gs://solar-pv-nowcasting-data/prepared_ML_training_data/v7/
1461
process:
62+
batch_size: 32
1563
local_temp_path: ~/temp/
1664
seed: 1234
17-
batch_size: 32
1865
upload_every_n_batches: 16
19-
forecast_minutes: 60
20-
history_minutes: 30
21-
satellite_image_size_pixels: 64
22-
nwp_image_size_pixels: 64
23-
nwp_channels:
24-
- t
25-
- dswrf
26-
- prate
27-
- r
28-
- sde
29-
- si10
30-
- vis
31-
- lcc
32-
- mcc
33-
- hcc
34-
sat_channels:
35-
- HRV
36-
- IR_016
37-
- IR_039
38-
- IR_087
39-
- IR_097
40-
- IR_108
41-
- IR_120
42-
- IR_134
43-
- VIS006
44-
- VIS008
45-
- WV_062
46-
- WV_073

0 commit comments

Comments
 (0)