OpenSenseAction / pypwsqc

Python package for quality control (QC) of data from personal weather stations (PWS)
https://pypwsqc.readthedocs.io
BSD 3-Clause "New" or "Revised" License
0 stars 3 forks source link

SO filter #26

Open lepetersson opened 4 months ago

lepetersson commented 4 months ago

Dirty but functioning SO-filter. Missing pieces

cchwala commented 4 months ago

Thanks for the update!

check if stations have all nans (found no function to do that in xarray)

If I understand correctly you can do something like this

da.isnull().all()
lepetersson commented 4 months ago

Thanks for the update!

check if stations have all nans (found no function to do that in xarray)

If I understand correctly you can do something like this

da.isnull().all()

Thanks, fixed it now