Skip to content

Commit

Permalink
Fix example NOAA dataset (#358)
Browse files Browse the repository at this point in the history
Just noticed that the example of NOAA data did not work.
  • Loading branch information
jbusecke authored Oct 29, 2024
1 parent d819c4a commit 56f2836
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/docs/sample-datasets.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ storage = icechunk.StorageConfig.s3_anonymous(
region='us-east-1',
)

store = IcechunkStore.open_existing(storage=storage, mode="r", config=StoreConfig(
virtual_ref_config=VirtualRefConfig.s3_anonymous(region='us-east-1'),
store = icechunk.IcechunkStore.open_existing(storage=storage, mode="r", config=icechunk.StoreConfig(
virtual_ref_config=icechunk.VirtualRefConfig.s3_anonymous(region='us-east-1'),
))
```

![oisst](./assets/datasets/oisst.png)
![oisst](./assets/datasets/oisst.png)

0 comments on commit 56f2836

Please sign in to comment.