Skip to content

Commit

Permalink
Feature #2294 LSR use case (#2295)
Browse files Browse the repository at this point in the history
  • Loading branch information
georgemccabe committed Aug 9, 2023
1 parent cd1d3bb commit 6af959b
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@
#Allows for concatenating storm reports together
temp_data = temp_data[temp_data["Time"] != "Time"]

# strip out any rows that have any null/NaN values
temp_data = temp_data[~temp_data.isnull().any(axis=1)]

#Change some columns to floats and ints
temp_data[["Lat","Lon"]] = temp_data[["Lat","Lon"]].apply(pd.to_numeric)

Expand Down

0 comments on commit 6af959b

Please sign in to comment.