Skip to content
Snippets Groups Projects
run_identify.py 1.52 KiB
Newer Older
# Usage Example

from enstools.feature.pipeline import FeaturePipeline
from enstools.feature.identification.african_easterly_waves import AEWIdentification
from enstools.feature.tracking.african_easterly_waves import AEWTracking

from enstools.feature.identification._proto_gen import african_easterly_waves_pb2
from os.path import expanduser, join
from enstools.feature.identification.african_easterly_waves.plotting import plot_timesteps_from_desc, plot_tracks_from_graph
pipeline = FeaturePipeline(african_easterly_waves_pb2)

# init AEWIdentification strategy, can take different parameters
i_strat = AEWIdentification()

pipeline.set_identification_strategy(i_strat)
pipeline.set_tracking_strategy(t_strat)
data_path = join(expanduser("~") + '/phd/data/aew/cv/*.nc')
pipeline.set_data_path(data_path)

# execute pipeline
pipeline.execute()

Christoph.Fischer's avatar
Christoph.Fischer committed
# generate the tracking graph
pipeline.generate_graph()
Christoph.Fischer's avatar
Christoph.Fischer committed
# generate the single tracks
pipeline.generate_tracks()
# out_netcdf_path = data_path + '_streamers.nc'
out_json_path = data_path[:-4] + 'aew_desc.json'
Christoph.Fischer's avatar
Christoph.Fischer committed
out_graph_path = data_path[:-4] + 'aew_graph.json'
pipeline.save_result(description_type='json', description_path=out_json_path, graph_path=out_graph_path)
Christoph.Fischer's avatar
Christoph.Fischer committed
od = pipeline.get_object_desc() # just the identified objects and their connections in object_desc
gd = pipeline.get_graph_desc() # graph and tracks are in graph_desc
plot_tracks_from_graph(gd, pipeline.get_data())
# plot_timesteps_from_desc(od, pipeline.get_data())
# plot_waves_from_desc(od, pipeline.get_data())