-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question about projectField #94
Comments
|
@ajdawson Thank you for your response.
Thank you in advance for your great support. |
@bonfils2 @gleckler1 FYI... |
I think the scaling of EOFs may be incorrect actually. I think they are scaled to unit length by default. I don't have time to look into this myself right now. You'll probably have to dive into the source yourself. Follow you instinct, if something isn't right bug fix PRs are always welcome! |
Hi @ajdawson,
I have been used the eofs extensively for my on-going research in recent 2 years. Thanks for your efforts on developing and maintaining this awesome package. I am not sure if this issue board is proper for asking question. Please excuse me if not, but I really do need your help for my following questions.
I understand how
eofsAsCovariance
andeofsAsCorrelation
are different, but couldn't fully understand whateofs
is for. Could you please give me some detail about theeofs
and how it works differently to above two?Some interfaces (e.g.,
eofsAsCovariance
,pcs
) havepcscaling
option while some other interfaces (e.g.,eofs
,projectField
) haveeofscaling
option. To me it seems like ifpcscaling=1
, it works with normalized PC time series that has unit variance (please correct me if I am wrong). But I don't fully understand whateofscaling
option is for. May I have further detail how theeofscaling
option work?According to the manual, "We could also project another field onto the EOFs to produce a set of pseudo-PCs:
pseudo_pcs = solver.projectField(other_field)
"I am using this call as below:
pseudo_pcs = solver.projectField(field_to_be_projected, neofs=1, eofscaling=0)
The
eofscaling=0
says the field is being projected onto "un-scaled EOFs" as default. But to me, it seems like EOF pattern of unit variance (map that has spatial deviation = 1) is being projected onto the given field (That is why I asked question 2).I see the
projectField
is usingflatE
, which is coming fromE
. I suspect thisE
should identical to map of EOF pattern that has unit variance. Could you please confirm or correct this for me?Thank you for your attention and sorry for deficit of my understanding. Your comment would be tremendously helpful for me. Thank you in advance.
The text was updated successfully, but these errors were encountered: