mirror of
https://github.com/dylanbenzi/hurricane_normalization_app.git
synced 2026-07-30 05:08:57 +00:00
remove tabset for map and move map data to separate column
This commit is contained in:
@@ -295,7 +295,28 @@ get_hurdat_track <- function(storm) {
|
||||
rmw_meters
|
||||
)
|
||||
|
||||
result <- query %>% collect()
|
||||
result <- query %>%
|
||||
collect() %>%
|
||||
mutate(
|
||||
formatted_datetime = paste0(
|
||||
format(datetime, "%m/%d/%Y"),
|
||||
" ",
|
||||
format(datetime, "%H"),
|
||||
"Z"
|
||||
)
|
||||
) %>%
|
||||
select(
|
||||
formatted_datetime,
|
||||
datetime,
|
||||
storm_status,
|
||||
lon,
|
||||
lat,
|
||||
rmw,
|
||||
pressure,
|
||||
windspeed,
|
||||
record_identifier,
|
||||
rmw_meters
|
||||
)
|
||||
|
||||
return(result)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user