You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a model I want to sequentially transfer to different future time points. This part is fine:
rmm <- rmmAutofillEnvironment(rmm,midCentury,transfer=1) # for transfer environment 1
rmm <- rmmAutofillEnvironment(rmm,lateCentury,transfer=2) # for transfer environment 2
but later, when I do rmmCheckFinalize(rmm), it gives me...
Element name '$data$transfer$environment2$resolution' not found in data dictionary!
Did you mean: '$data$transfer$environment1$resolution'?
Then, when I try to save rmm as a .csv using `rmmToCSV(cleanRmm, "LeopardCatMetadata.csv")' I get this error:
Error in x[[i]][[j]][[k]] : subscript out of bounds
The text was updated successfully, but these errors were encountered:
All functions wrapped in rmmCheckFinalize() now work. However, the problem remains that if there is more than one transfer region, you will get:
Element name '$data$transfer$environment2$resolution' not found in data dictionary!
Did you mean: '$data$transfer$environment1$resolution'?
The clunky way to do this would be to add a ton of lines to the data dictionary, but that doesn't seem practical for long-term use. It's possible there's some way to fix this with a more consistent pattern matching algorithm, but nothing comes to mind right now.
I have a model I want to sequentially transfer to different future time points. This part is fine:
but later, when I do
rmmCheckFinalize(rmm)
, it gives me...Then, when I try to save
rmm
as a .csv using `rmmToCSV(cleanRmm, "LeopardCatMetadata.csv")' I get this error:The text was updated successfully, but these errors were encountered: