Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions datasets/stac-geoparquet/pc_stac_geoparquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ def run(
"STAC_GEOPARQUET_CONNECTION_INFO must be set if not explicitly provided"
) from e
table_credential = table_credential or os.environ.get(
"STAC_GEOPARQUET_TABLE_CREDENTIAL", azure.identity.DefaultAzureCredential()
"STAC_GEOPARQUET_TABLE_CREDENTIAL", azure.identity.ManagedIdentityCredential()
)
assert table_credential is not None
storage_options_account_name = (
Expand All @@ -743,7 +743,7 @@ def run(
)
storage_options_credential = storage_options_credential or os.environ.get(
"STAC_GEOPARQUET_STORAGE_OPTIONS_CREDENTIAL",
azure.identity.DefaultAzureCredential(),
azure.identity.ManagedIdentityCredential(),
)

storage_options = {
Expand Down Expand Up @@ -803,11 +803,11 @@ def run(
args = parser.parse_args()
configs = list_planetary_computer_collection_configs(
connection_info=os.environ["STAC_GEOPARQUET_CONNECTION_INFO"],
table_credential=azure.identity.DefaultAzureCredential(),
table_credential=azure.identity.ManagedIdentityCredential(),
table_name=os.environ["STAC_GEOPARQUET_TABLE_NAME"],
table_account_url=os.environ["STAC_GEOPARQUET_TABLE_ACCOUNT_URL"],
storage_options_account_name=os.environ["STAC_GEOPARQUET_STORAGE_OPTIONS_ACCOUNT_NAME"],
storage_options_credential=azure.identity.DefaultAzureCredential(),
storage_options_credential=azure.identity.ManagedIdentityCredential(),
extra_skip=SKIP,
collections=args.collection,
)
Expand Down
4 changes: 2 additions & 2 deletions datasets/stac-geoparquet/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
geoparquet:
tasks:
- id: update
image: pccomponents.azurecr.io/pctasks-stac-geoparquet:2025.10.28.5
image: pccomponents.azurecr.io/pctasks-stac-geoparquet:2026.01.05.1
code:
src: ${{ local.path(pc_stac_geoparquet.py) }}
requirements: ${{ local.path(./requirements.txt) }}
Expand All @@ -19,7 +19,7 @@ jobs:
table_account_url: "https://pcapi.table.core.windows.net"
table_name: "greencollectionconfig"
storage_options_account_name: "pcstacitems"
# collections: "sentinel-2-l2a" # Set if you want to generate only one geoparquet file
# collections: "chesapeake-lu" # Set if you want to generate only one geoparquet file
extra_skip:
- "chesapeake-lc-13"
- "chesapeake-lc-7"
Expand Down
Loading