Skip to content

Commit 0c4101e

Browse files
committed
fix getting started md file
1 parent 1acc7c8 commit 0c4101e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

getting_started.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -178,16 +178,16 @@ APIs play a crucial role in fetching real-time and historical data required for
178178
- Use the `aws s3 ls` command to list the available objects in the bucket.
179179
- Example: `aws s3 ls --no-sign-request s3://ocf-open-data-pvnet/data/`
180180
- 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.
184184
185185
### Prerequisites
186186
Before accessing the data, ensure you have the following Python packages installed:
187187
188188
```bash
189189
pip install xarray zarr s3fs
190-
### Example Code
190+
```
191191
192192
Below is an example of how to open the GFS dataset from the S3 bucket using Python:
193193
@@ -201,7 +201,7 @@ dataset_path = 's3://ocf-open-data-pvnet/data/gfs.zarr/'
201201
ds = xr.open_zarr(s3.get_mapper(dataset_path), consolidated=True)
202202
# Display the dataset
203203
print(ds)
204-
---
204+
```
205205
206206
### Best Practices for Using APIs
207207

0 commit comments

Comments
 (0)