From ea2985027766766c9b8ede339b340bce4297794a Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Mon, 8 Jun 2026 14:27:38 -0400 Subject: [PATCH] fix: use direct s3 url --- examples/aef-mosaic/src/aef/constants.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/examples/aef-mosaic/src/aef/constants.ts b/examples/aef-mosaic/src/aef/constants.ts index a4c0177d..513a81d4 100644 --- a/examples/aef-mosaic/src/aef/constants.ts +++ b/examples/aef-mosaic/src/aef/constants.ts @@ -3,7 +3,10 @@ * * See https://source.coop/tge-labs/aef-mosaic. */ -export const ZARR_URL = "https://data.source.coop/tge-labs/aef-mosaic"; +// We use the S3 URL directly to work around current source.coop bug of not sending Content-Length header +// export const ZARR_URL = "https://data.source.coop/tge-labs/aef-mosaic"; +export const ZARR_URL = + "https://s3.us-west-2.amazonaws.com/us-west-2.opendata.source.coop/tge-labs/aef-mosaic"; /** Path to the embeddings array within the root group. */ export const VARIABLE = "embeddings";