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
Copy file name to clipboardExpand all lines: getting_started.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -178,16 +178,16 @@ APIs play a crucial role in fetching real-time and historical data required for
178
178
- Use the `aws s3 ls` command to list the available objects in the bucket.
179
179
- Example: `aws s3 ls --no-sign-request s3://ocf-open-data-pvnet/data/`
180
180
- Use the `aws s3 cp` command to download the data to your local machine.
181
-
182
-
5.## Accessing GFS Data from S3
183
-
The GFS data is stored in the S3 bucket `s3://ocf-open-data-pvnet/data/gfs.zarr/`. To access and work with this data, you can use Python libraries such as `xarray` and `s3fs`. These libraries allow you to directly read Zarr-formatted data from S3.
181
+
182
+
5. **Accessing GFS Data from S3**
183
+
The GFS data is stored in a S3 bucket `s3://ocf-open-data-pvnet/data/gfs.zarr/`. To access and work with this data, you can use Python libraries such as `xarray` and `s3fs`. These libraries allow you to directly read Zarr-formatted data from S3.
184
184
185
185
### Prerequisites
186
186
Before accessing the data, ensure you have the following Python packages installed:
187
187
188
188
```bash
189
189
pip install xarray zarr s3fs
190
-
### Example Code
190
+
```
191
191
192
192
Below is an example of how to open the GFS dataset from the S3 bucket using Python:
0 commit comments