Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stella-bourdin committed Apr 7, 2021
1 parent 1d62eed commit db9878e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions dynamicopy/cyclones.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ def load_ibtracs(
.rename(columns={"usa_sshs": "sshs", "sid": "track_id"})
.drop(columns="season")
)
tracks['basin'] = tracks.basin.replace('EP', 'ENP').replace('WP', 'WNP')
tracks["hemisphere"] = np.where(tracks.lat > 0, "N", "S")
tracks = add_season(tracks)
return tracks
Expand Down

0 comments on commit db9878e

Please sign in to comment.