├── .all-contributorsrc ├── .dockerignore ├── .github └── workflows │ ├── build.yml │ ├── codeql-analysis.yml │ └── main.yml ├── .gitignore ├── .vscode └── settings.json ├── Dockerfile ├── LICENSE.txt ├── README.md ├── data ├── mogreps │ ├── MOGREPS-UK__air_temperature_2020-07-16T14:00:00Z.nc │ ├── MOGREPS-UK__surface_direct_downwelling_shortwave_flux_in_air_2020-07-26T13:00:00Z.nc │ ├── MOGREPS-UK__surface_downwelling_shortwave_flux_in_air_2020-07-26T13:00:00Z.nc │ ├── MOGREPS-UK__surface_downwelling_shortwave_flux_in_air__2020-09-08T12__2020-09-08T13.zarr.zip │ ├── MOGREPS-UK__surface_temperature_2020-07-19T14:00:00Z.nc │ ├── MOGREPS-UK__wind_from_direction_2020-07-26T13:00:00Z.nc │ ├── MOGREPS-UK__wind_from_direction__2020-03-15T15__2020-03-16T07.zarr.zip │ ├── MOGREPS-UK__wind_speed_2020-07-26T13:00:00Z.nc │ └── MOGREPS-UK__wind_speed_of_gust_2020-07-26T13:00:00Z.nc ├── sns_messages │ ├── mogreps_uk_air_temperature_1-5m.json │ ├── mogreps_uk_surface_diffusive_downwelling_shortwave_flux_in_air.json │ ├── mogreps_uk_surface_direct_downwelling_shortwave_flux_in_air.json │ ├── mogreps_uk_surface_downwelling_shortwave_flux_in_air.json │ ├── mogreps_uk_surface_temperature.json │ ├── mogreps_uk_wind_from_direction_10m.json │ ├── mogreps_uk_wind_speed_10m.json │ ├── mogreps_uk_wind_speed_multilevel.json │ └── mogreps_uk_wind_speed_of_gust_10m.json ├── sqs_messages │ ├── mogreps_uk_wind_speed_10m.json │ └── mogreps_uk_wind_speed_multilevel.json └── ukv │ ├── 2020-06-04T090000Z-2020-06-04T170000Z-a45a52ba68fde0503738548205742728477e9db7.nc │ └── MOGREPS-UK__surface_diffusive_downwelling_shortwave_flux_in_air_2020-07-26T15:00:00Z.nc ├── environment.yml ├── infrastructure ├── README.md ├── ecs.tf ├── infra.png ├── infra.puml ├── inputs.tf ├── main.tf ├── monitoring.tf └── outputs.tf ├── metoffice_ec2 ├── __init__.py ├── message.py ├── nwp_plot.py ├── predict.py ├── subset.py ├── tests │ ├── __init__ .py │ ├── e2e_test.py │ ├── message_test.py │ ├── nwp_plot_test.py │ └── predict_test.py └── timer.py ├── model └── predict_pv_yield_nwp.csv ├── scripts └── ec2.py ├── setup.cfg └── setup.py /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | data/ 2 | infrastructure/ 3 | README 4 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/README.md -------------------------------------------------------------------------------- /data/mogreps/MOGREPS-UK__air_temperature_2020-07-16T14:00:00Z.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/data/mogreps/MOGREPS-UK__air_temperature_2020-07-16T14:00:00Z.nc -------------------------------------------------------------------------------- /data/mogreps/MOGREPS-UK__surface_direct_downwelling_shortwave_flux_in_air_2020-07-26T13:00:00Z.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/data/mogreps/MOGREPS-UK__surface_direct_downwelling_shortwave_flux_in_air_2020-07-26T13:00:00Z.nc -------------------------------------------------------------------------------- /data/mogreps/MOGREPS-UK__surface_downwelling_shortwave_flux_in_air_2020-07-26T13:00:00Z.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/data/mogreps/MOGREPS-UK__surface_downwelling_shortwave_flux_in_air_2020-07-26T13:00:00Z.nc -------------------------------------------------------------------------------- /data/mogreps/MOGREPS-UK__surface_downwelling_shortwave_flux_in_air__2020-09-08T12__2020-09-08T13.zarr.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/data/mogreps/MOGREPS-UK__surface_downwelling_shortwave_flux_in_air__2020-09-08T12__2020-09-08T13.zarr.zip -------------------------------------------------------------------------------- /data/mogreps/MOGREPS-UK__surface_temperature_2020-07-19T14:00:00Z.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/data/mogreps/MOGREPS-UK__surface_temperature_2020-07-19T14:00:00Z.nc -------------------------------------------------------------------------------- /data/mogreps/MOGREPS-UK__wind_from_direction_2020-07-26T13:00:00Z.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/data/mogreps/MOGREPS-UK__wind_from_direction_2020-07-26T13:00:00Z.nc -------------------------------------------------------------------------------- /data/mogreps/MOGREPS-UK__wind_from_direction__2020-03-15T15__2020-03-16T07.zarr.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/data/mogreps/MOGREPS-UK__wind_from_direction__2020-03-15T15__2020-03-16T07.zarr.zip -------------------------------------------------------------------------------- /data/mogreps/MOGREPS-UK__wind_speed_2020-07-26T13:00:00Z.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/data/mogreps/MOGREPS-UK__wind_speed_2020-07-26T13:00:00Z.nc -------------------------------------------------------------------------------- /data/mogreps/MOGREPS-UK__wind_speed_of_gust_2020-07-26T13:00:00Z.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/data/mogreps/MOGREPS-UK__wind_speed_of_gust_2020-07-26T13:00:00Z.nc -------------------------------------------------------------------------------- /data/sns_messages/mogreps_uk_air_temperature_1-5m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/data/sns_messages/mogreps_uk_air_temperature_1-5m.json -------------------------------------------------------------------------------- /data/sns_messages/mogreps_uk_surface_diffusive_downwelling_shortwave_flux_in_air.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/data/sns_messages/mogreps_uk_surface_diffusive_downwelling_shortwave_flux_in_air.json -------------------------------------------------------------------------------- /data/sns_messages/mogreps_uk_surface_direct_downwelling_shortwave_flux_in_air.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/data/sns_messages/mogreps_uk_surface_direct_downwelling_shortwave_flux_in_air.json -------------------------------------------------------------------------------- /data/sns_messages/mogreps_uk_surface_downwelling_shortwave_flux_in_air.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/data/sns_messages/mogreps_uk_surface_downwelling_shortwave_flux_in_air.json -------------------------------------------------------------------------------- /data/sns_messages/mogreps_uk_surface_temperature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/data/sns_messages/mogreps_uk_surface_temperature.json -------------------------------------------------------------------------------- /data/sns_messages/mogreps_uk_wind_from_direction_10m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/data/sns_messages/mogreps_uk_wind_from_direction_10m.json -------------------------------------------------------------------------------- /data/sns_messages/mogreps_uk_wind_speed_10m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/data/sns_messages/mogreps_uk_wind_speed_10m.json -------------------------------------------------------------------------------- /data/sns_messages/mogreps_uk_wind_speed_multilevel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/data/sns_messages/mogreps_uk_wind_speed_multilevel.json -------------------------------------------------------------------------------- /data/sns_messages/mogreps_uk_wind_speed_of_gust_10m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/data/sns_messages/mogreps_uk_wind_speed_of_gust_10m.json -------------------------------------------------------------------------------- /data/sqs_messages/mogreps_uk_wind_speed_10m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/data/sqs_messages/mogreps_uk_wind_speed_10m.json -------------------------------------------------------------------------------- /data/sqs_messages/mogreps_uk_wind_speed_multilevel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/data/sqs_messages/mogreps_uk_wind_speed_multilevel.json -------------------------------------------------------------------------------- /data/ukv/2020-06-04T090000Z-2020-06-04T170000Z-a45a52ba68fde0503738548205742728477e9db7.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/data/ukv/2020-06-04T090000Z-2020-06-04T170000Z-a45a52ba68fde0503738548205742728477e9db7.nc -------------------------------------------------------------------------------- /data/ukv/MOGREPS-UK__surface_diffusive_downwelling_shortwave_flux_in_air_2020-07-26T15:00:00Z.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/data/ukv/MOGREPS-UK__surface_diffusive_downwelling_shortwave_flux_in_air_2020-07-26T15:00:00Z.nc -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/environment.yml -------------------------------------------------------------------------------- /infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/infrastructure/README.md -------------------------------------------------------------------------------- /infrastructure/ecs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/infrastructure/ecs.tf -------------------------------------------------------------------------------- /infrastructure/infra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/infrastructure/infra.png -------------------------------------------------------------------------------- /infrastructure/infra.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/infrastructure/infra.puml -------------------------------------------------------------------------------- /infrastructure/inputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/infrastructure/inputs.tf -------------------------------------------------------------------------------- /infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/infrastructure/main.tf -------------------------------------------------------------------------------- /infrastructure/monitoring.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/infrastructure/monitoring.tf -------------------------------------------------------------------------------- /infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/infrastructure/outputs.tf -------------------------------------------------------------------------------- /metoffice_ec2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /metoffice_ec2/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/metoffice_ec2/message.py -------------------------------------------------------------------------------- /metoffice_ec2/nwp_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/metoffice_ec2/nwp_plot.py -------------------------------------------------------------------------------- /metoffice_ec2/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/metoffice_ec2/predict.py -------------------------------------------------------------------------------- /metoffice_ec2/subset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/metoffice_ec2/subset.py -------------------------------------------------------------------------------- /metoffice_ec2/tests/__init__ .py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /metoffice_ec2/tests/e2e_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/metoffice_ec2/tests/e2e_test.py -------------------------------------------------------------------------------- /metoffice_ec2/tests/message_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/metoffice_ec2/tests/message_test.py -------------------------------------------------------------------------------- /metoffice_ec2/tests/nwp_plot_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/metoffice_ec2/tests/nwp_plot_test.py -------------------------------------------------------------------------------- /metoffice_ec2/tests/predict_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/metoffice_ec2/tests/predict_test.py -------------------------------------------------------------------------------- /metoffice_ec2/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/metoffice_ec2/timer.py -------------------------------------------------------------------------------- /model/predict_pv_yield_nwp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/model/predict_pv_yield_nwp.csv -------------------------------------------------------------------------------- /scripts/ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/scripts/ec2.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openclimatefix-archives/metoffice_ec2/HEAD/setup.py --------------------------------------------------------------------------------