about : processing and gridding gravity data with fatiando a terra #80
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
Hi @prince-Ha! Opening this issue is not rude at all. The idea of allowing users to open issues or discussions in our forum is to encourage the conversation within the community. Your questions and inputs are very welcomed 🙂. Answer to point 1 After reading your notebook I noticed that your free-air anomaly data doesn't include the observation height. This height is as important as the observed gravity values: the observed gravity depends on the densities of the bodies that generate it and also on the distance to those bodies. In cell 28 you add a Also, take into account that the simple Bouguer correction doesn't depend on observation height because it assumes an infinite plate. This is why simple Bouguer corrections should be taken carefully, while a proper terrain correction is more suitable for most cases. Answer to point 2 Your kernel is probably crashing due to lack of memory when trying to fit the deep sources. You are working with ~200000 data points and this is no small number for applying equivalent sources. A second alternative would be to use the gradient-boosted equivalent sources: https://www.fatiando.org/harmonica/latest/user_guide/equivalent_sources/gradient-boosted-eqs.html Answer to point 3 I really regret not including an example on how to correctly apply the correction that that Note mentions. I remember having this example somewhere but don't remember exactly where. @leouieda I think you wrote it, do you think where it can be? BTW, this more complex example should be included in the Harmonica User Guide! (will open an issue for it) |
Beta Was this translation helpful? Give feedback.
-
您好,我是林恩伟,你发的邮件我已经收到。
|
Beta Was this translation helpful? Give feedback.
Hi @prince-Ha! Opening this issue is not rude at all. The idea of allowing users to open issues or discussions in our forum is to encourage the conversation within the community. Your questions and inputs are very welcomed 🙂.
Answer to point 1
After reading your notebook I noticed that your free-air anomaly data doesn't include the observation height. This height is as important as the observed gravity values: the observed gravity depends on the densities of the bodies that generate it and also on the distance to those bodies. In cell 28 you add a
height_geometric_m
column to yourdata
and you use these values when computing the terrain effect as the observation heights. Those heights are…