Skip to content

Commit

Permalink
WIP: added another cell method to copy
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Griesfeller committed Feb 27, 2025
1 parent 8781a89 commit d42b2c5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/pyaro_readers/actrisebas/ActrisEbasReader.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
CELL_METHODS_TO_COPY = [
"time: mean",
"time: median",

"time: detection limit",
]

# number of times an api request is tried before we consider it failed
Expand Down Expand Up @@ -320,7 +320,8 @@ def _read(
urls_to_dl = self.urls_to_dl[actris_variable]
bar = tqdm(desc=tqdm_desc, total=len(urls_to_dl), disable=None)
for s_idx, site_name in enumerate(urls_to_dl):
assert site_name
if site_name == "Schmucke" or site_name == "Schmücke":
assert site_name
self._metadata[site_name] = {}

for f_idx, thredds_url in enumerate(urls_to_dl[site_name]):
Expand Down

0 comments on commit d42b2c5

Please sign in to comment.