We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 796c31f commit 82b5da3Copy full SHA for 82b5da3
hat/extract_timeseries/extractor.py
@@ -6,7 +6,11 @@
6
7
8
def process_grid_inputs(grid_config):
9
- ds = ekd.from_source(*grid_config["source"]).to_xarray()
+ ds = (
10
+ ekd
11
+ .from_source(*grid_config["source"])
12
+ .to_xarray(**grid_config.get("to_xarray_options", {}))
13
+ )
14
var_name = find_main_var(ds, 3)
15
da = ds[var_name]
16
gridx_colname = grid_config.get("coord_x", "lat")
0 commit comments