update queries for growth maps

This commit is contained in:
2025-12-25 00:43:47 -05:00
parent 4edefbb73f
commit 512d42ff2d
2 changed files with 18 additions and 5 deletions
+10 -1
View File
@@ -354,7 +354,14 @@ get_hurdat_landfalls <- function(storm) {
# returns all tracked storm conus landfalls
get_all_conus_landfalls <- function() {
query <- view.all_conus_landfalls
query <- view.all_conus_landfalls %>%
select(
storm_year,
storm_name,
lon,
lat,
rmw_meters
)
result <- query %>% collect()
@@ -479,6 +486,7 @@ get_normalized_metric_growth <- function(storm, full_lf_id) {
state_fips,
county_fips,
year,
name,
population,
housing_units,
normalized_population,
@@ -543,6 +551,7 @@ get_normalized_metric_growth <- function(storm, full_lf_id) {
select(
state_fips,
year,
name,
population,
housing_units,
normalized_population,