Closed mitchellmanware closed 6 months ago
@mitchellmanware I added data_field
argument mainly for tidying up beethoven
input data. The main reason for letting data_field
work in mode = "sparse"
is that it is more straightforward to do that than adding logics for other modes. mode = "full"
case can be simple because we can assign NA
to data_field
values when the data is not available in a location-date pair. However, mode = "location"
is not that simple since the data are available spatiotemporally. I thought I would add a fun
argument to define a summary function for this mode, but I reserved it for the simplicity of the function. I would be happy to discuss if it would be beneficial for users to support summary functions.
No that makes sense - thank you for the explanation. Updating process_aqs
with the option to retain the measurement data is great, I can't believe it took us until now to add that functionality 😅
@mitchellmanware Yes I was surprised as well when I started working on this update 😅. Better late than never, I think we're good to go. I will close the issue.
@sigmafelix
When using the
process_aqs
function, why does the returned object (whethersf
,SpatVector
, ordata.table
) only return thedata_field
whenmode = "sparse"
?