Different time windows

Code
%load_ext autoreload
%autoreload 2

::: {#cell-2 .cell 0=‘h’ 1=‘i’ 2=‘d’ 3=‘e’ execution_count=6}

Code
from juno.config import JunoConfig, WindConfig, StereoConfig

:::

Code
wind_conf = WindConfig()
Path('/Users/zijin/projects/ids_spatial_evolution_juno/data/05_reporting/events_method=fit_name=Wind_tau=0:01:00_ts=0:00:01.arrow')
Code
confs = [wind_conf]
for conf in confs:
    conf.load()
    if conf.events.is_empty():
        print('No events found')
        conf.get_and_process_data().export()
Code
taus = range(60, 10, -10)
for tau in taus:
    JunoConfig(tau=tau).get_and_process_data().export()
Code
JunoConfig().get_and_process_data().export()
Code
JunoConfig(ts=0.125, method='derivative').get_and_process_data().export()
Code
JunoConfig(ts=0.125, method='derivative').path
Code
JunoConfig(ts=0.125).get_and_process_data().export()
JunoConfig(method='derivative').get_and_process_data().export()
JunoConfig(ts=0.125, method='derivative').get_and_process_data().export()
Code
WindConfig().get_and_process_data()