Skip to content

Latest commit

 

History

History
111 lines (101 loc) · 6.12 KB

gravity_processing_notes.md

File metadata and controls

111 lines (101 loc) · 6.12 KB

Airborne Gravity Processing Workflow

Here are some notes on the common workflows for processing airborne gravity data.

Resources:

  • Oasis Montaj support documents
  • Hinze et al. 2005, 10.1190/1.1988183

Initial Corrections

  • split Sorties into lines
    • removal of takeoff/landing and turns
  • remove turbulance
  • quality control
  • positioning offset (GPS relative to sensor)
  • lag correction (time offset between GPS and sensor)
  • block level shifts (tares in the data)
  • resampling data (ex. 10hz -> 1Hz)

Observed Gravity

  • Atmospheric correction
    • δgatm =0.874 - 9.9×10-5h + 3.56×10-9h2
    • found in Hinze et al. 2005
    • used in Oasis Montaj
  • Machine drift
    • Gsolve
    • Constant shift on line-by-line basis to bring to absolute gravity from base station.
      • average the pre- and post-flight readings of each flight
      • remove the difference between that average and the local g value
  • Tidal correction
  • Aircraft manoeuvres
  • Eötvös correction
    • 3 equations: Exact, Glicken, Harlan
    • earth's rotation produces outward centrifugal accel
    • objects moving relative to earth experience additional accel
    • vertical component of this accel is relatived to curved earth, known as the Eotvos effect (<30mGals)
    • R. B. Harlan, "Eötvös corrections for airborne gravimetry", Journal of Geophysics Research, vol 73, no 14 (July 15, 1968).
    • M. Glicken, "Eötvös corrections for a moving gravity meter", Geophysics, vol 27, no 4 (1962), pp. 531-533.
    • Oasis Montaj docs have equations
  • Levelling
    • Systematic errors
      • typically removed with known corrections (IGRF, heading, etc.)
    • Systematic noise
      • residual error
      • typically from gradient or elevation differences between data
    • software
      • x2sys (GMT)
        • Example from Wei Ji
        • x2sys_init and x2sys_cross are wrapped by pyGMT, but not x2sys_solve yet.
      • Oasis Montaj
        • Simple Levelling (2-steps)
          • tie lines adjust to match statistical average or trend of observed crossing survey lines
          • survey lines adjusted to exactly match tie lines
        • Empirical of microlevelling
          • gridding technique to filter residual noise
        • Workflow
          • Simple
            • assume cross-overs on average are 0
            • discard mis-ties in areas of high horizontal gradients
            • analyze mis-ties and remove outliers
            • statistically level tie lines to match flight lines (shifted, linearly trended ,splined, or b-splined)
            • calc new intersections
            • manually adjust specific mis-ties
            • optionally filter the mis-tie values
            • apply difference at cross-overs, and linearly interpolate between cross-over points
          • Careful
            • apply shifts, tilts, spline, of tensioned spline corrections to individual lines
  • Microlevelling
    • Oasis Montaj
      • Extract Noise
        • default grid cell is 1/5 line spacing
        • uses a decorrugation (directional high-pass) filter
        • 6th-order high-pass butterworth filter with a default cutoff wavelength of 4x the flight line spacing combined with a directional filter
      • Microlevel
        • low pass filter the noise to retrieve any more geological signal
        • subtract from data to get microleveled grid

Gravity Disturbance

Disturbance vs Anomaly

  • Anomaly is the difference between observed gravity on the geoid and the normal (theoretical) gravity on the same lat/lon point on the ellipsoid
    • used in geodesy to calculate the geoid
  • Disturbance is difference between observed and normal gravity, both on the ellipsoid, at the same point
    • this is used by geophysics to model the subsurface

This can result in a discrepancy of over 10mGal (Oliveira et al. 2018; Should geophysicists use the gravity disturbance or the anomaly?)

Use a closed-form normal gravity formula to get the normal gravity at the observation point on the ellipsoid. Subtract it from the observed gravity to get the gravity disturbance. Observed gravity should be the signal only from the gravitational attraction of every massive body in the Earth (should it include the Eotvos correction?)