Skip to content
This repository was archived by the owner on Jun 2, 2025. It is now read-only.

Commit d1a885b

Browse files
Merge pull request #378 from openclimatefix/n-gsps-318
Restrict to 318
2 parents 6964e9b + bde1cf4 commit d1a885b

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/workflows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ jobs:
1818
sudo_apt_install: "libgeos++-dev libproj-dev proj-data proj-bin"
1919
# brew_install: "proj geos librttopo"
2020
os_list: '["ubuntu-latest"]'
21-
python-version: "['3.10','3.11']"
21+
python-version: "['3.11']"

ocf_datapipes/load/gsp/database.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def __init__(
5959
# This is becasue national is stored as '0' in PVLive
6060
self.gsp_ids = [0]
6161
else:
62-
self.gsp_ids = list(range(1, N_GSP + 1))
62+
self.gsp_ids = list(range(1, 318))
6363

6464
def __iter__(self) -> xr.DataArray:
6565
"""Get and return GSP data"""

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@ pytorch_lightning
2626
pvlive-api
2727
pydantic
2828
cftime
29+
numcodecs==0.15.1

0 commit comments

Comments
 (0)