Skip to content

Commit

Permalink
adding certainty back in the driver
Browse files Browse the repository at this point in the history
  • Loading branch information
gtramonte committed Jul 22, 2024
1 parent 9405931 commit 00bf6a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion drivers/intake_geokube/afm.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def postprocess_afm(ds: xr.Dataset, post_process_chunks) -> xr.Dataset:
# ds = ds.expand_dims(dim={"latitude": latitude, "longitude": longitude}, axis=(1,0))
ds = ds.drop('lat')
ds = ds.drop('lon')
ds = ds.drop('certainty')
#ds = ds.drop('certainty')
deduplicated = ds.expand_dims(dim={"latitude": latitude, "longitude": longitude}, axis=(1, 0))
for dim in deduplicated.dims:
indexes = {dim: ~deduplicated.get_index(dim).duplicated(keep='first')}
Expand Down
4 changes: 1 addition & 3 deletions executor/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
pika==1.2.1
prometheus_client
sqlalchemy
pydantic
dask==2024.7.1
dask[distributed]==2024.7.1
pydantic

0 comments on commit 00bf6a3

Please sign in to comment.