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
Daily averaging period matters in this case. I am curious why not normalize completely by also dividing through by sigma_SHFLX? Then you have Pearson's correlation coefficient.
We have dabbled with daily data, but nothing that has made it into something we compute regularly. It is more of an organizational problem and nothing we cannot remedy. Seasonal averaging is just not added (we haven't used it) and nothing we cannot do quickly.
I would recommend that we make a Confrontation for this. I have been long working on a new version of ILAMB based on xarray. It has just taken a long time to re-implement everything. One approach I am now using is to add new things to ILAMB in the new xarray way when possible and then create a backward compatibility wrapper to the old version. I can do this pretty quickly.
Fluxnet data is a pain to work with. The following snippet combines a few columns from the monthly data into a single dataframe and then xarray dataset with arrays that are of dimension (time, ndata). It doesn't have all the metadata yet, but you may find it useful.
Computed as:
CI(x) = covar( SM(t,x), SHFLX(t,x) ) / sigma(SM(t,x)
Daily averaging period matters in this case. I am curious why not normalize completely by also dividing through by
sigma_SHFLX
? Then you have Pearson's correlation coefficient.We have dabbled with daily data, but nothing that has made it into something we compute regularly. It is more of an organizational problem and nothing we cannot remedy. Seasonal averaging is just not added (we haven't used it) and nothing we cannot do quickly.
I would recommend that we make a Confrontation for this. I have been long working on a new version of ILAMB based on xarray. It has just taken a long time to re-implement everything. One approach I am now using is to add new things to ILAMB in the new xarray way when possible and then create a backward compatibility wrapper to the old version. I can do this pretty quickly.
Fluxnet data is a pain to work with. The following snippet combines a few columns from the monthly data into a single dataframe and then xarray dataset with arrays that are of dimension (time, ndata). It doesn't have all the metadata yet, but you may find it useful.
The text was updated successfully, but these errors were encountered: