Skip to content

Commit

Permalink
[WIP] more future_normals adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
achubaty committed Mar 14, 2024
1 parent ec9c51b commit ed91df1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data-raw/03-ClimateNA_future_normals.R
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ new_rows_futu_normals <- future_lapply(dem_ff, function(f) {

z <- lapply(MSYs, function(msy) {
lapply(future_nrm, function(nrm) {
ClimateNAout <- ClimateNA_path(ClimateNAdata, tile = tile, type = climateType, msy = msy)
ClimateNAout <- ClimateNA_path(ClimateNAdata, tile = tile, type = climateType, msy, gcm, ssp)

period <- substr(nrm, 8, 16)

row <- dplyr::filter(
climate_futu_normals_df,
msy == !!msy & period == !!period & tileid == !!tile
gcm == !!gcm & ssp == !!ssp & msy == !!msy & period == !!period & tileid == !!tile
) |>
collect()

Expand Down

0 comments on commit ed91df1

Please sign in to comment.