Skip to content

Commit 178b70d

Browse files
authored
Update getting_started.md
1 parent 808063b commit 178b70d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

getting_started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ APIs play a crucial role in fetching real-time and historical data required for
180180
- Use the `aws s3 cp` command to download the data to your local machine.
181181
182182
5.## Accessing GFS Data from S3
183-
The GFS data is stored in the S3 bucket `s3://ocf-open-data-pvnet/data/gfs/`. 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.
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.
184184
185185
### Prerequisites
186186
Before accessing the data, ensure you have the following Python packages installed:
@@ -197,7 +197,7 @@ import s3fs
197197
# Create an S3 filesystem object
198198
s3 = s3fs.S3FileSystem(anon=True)
199199
# Open the GFS dataset from the S3 bucket
200-
dataset_path = 's3://ocf-open-data-pvnet/data/gfs/'
200+
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)

0 commit comments

Comments
 (0)