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
[](https://github.com/openclimatefix#how-easy-is-it-to-get-involved)
8
8
9
-
This repo is used to run the OCF-ATI cloudcasting model live in production. This model takes
10
-
previous frames of EUMETSAT satellite images and forecasts the future frames to come.
9
+
This repo is used to run the OCF-ATI cloudcasting model live in production and meausure its
10
+
performance. The model takes previous frames of EUMETSAT satellite images and forecasts the future
11
+
frames to come.
11
12
12
-
The repo associated with training the models run here is https://github.com/openclimatefix/sat_pred
The following environment variables are used in the app:
20
-
21
-
-`SATELLITE_ZARR_PATH`: The path to the satellite data in Zarr format.
22
-
-`OUTPUT_PREDICTION_DIRECTORY`: The directory where results are saved.
23
-
24
-
### Optional Environment Variables
25
-
26
-
-`SATELLITE_SCALE_FACTOR`: The scale factor for the satellite data. Defaults to 1023.
27
-
-`SATELLITE_15_ZARR_PATH`: The path to the 15 minute satellite data in Zarr format. If
28
-
this is not set then the `SATELLITE_ZARR_PATH` is used by `.zarr` is repalced with `_15.zarr`
13
+
This repo contains two different packages:
14
+
-`cloudcasting_app`: Used to run inference
15
+
-`cloudcasting_metrics`: Used to score the predictions against ground truth
29
16
30
17
## Installation
31
18
19
+
Both packages will be installed simultaneously using
20
+
32
21
## Setup / Installation
33
22
34
23
```bash
@@ -38,22 +27,21 @@ pip install .
38
27
```
39
28
40
29
41
-
## Example usage
30
+
## Usage and environmental variables
42
31
43
-
### Running the app locally
44
-
45
-
It is possbile to run the app locally by setting the required environment variables listed at the top of the [app](src/cloudcasting_app/app.py), these should point to the relevant paths for loading satellite data
46
-
and saving predicitons.
32
+
See the READMEs in `src/cloudcasting_app` and `src/cloudcasting_metrics`.
47
33
48
34
## Development
49
35
50
36
### Running the test suite
51
37
52
-
The test suite is via pytest and can be run from command line using
38
+
The test suite is via pytest and can be run from command line using.
0 commit comments