Some storms have multiple landfalls, but we only pick the first landfall time for setup, e.g. from the leadtime file:
|
if len(storm_all_times) > 1: |
|
storm_all_times = storm_all_times.iloc[0] |
but also from the track:
|
candidates = tracks_onland.groupby('track_start_time').nth(0).reset_index() |
NHC distinguishes these two cases in observations for probabilistic analysis. We need to be able to do the same.
Thanks @FariborzDaneshvar-NOAA for pointing this out
Some storms have multiple landfalls, but we only pick the first landfall time for setup, e.g. from the leadtime file:
ondemand-storm-workflow/stormworkflow/prep/hurricane_data.py
Lines 65 to 66 in 7974f4f
but also from the track:
ondemand-storm-workflow/stormworkflow/prep/hurricane_data.py
Line 113 in 7974f4f
NHC distinguishes these two cases in observations for probabilistic analysis. We need to be able to do the same.
Thanks @FariborzDaneshvar-NOAA for pointing this out