File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,8 @@ def coordinate_conversion(self) -> xr.Dataset | None:
130
130
self .product_urlpath ,
131
131
group = f"{ self .measurement_group } /coordinate_conversion" ,
132
132
** self .kwargs ,
133
- ).compute ()
133
+ )
134
+ ds = ds .compute ()
134
135
return ds
135
136
136
137
@functools .cached_property
@@ -141,7 +142,8 @@ def azimuth_fm_rate(self) -> xr.Dataset | None:
141
142
self .product_urlpath ,
142
143
group = f"{ self .measurement_group } /azimuth_fm_rate" ,
143
144
** self .kwargs ,
144
- ).compute ()
145
+ )
146
+ ds = ds .compute ()
145
147
return ds
146
148
147
149
@functools .cached_property
@@ -152,12 +154,13 @@ def dc_estimate(self) -> xr.Dataset | None:
152
154
self .product_urlpath ,
153
155
group = f"{ self .measurement_group } /dc_estimate" ,
154
156
** self .kwargs ,
155
- ).compute ()
157
+ )
158
+ ds = ds .compute ()
156
159
return ds
157
160
158
161
# make class hashable to allow caching methods calls
159
162
160
- def __hash__ (self ):
163
+ def __hash__ (self ) -> int :
161
164
id = (
162
165
self .product_urlpath ,
163
166
self .measurement_group ,
You can’t perform that action at this time.
0 commit comments