Skip to content

Commit 7003ea9

Browse files
Removing links to Azure catalog (#211)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent d227358 commit 7003ea9

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,7 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
python: ["3.9", "3.10", "3.11", "3.12"]
24-
CARBONPLAN_DATA: [
25-
# 'https://carbonplan.blob.core.windows.net/carbonplan-data',
26-
"gs://carbonplan-data",
27-
]
24+
CARBONPLAN_DATA: ["gs://carbonplan-data"]
2825
steps:
2926
- uses: actions/checkout@v4
3027
- name: Install Conda environment from environment.yml

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ python -m pip install carbonplan[data]
2626
## usage
2727

2828
The CarbonPlan data archives are currently mirrored on Google Cloud Storage (US-Central) and
29-
Microsoft Azure (US-West). Set the `CARBONPLAN_DATA` environment variable before using the
29+
AWS (us-west-2). Set the `CARBONPLAN_DATA` environment variable before using the
3030
Intake catalog below:
3131

3232
```shell
3333
# google (us-central)
3434
export CARBONPLAN_DATA="https://storage.googleapis.com/carbonplan-data"
3535
# or
36-
# azure (us-west)
37-
export CARBONPLAN_DATA="https://carbonplan.blob.core.windows.net/carbonplan-data"
36+
# s3 (us-west-2)
37+
export CARBONPLAN_DATA="https://carbonplan-data.s3.us-west-2.amazonaws.com"
3838
```
3939

4040
```python

carbonplan_data/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
MASTER_CATALOG_PATH = str(CATALOG_DIR_PATH.parent / "catalogs/master.yaml")
1919
KNOWN_DATA_LOCATIONS = [
2020
"https://storage.googleapis.com/carbonplan-data",
21-
"https://carbonplan.blob.core.windows.net/carbonplan-data",
21+
"https://carbonplan-data.s3.us-west-2.amazonaws.com",
2222
]
2323

2424
# open master catalog

0 commit comments

Comments
 (0)