Skip to content

Commit

Permalink
Fix attempt 2 for storm name
Browse files Browse the repository at this point in the history
  • Loading branch information
SorooshMani-NOAA committed Feb 15, 2024
1 parent 9338983 commit 51dab5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion singularity/info/files/hurricane_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ def main(args):
# NOTE: Fake best track AFTER perturbation
# gdf_track.advisory = 'BEST'
# gdf_track.forecast_hours = 0
gdf_track['name'] = storm_name
track = VortexTrack(storm=gdf_track, file_deck='a', advisories=[advisory])

windswath_dict = track.wind_swaths(wind_speed=34)
Expand Down Expand Up @@ -246,7 +247,6 @@ def main(args):
df_dt.to_csv(date_out)
# Remove duplicate entries for similar isotach and time
# (e.g. Dorian19 and Ian22 best tracks)
track.data.name = storm_name
track.to_file(track_out)
gs = gpd.GeoSeries(windswath)
gdf_windswath = gpd.GeoDataFrame(
Expand Down

0 comments on commit 51dab5e

Please sign in to comment.