Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Data filtering #92

Open
LiJiang1228 opened this issue May 8, 2023 · 2 comments
Open

Data filtering #92

LiJiang1228 opened this issue May 8, 2023 · 2 comments

Comments

@LiJiang1228
Copy link

LiJiang1228 commented May 8, 2023

We can use code to select swarm data which meets criteria (|Dst|<10nT, Kp<2)
request.set_range_filter("Dst",minimum=-10,maximum=10)
request.set_range_filter("Kp",maximum=2)
But, how we can select swarm data which meets (d|Dst|/dt<3nT/hour, d|Kp|/dt<2/3hour)
And, how to select swarm data which meets the local time between 21:00-3:00.

@pacesm
Copy link
Collaborator

pacesm commented May 8, 2023

It is possible to filter by|dDst/dt|(absolute value of the rate of change of the Dst index):

request.set_range_filter("dDst",maximum=3) # nT / hour

Unfortunately, it is currently not possible to filter by the rate of change of the Kp index nor by the local time. If you think this would be useful features we might considered to implement them.

@LiJiang1228
Copy link
Author

Thanks for your answer!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants