Station Time, UTC Dist, m g, mGal Terrain Cor Elev., m BASE 17.8 3298.018 0 168 17.98 400650 3297.19 0 1085.4 169 18.15 400300 3297.706 0 1100.6 170 18.3 400150 3298.079 0 1112.8 171 18.5 400000 3298.008 0 1131.1 173 18.8 399450 3294.797 0 1182.9 172 19 399700 3296.622 0 1146.3 BASE 19.5 3298.038 0 174 19.75 399150 3293.508 0 1198.2 140 19.85 399000 3292.532 0 1201.8 175 20.1 399000 3291.514 0.093 1204.3 176 20.6 399900 3290.011 0.019 1225.6 177 20.75 399750 3288.129 0.012 1256.1 BASE 21.3 3298.12 0You can also download the grav2d.zip ZIP archive, and unpack it to get the examp.xls Excel spreadsheet with these data. The quickgrav.xls spreadsheet with fake data similar to our 2009 Bango Rd. profile contains useful Excel formulae. Also, remember that the formula for the total free-air plus Bouguer-slab elevation correction is:
Using the information above compute the simple Bouguer anomaly at each of the numbered measurement stations (not the base station). The ``simple Bouguer anomaly'' includes the drift correction and the two elevation corrections but only the inner-ring terrain correction. The terrain corrections given above are in mGal and are field-estimated B and C ring corrections. (After complete terrain correction the anomaly value is called the ``complete Bouguer.'') Use a datum elevation equal to the elevation of the lowest station, and use 2.67 g/cc for the Bouguer correction.
cd grav2d java -cp . grav2d 1.0 reno1.txt reno1.gravThe grav2d run takes the input text file ``reno1.txt'' and inverts for basin depths using a tolerance of 1.0 mGal. The output is placed in a text file called ``reno1.grav''. (You will need to change the file names for different runs below.)
The open-source Java code is grav2d.java. The parts that do all the computation only amount to about 40 lines. All the other stuff is i/o and error checks.