From 8d472d5fe418d8938492485a032279fd790d3c39 Mon Sep 17 00:00:00 2001 From: Charles Stern <62192187+cisaacstern@users.noreply.github.com> Date: Thu, 31 Aug 2023 09:37:39 -0700 Subject: [PATCH] pass file_type to OpenWithXarray --- feedstock/recipe.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/feedstock/recipe.py b/feedstock/recipe.py index 85079cf..f1323e8 100644 --- a/feedstock/recipe.py +++ b/feedstock/recipe.py @@ -81,7 +81,9 @@ def expand(self, pcoll: beam.PCollection) -> beam.PCollection: open_kwargs={"block_size": 0, "client_kwargs": client_kwargs}, max_concurrency=10, ) - | OpenWithXarray() + | OpenWithXarray( + file_type=pattern.file_type, + ) | Preprocess() | StoreToZarr( store_name="aqua-modis.zarr",