import os
import subprocess
Run NonLinLoc Vel2Grid and Grid2Time#
This notebook is simply runing the NonLinLoc commands to prepare the timetables for P and S using subprocess calls
### Vel2Grid
# create directory
os.makedirs("./model",exist_ok=True)
# Run once each for P and S
config_fileP = "ttgrid_runfile_poly2_P.in"
config_fileS = "ttgrid_runfile_poly2_S.in"
# this line is specific to run NLL on linux subsystem on windows
cp = subprocess.run(["wsl", "bash", "-ic", f"Vel2Grid3D ./out_NLL_config_files/{config_fileP}"], capture_output=True)
print(cp)
cp = subprocess.run(["wsl", "bash", "-ic", f"Vel2Grid3D ./out_NLL_config_files/{config_fileS}"], capture_output=True)
print(cp)
# # this is for unix based
# cp = subprocess.run([f"Vel2Grid3D ./out_NLL_config_files/{config_fileP}"], capture_output=True, shell=True)
# print(cp)
# cp = subprocess.run([f"Vel2Grid3D ./out_NLL_config_files/{config_fileS}"], capture_output=True, shell=True)
# print(cp)
# show
cp
CompletedProcess(args=['Vel2Grid3D ./out_NLL_config_files/ttgrid_runfile_poly2_S.in'], returncode=0, stdout=b'Vel2Grid3D (NonLinLoc v7.00.16 17Apr2023) \nINFO: no clipping (VGCLIP) params read.\nCreating model grid files: ./model/delph_poly2_lcc.S.mod.*\n', stderr=b'\nReadVelModel: no. grid nodes in x,y,z -> 249 249 105 \nReadVelModel: grid nodes in x-dir\n\t -124.0 -123.0 -122.0 -121.0 -120.0 -119.0 -118.0 -117.0 -116.0 -115.0 -114.0 -113.0 -112.0 -111.0 -110.0 -109.0 -108.0 -107.0 -106.0 -105.0 -104.0 -103.0 -102.0 -101.0 -100.0 -99.0 -98.0 -97.0 -96.0 -95.0 -94.0 -93.0 -92.0 -91.0 -90.0 -89.0 -88.0 -87.0 -86.0 -85.0 -84.0 -83.0 -82.0 -81.0 -80.0 -79.0 -78.0 -77.0 -76.0 -75.0 -74.0 -73.0 -72.0 -71.0 -70.0 -69.0 -68.0 -67.0 -66.0 -65.0 -64.0 -63.0 -62.0 -61.0 -60.0 -59.0 -58.0 -57.0 -56.0 -55.0 -54.0 -53.0 -52.0 -51.0 -50.0 -49.0 -48.0 -47.0 -46.0 -45.0 -44.0 -43.0 -42.0 -41.0 -40.0 -39.0 -38.0 -37.0 -36.0 -35.0 -34.0 -33.0 -32.0 -31.0 -30.0 -29.0 -28.0 -27.0 -26.0 -25.0 -24.0 -23.0 -22.0 -21.0 -20.0 -19.0 -18.0 -17.0 -16.0 -15.0 -14.0 -13.0 -12.0 -11.0 -10.0 -9.0 -8.0 -7.0 -6.0 -5.0 -4.0 -3.0 -2.0 -1.0 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0 10.0 11.0 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0 20.0 21.0 22.0 23.0 24.0 25.0 26.0 27.0 28.0 29.0 30.0 31.0 32.0 33.0 34.0 35.0 36.0 37.0 38.0 39.0 40.0 41.0 42.0 43.0 44.0 45.0 46.0 47.0 48.0 49.0 50.0 51.0 52.0 53.0 54.0 55.0 56.0 57.0 58.0 59.0 60.0 61.0 62.0 63.0 64.0 65.0 66.0 67.0 68.0 69.0 70.0 71.0 72.0 73.0 74.0 75.0 76.0 77.0 78.0 79.0 80.0 81.0 82.0 83.0 84.0 85.0 86.0 87.0 88.0 89.0 90.0 91.0 92.0 93.0 94.0 95.0 96.0 97.0 98.0 99.0 100.0 101.0 102.0 103.0 104.0 105.0 106.0 107.0 108.0 109.0 110.0 111.0 112.0 113.0 114.0 115.0 116.0 117.0 118.0 119.0 120.0 121.0 122.0 123.0 124.0 \nReadVelModel: grid nodes in y-dir\n\t -124.0 -123.0 -122.0 -121.0 -120.0 -119.0 -118.0 -117.0 -116.0 -115.0 -114.0 -113.0 -112.0 -111.0 -110.0 -109.0 -108.0 -107.0 -106.0 -105.0 -104.0 -103.0 -102.0 -101.0 -100.0 -99.0 -98.0 -97.0 -96.0 -95.0 -94.0 -93.0 -92.0 -91.0 -90.0 -89.0 -88.0 -87.0 -86.0 -85.0 -84.0 -83.0 -82.0 -81.0 -80.0 -79.0 -78.0 -77.0 -76.0 -75.0 -74.0 -73.0 -72.0 -71.0 -70.0 -69.0 -68.0 -67.0 -66.0 -65.0 -64.0 -63.0 -62.0 -61.0 -60.0 -59.0 -58.0 -57.0 -56.0 -55.0 -54.0 -53.0 -52.0 -51.0 -50.0 -49.0 -48.0 -47.0 -46.0 -45.0 -44.0 -43.0 -42.0 -41.0 -40.0 -39.0 -38.0 -37.0 -36.0 -35.0 -34.0 -33.0 -32.0 -31.0 -30.0 -29.0 -28.0 -27.0 -26.0 -25.0 -24.0 -23.0 -22.0 -21.0 -20.0 -19.0 -18.0 -17.0 -16.0 -15.0 -14.0 -13.0 -12.0 -11.0 -10.0 -9.0 -8.0 -7.0 -6.0 -5.0 -4.0 -3.0 -2.0 -1.0 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0 10.0 11.0 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0 20.0 21.0 22.0 23.0 24.0 25.0 26.0 27.0 28.0 29.0 30.0 31.0 32.0 33.0 34.0 35.0 36.0 37.0 38.0 39.0 40.0 41.0 42.0 43.0 44.0 45.0 46.0 47.0 48.0 49.0 50.0 51.0 52.0 53.0 54.0 55.0 56.0 57.0 58.0 59.0 60.0 61.0 62.0 63.0 64.0 65.0 66.0 67.0 68.0 69.0 70.0 71.0 72.0 73.0 74.0 75.0 76.0 77.0 78.0 79.0 80.0 81.0 82.0 83.0 84.0 85.0 86.0 87.0 88.0 89.0 90.0 91.0 92.0 93.0 94.0 95.0 96.0 97.0 98.0 99.0 100.0 101.0 102.0 103.0 104.0 105.0 106.0 107.0 108.0 109.0 110.0 111.0 112.0 113.0 114.0 115.0 116.0 117.0 118.0 119.0 120.0 121.0 122.0 123.0 124.0 \nReadVelModel: grid nodes in z-dir\n\t -4.0 -3.0 -2.0 -1.0 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0 10.0 11.0 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0 20.0 21.0 22.0 23.0 24.0 25.0 26.0 27.0 28.0 29.0 30.0 31.0 32.0 33.0 34.0 35.0 36.0 37.0 38.0 39.0 40.0 41.0 42.0 43.0 44.0 45.0 46.0 47.0 48.0 49.0 50.0 51.0 52.0 53.0 54.0 55.0 56.0 57.0 58.0 59.0 60.0 61.0 62.0 63.0 64.0 65.0 66.0 67.0 68.0 69.0 70.0 71.0 72.0 73.0 74.0 75.0 76.0 77.0 78.0 79.0 80.0 81.0 82.0 83.0 84.0 85.0 86.0 87.0 88.0 89.0 90.0 91.0 92.0 93.0 94.0 95.0 96.0 97.0 98.0 99.0 100.0 \n')
### Grid2Time
# create directory
os.makedirs("./time",exist_ok=True)
# this line is specific to run NLL on linux subsystem on windows
cp = subprocess.run(["wsl", "bash", "-ic", f"Grid2Time ./out_NLL_config_files/{config_fileP}"], capture_output=True)
print(cp)
cp = subprocess.run(["wsl", "bash", "-ic", f"Grid2Time ./out_NLL_config_files/{config_fileS}"], capture_output=True)
print(cp)
# this is for unix based
# cp = subprocess.run([f"Grid2Time ./out_NLL_config_files/{config_fileP}"], capture_output=True, shell=True)
# print(cp)
# cp = subprocess.run([f"Grid2Time ./out_NLL_config_files/{config_fileS}"], capture_output=True, shell=True)
# print(cp)
CompletedProcess(args=['Grid2Time ./out_NLL_config_files/ttgrid_runfile_poly2_S.in'], returncode=0, stdout=b'Grid2Time (NonLinLoc v7.00.16 17Apr2023) \nINFO: Saving model file to out directory: ./time/delph_poly2_lcc.S.mod.buf\n\nCalculating travel times for source: CARB X -53.6617 Y -112.2454 Z -0.8725 (lat/lon/depth 46.988080 -122.005428 -0.872470) ...\nSource: Velocity: 3.021250 km/sec GridLoc: ix=70.338310 iy=11.754613 iz=3.127530\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.CARB.*\n\nCalculating travel times for source: CRBN X -50.2856 Y -112.2931 Z -0.5001 (lat/lon/depth 46.987920 -121.961043 -0.500080) ...\nSource: Velocity: 3.042500 km/sec GridLoc: ix=73.714432 iy=11.706873 iz=3.499920\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.CRBN.*\n\nCalculating travel times for source: PR01 X -56.1910 Y -120.9179 Z -0.6480 (lat/lon/depth 46.909858 -122.037585 -0.648000) ...\nSource: Velocity: 3.087500 km/sec GridLoc: ix=67.808968 iy=3.082126 iz=3.352000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.PR01.*\n\nCalculating travel times for source: PR02 X -57.0286 Y -119.9983 Z -0.4610 (lat/lon/depth 46.918057 -122.048696 -0.461000) ...\nSource: Velocity: 3.092500 km/sec GridLoc: ix=66.971375 iy=4.001687 iz=3.539000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.PR02.*\n\nCalculating travel times for source: PR03 X -55.8251 Y -121.6628 Z -0.5230 (lat/lon/depth 46.903189 -122.032689 -0.523000) ...\nSource: Velocity: 3.078750 km/sec GridLoc: ix=68.174942 iy=2.337167 iz=3.477000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.PR03.*\n\nCalculating travel times for source: PR04 X -52.4395 Y -118.7652 Z -0.9080 (lat/lon/depth 46.929534 -121.988596 -0.908000) ...\nSource: Velocity: 3.042500 km/sec GridLoc: ix=71.560532 iy=5.234823 iz=3.092000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.PR04.*\n\nCalculating travel times for source: RUSH X -49.0825 Y -121.7646 Z -1.2350 (lat/lon/depth 46.902816 -121.944188 -1.235000) ...\nSource: Velocity: 3.027500 km/sec GridLoc: ix=74.917480 iy=2.235432 iz=2.765000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.RUSH.*\n\nCalculating travel times for source: STYX X -59.4036 Y -114.9229 Z -0.5683 (lat/lon/depth 46.963498 -122.080548 -0.568310) ...\nSource: Velocity: 3.075000 km/sec GridLoc: ix=64.596436 iy=9.077065 iz=3.431690\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.STYX.*\n\nCalculating travel times for source: TRON X -66.5734 Y -111.0725 Z -0.2527 (lat/lon/depth 46.997440 -122.175325 -0.252740) ...\nSource: Velocity: 3.096250 km/sec GridLoc: ix=57.426613 iy=12.927500 iz=3.747260\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.TRON.*\n\nCalculating travel times for source: VOIT X -51.9995 Y -114.7015 Z -0.9771 (lat/lon/depth 46.966122 -121.983292 -0.977100) ...\nSource: Velocity: 3.025000 km/sec GridLoc: ix=72.000473 iy=9.298505 iz=3.022900\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.VOIT.*\n\nCalculating travel times for source: EVER1 X -82.6420 Y 10.9861 Z -0.0320 (lat/lon/depth 48.093472 -122.409671 -0.032000) ...\nSource: Velocity: 2.877500 km/sec GridLoc: ix=41.358017 iy=134.986145 iz=3.968000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.EVER1.*\n\nCalculating travel times for source: EVER3 X -69.3321 Y 6.3211 Z -0.0730 (lat/lon/depth 48.053097 -122.230217 -0.073000) ...\nSource: Velocity: 2.750000 km/sec GridLoc: ix=54.667912 iy=130.321060 iz=3.927000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.EVER3.*\n\nCalculating travel times for source: EVER4 X -95.2135 Y 2.9629 Z -0.0210 (lat/lon/depth 48.019560 -122.576662 -0.021000) ...\nSource: Velocity: 2.932500 km/sec GridLoc: ix=28.786488 iy=126.962906 iz=3.979000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.EVER4.*\n\nCalculating travel times for source: EVER6 X -72.2716 Y -11.7126 Z -0.1580 (lat/lon/depth 47.890566 -122.266617 -0.158000) ...\nSource: Velocity: 2.577500 km/sec GridLoc: ix=51.728443 iy=112.287415 iz=3.842000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.EVER6.*\n\nCalculating travel times for source: EVER7 X -57.9413 Y 17.0718 Z -0.1200 (lat/lon/depth 48.150930 -122.078857 -0.120000) ...\nSource: Velocity: 3.100000 km/sec GridLoc: ix=66.058723 iy=141.071823 iz=3.880000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.EVER7.*\n\nCalculating travel times for source: EVER8 X -48.3373 Y 25.3877 Z -0.1400 (lat/lon/depth 48.226528 -121.950709 -0.140000) ...\nSource: Velocity: 3.225000 km/sec GridLoc: ix=75.662674 iy=149.387680 iz=3.860000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.EVER8.*\n\nCalculating travel times for source: SEW X -71.5418 Y -49.6398 Z -0.0110 (lat/lon/depth 47.549498 -122.250603 -0.011000) ...\nSource: Velocity: 2.337500 km/sec GridLoc: ix=52.458221 iy=74.360237 iz=3.989000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.SEW.*\n\nCalculating travel times for source: WE2 X -81.5676 Y -46.7519 Z -0.1160 (lat/lon/depth 47.574283 -122.384343 -0.116000) ...\nSource: Velocity: 2.377500 km/sec GridLoc: ix=42.432446 iy=77.248055 iz=3.884000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.WE2.*\n\nCalculating travel times for source: B941 X -69.9113 Y -112.2461 Z -0.1510 (lat/lon/depth 46.986534 -122.219025 -0.151000) ...\nSource: Velocity: 3.090000 km/sec GridLoc: ix=54.088692 iy=11.753934 iz=3.849000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.B941.*\n\nCalculating travel times for source: B05D X -59.1139 Y 29.6726 Z -0.1530 (lat/lon/depth 48.264159 -122.096367 -0.153000) ...\nSource: Velocity: 3.203750 km/sec GridLoc: ix=64.886124 iy=153.672607 iz=3.847000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.B05D.*\n\nCalculating travel times for source: C06D X 30.3252 Y -8.4957 Z -0.5440 (lat/lon/depth 47.922861 -120.894163 -0.544000) ...\nSource: Velocity: 3.118750 km/sec GridLoc: ix=154.325150 iy=115.504311 iz=3.456000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.C06D.*\n\nCalculating travel times for source: ALKI X -84.0868 Y -46.6500 Z -0.0010 (lat/lon/depth 47.574876 -122.417849 -0.001000) ...\nSource: Velocity: 2.440000 km/sec GridLoc: ix=39.913177 iy=77.350006 iz=3.999000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.ALKI.*\n\nCalculating travel times for source: ATES X -56.5017 Y 26.5401 Z -0.0626 (lat/lon/depth 48.236222 -122.060763 -0.062600) ...\nSource: Velocity: 3.209999 km/sec GridLoc: ix=67.498306 iy=150.540115 iz=3.937400\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.ATES.*\n\nCalculating travel times for source: BERY X -59.1138 Y 29.6727 Z -0.1496 (lat/lon/depth 48.264160 -122.096366 -0.149600) ...\nSource: Velocity: 3.203750 km/sec GridLoc: ix=64.886200 iy=153.672714 iz=3.850400\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.BERY.*\n\nCalculating travel times for source: BHAM X -82.1609 Y 88.1552 Z -0.1165 (lat/lon/depth 48.787539 -122.418241 -0.116500) ...\nSource: Velocity: 3.082500 km/sec GridLoc: ix=41.839142 iy=212.155197 iz=3.883500\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.BHAM.*\n\nCalculating travel times for source: BHW X -54.6978 Y -17.9432 Z -0.1520 (lat/lon/depth 47.836263 -122.030798 -0.152000) ...\nSource: Velocity: 2.540000 km/sec GridLoc: ix=69.302231 iy=106.056808 iz=3.848000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.BHW.*\n\nCalculating travel times for source: CBS X 94.1766 Y -20.9651 Z -1.0670 (lat/lon/depth 47.804501 -120.042472 -1.067000) ...\nSource: Velocity: 3.227500 km/sec GridLoc: ix=218.176559 iy=103.034851 iz=2.933000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.CBS.*\n\nCalculating travel times for source: CMW X -60.7302 Y 47.4229 Z -1.1900 (lat/lon/depth 48.423653 -122.120685 -1.190000) ...\nSource: Velocity: 3.210000 km/sec GridLoc: ix=63.269840 iy=171.422897 iz=2.810000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.CMW.*\n\nCalculating travel times for source: COWS X -47.3770 Y -36.9955 Z -0.1332 (lat/lon/depth 47.665465 -121.930910 -0.133200) ...\nSource: Velocity: 2.512500 km/sec GridLoc: ix=76.622955 iy=87.004463 iz=3.866800\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.COWS.*\n\nCalculating travel times for source: DART X -22.5936 Y 27.1076 Z -0.1763 (lat/lon/depth 48.243433 -121.604248 -0.176300) ...\nSource: Velocity: 3.232500 km/sec GridLoc: ix=101.406425 iy=151.107605 iz=3.823700\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.DART.*\n\nCalculating travel times for source: DONK X -63.4297 Y 47.4874 Z -0.8928 (lat/lon/depth 48.423970 -122.157172 -0.892800) ...\nSource: Velocity: 3.205000 km/sec GridLoc: ix=60.570335 iy=171.487442 iz=3.107200\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.DONK.*\n\nCalculating travel times for source: ELL X 55.8032 Y -120.9872 Z -0.7890 (lat/lon/depth 46.909268 -120.567514 -0.789000) ...\nSource: Velocity: 2.496250 km/sec GridLoc: ix=179.803207 iy=3.012789 iz=3.211000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.ELL.*\n\nCalculating travel times for source: ELW X -43.1540 Y -56.0977 Z -0.3200 (lat/lon/depth 47.493930 -121.872785 -0.320000) ...\nSource: Velocity: 2.445000 km/sec GridLoc: ix=80.846001 iy=67.902321 iz=3.680000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.ELW.*\n\nCalculating travel times for source: ETW X 72.7425 Y -43.5303 Z -1.4747 (lat/lon/depth 47.604318 -120.332425 -1.474700) ...\nSource: Velocity: 3.220000 km/sec GridLoc: ix=196.742508 iy=80.469681 iz=2.525300\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.ETW.*\n\nCalculating travel times for source: FMW X -28.2826 Y -117.5786 Z -1.8970 (lat/lon/depth 46.941701 -121.671469 -1.897000) ...\nSource: Velocity: 3.152500 km/sec GridLoc: ix=95.717354 iy=6.421391 iz=2.103000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.FMW.*\n\nCalculating travel times for source: GHW X -73.9988 Y -106.1166 Z -0.2611 (lat/lon/depth 47.041216 -122.273769 -0.261100) ...\nSource: Velocity: 2.685000 km/sec GridLoc: ix=50.001244 iy=17.883411 iz=3.738900\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.GHW.*\n\nCalculating travel times for source: GPW X 12.0719 Y 13.1246 Z -2.3540 (lat/lon/depth 48.117944 -121.137834 -2.354000) ...\nSource: Velocity: 3.200000 km/sec GridLoc: ix=136.071915 iy=137.124634 iz=1.646000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.GPW.*\n\nCalculating travel times for source: GRCC X -66.5599 Y -76.0870 Z -0.1340 (lat/lon/depth 47.312136 -122.180401 -0.134000) ...\nSource: Velocity: 1.780000 km/sec GridLoc: ix=57.440071 iy=47.913010 iz=3.866000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.GRCC.*\n\nCalculating travel times for source: GSM X -37.5836 Y -88.4033 Z -1.3247 (lat/lon/depth 47.203674 -121.796091 -1.324700) ...\nSource: Velocity: 2.297500 km/sec GridLoc: ix=86.416428 iy=35.596748 iz=2.675300\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.GSM.*\n\nCalculating travel times for source: HANS X -94.9102 Y -9.5346 Z -0.0775 (lat/lon/depth 47.907202 -122.569837 -0.077500) ...\nSource: Velocity: 2.822500 km/sec GridLoc: ix=29.089781 iy=114.465363 iz=3.922500\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.HANS.*\n\nCalculating travel times for source: HILL X -84.9787 Y 43.7822 Z -0.0381 (lat/lon/depth 48.388126 -122.447598 -0.038100) ...\nSource: Velocity: 3.065000 km/sec GridLoc: ix=39.021317 iy=167.782227 iz=3.961900\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.HILL.*\n\nCalculating travel times for source: HOPR X 30.3253 Y -8.4958 Z -0.5968 (lat/lon/depth 47.922860 -120.894161 -0.596800) ...\nSource: Velocity: 3.118750 km/sec GridLoc: ix=154.325302 iy=115.504196 iz=3.403200\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.HOPR.*\n\nCalculating travel times for source: HTW X -35.1262 Y -21.7169 Z -0.8330 (lat/lon/depth 47.803687 -121.769011 -0.833000) ...\nSource: Velocity: 2.945000 km/sec GridLoc: ix=88.873756 iy=102.283081 iz=3.167000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.HTW.*\n\nCalculating travel times for source: JCW X -46.6589 Y 21.9107 Z -0.7920 (lat/lon/depth 48.195380 -121.927734 -0.792000) ...\nSource: Velocity: 3.260000 km/sec GridLoc: ix=77.341118 iy=145.910721 iz=3.208000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.JCW.*\n\nCalculating travel times for source: KNGST X -90.9994 Y -21.2343 Z -0.0186 (lat/lon/depth 47.802539 -122.515055 -0.018600) ...\nSource: Velocity: 2.800000 km/sec GridLoc: ix=33.000587 iy=102.765717 iz=3.981400\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.KNGST.*\n\nCalculating travel times for source: LOKMT X 38.7257 Y -94.4273 Z -0.8241 (lat/lon/depth 47.149418 -120.789360 -0.824100) ...\nSource: Velocity: 2.621250 km/sec GridLoc: ix=162.725739 iy=29.572676 iz=3.175900\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.LOKMT.*\n\nCalculating travel times for source: LTY X 47.9632 Y -82.6995 Z -0.8070 (lat/lon/depth 47.254297 -120.666288 -0.807000) ...\nSource: Velocity: 2.860000 km/sec GridLoc: ix=171.963196 iy=41.300507 iz=3.193000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.LTY.*\n\nCalculating travel times for source: MANO X 43.7949 Y -116.4632 Z -1.2000 (lat/lon/depth 46.950878 -120.724688 -1.200000) ...\nSource: Velocity: 2.117500 km/sec GridLoc: ix=167.794922 iy=7.536752 iz=2.800000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.MANO.*\n\nCalculating travel times for source: MBW X -44.1826 Y 87.3566 Z -1.6760 (lat/lon/depth 48.784166 -121.901287 -1.676000) ...\nSource: Velocity: 3.200000 km/sec GridLoc: ix=79.817413 iy=211.356552 iz=2.324000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.MBW.*\n\nCalculating travel times for source: MBW2 X -45.5769 Y 89.2539 Z -1.5906 (lat/lon/depth 48.801129 -121.920470 -1.590600) ...\nSource: Velocity: 3.162500 km/sec GridLoc: ix=78.423050 iy=213.253876 iz=2.409400\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.MBW2.*\n\nCalculating travel times for source: MEAN X -75.5788 Y -41.4838 Z -0.1100 (lat/lon/depth 47.622399 -122.305652 -0.110000) ...\nSource: Velocity: 2.477500 km/sec GridLoc: ix=48.421234 iy=82.516174 iz=3.890000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.MEAN.*\n\nCalculating travel times for source: MORSE X -91.1794 Y -33.8773 Z -0.0359 (lat/lon/depth 47.688797 -122.514797 -0.035900) ...\nSource: Velocity: 2.600000 km/sec GridLoc: ix=32.820629 iy=90.122711 iz=3.964100\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.MORSE.*\n\nCalculating travel times for source: MRBL X -13.6351 Y 57.6650 Z -0.0750 (lat/lon/depth 48.518533 -121.484598 -0.075000) ...\nSource: Velocity: 3.067500 km/sec GridLoc: ix=110.364853 iy=181.664978 iz=3.925000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.MRBL.*\n\nCalculating travel times for source: MULN X -56.4739 Y 59.8309 Z -0.1017 (lat/lon/depth 48.535641 -122.064835 -0.101700) ...\nSource: Velocity: 3.141250 km/sec GridLoc: ix=67.526131 iy=183.830887 iz=3.898300\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.MULN.*\n\nCalculating travel times for source: NEL X 71.5822 Y 9.1149 Z -1.4999 (lat/lon/depth 48.077978 -120.339130 -1.499900) ...\nSource: Velocity: 3.115000 km/sec GridLoc: ix=195.582169 iy=133.114944 iz=2.500100\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.NEL.*\n\nCalculating travel times for source: PASS X -57.4942 Y 111.3435 Z -0.1754 (lat/lon/depth 48.998789 -122.085763 -0.175400) ...\nSource: Velocity: 2.795000 km/sec GridLoc: ix=66.505775 iy=235.343536 iz=3.824600\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.PASS.*\n\nCalculating travel times for source: PCFR X -86.9268 Y -111.6035 Z -0.1343 (lat/lon/depth 46.990267 -122.442799 -0.134300) ...\nSource: Velocity: 2.687500 km/sec GridLoc: ix=37.073162 iy=12.396523 iz=3.865700\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.PCFR.*\n\nCalculating travel times for source: PNLK X -55.2820 Y -46.2650 Z -0.1280 (lat/lon/depth 47.581453 -122.034995 -0.128000) ...\nSource: Velocity: 2.277500 km/sec GridLoc: ix=68.718040 iy=77.735001 iz=3.872000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.PNLK.*\n\nCalculating travel times for source: RATT X -37.9181 Y -63.7654 Z -0.4424 (lat/lon/depth 47.425284 -121.802626 -0.442400) ...\nSource: Velocity: 2.370000 km/sec GridLoc: ix=86.081947 iy=60.234631 iz=3.557600\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.RATT.*\n\nCalculating travel times for source: RAW X -47.8158 Y -73.5236 Z -0.2080 (lat/lon/depth 47.336848 -121.932760 -0.208000) ...\nSource: Velocity: 2.247500 km/sec GridLoc: ix=76.184212 iy=50.476353 iz=3.792000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.RAW.*\n\nCalculating travel times for source: RMW X -38.1967 Y -59.9754 Z -1.0240 (lat/lon/depth 47.459360 -121.806650 -1.024000) ...\nSource: Velocity: 2.412500 km/sec GridLoc: ix=85.803314 iy=64.024559 iz=2.976000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.RMW.*\n\nCalculating travel times for source: RPW X -15.8995 Y 49.8694 Z -0.8500 (lat/lon/depth 48.448366 -121.514960 -0.850000) ...\nSource: Velocity: 3.075000 km/sec GridLoc: ix=108.100502 iy=173.869400 iz=3.150000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.RPW.*\n\nCalculating travel times for source: RPW2 X -16.7659 Y 49.5059 Z -0.6940 (lat/lon/depth 48.445074 -121.526659 -0.694000) ...\nSource: Velocity: 3.075000 km/sec GridLoc: ix=107.234116 iy=173.505859 iz=3.306000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.RPW2.*\n\nCalculating travel times for source: RVC X -51.3291 Y -117.1843 Z -1.0000 (lat/lon/depth 46.943843 -121.974197 -1.000000) ...\nSource: Velocity: 3.038750 km/sec GridLoc: ix=72.670952 iy=6.815744 iz=3.000000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.RVC.*\n\nCalculating travel times for source: SALO X -80.1666 Y -4.8511 Z -0.1469 (lat/lon/depth 47.951343 -122.373477 -0.146900) ...\nSource: Velocity: 2.722500 km/sec GridLoc: ix=43.833378 iy=119.148941 iz=3.853100\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.SALO.*\n\nCalculating travel times for source: SAXON X -63.4175 Y 76.3521 Z -0.1108 (lat/lon/depth 48.683562 -122.161366 -0.110800) ...\nSource: Velocity: 2.967500 km/sec GridLoc: ix=60.582539 iy=200.352081 iz=3.889200\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.SAXON.*\n\nCalculating travel times for source: SBES X -82.1035 Y 86.0289 Z -0.1190 (lat/lon/depth 48.768426 -122.417040 -0.119000) ...\nSource: Velocity: 3.067500 km/sec GridLoc: ix=41.896538 iy=210.028885 iz=3.881000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.SBES.*\n\nCalculating travel times for source: SHUK X -27.6794 Y 94.9359 Z -1.5160 (lat/lon/depth 48.853267 -121.677202 -1.516000) ...\nSource: Velocity: 3.306250 km/sec GridLoc: ix=96.320602 iy=218.935898 iz=2.484000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.SHUK.*\n\nCalculating travel times for source: SLF X 57.7730 Y -26.3409 Z -1.7387 (lat/lon/depth 47.760455 -120.529240 -1.738700) ...\nSource: Velocity: 3.125000 km/sec GridLoc: ix=181.772980 iy=97.659096 iz=2.261300\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.SLF.*\n\nCalculating travel times for source: SP2 X -71.4448 Y -48.9081 Z -0.0222 (lat/lon/depth 47.556089 -122.249434 -0.022200) ...\nSource: Velocity: 2.370000 km/sec GridLoc: ix=52.555229 iy=75.091850 iz=3.977800\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.SP2.*\n\nCalculating travel times for source: STOR X -52.2032 Y -90.0474 Z -0.2725 (lat/lon/depth 47.187874 -121.988863 -0.272500) ...\nSource: Velocity: 2.290000 km/sec GridLoc: ix=71.796776 iy=33.952606 iz=3.727500\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.STOR.*\n\nCalculating travel times for source: TBLMT X 53.1981 Y -91.7062 Z -1.0883 (lat/lon/depth 47.172872 -120.598209 -1.088300) ...\nSource: Velocity: 2.770000 km/sec GridLoc: ix=177.198059 iy=32.293831 iz=2.911700\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.TBLMT.*\n\nCalculating travel times for source: TBM X 53.1321 Y -92.0682 Z -1.0060 (lat/lon/depth 47.169621 -120.599122 -1.006000) ...\nSource: Velocity: 2.760000 km/sec GridLoc: ix=177.132141 iy=31.931797 iz=2.994000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.TBM.*\n\nCalculating travel times for source: TOLT X -29.2404 Y -33.8776 Z -0.5410 (lat/lon/depth 47.694591 -121.689603 -0.541000) ...\nSource: Velocity: 2.886250 km/sec GridLoc: ix=94.759651 iy=90.122375 iz=3.459000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.TOLT.*\n\nCalculating travel times for source: TWISP X 87.3175 Y 51.9393 Z -0.7562 (lat/lon/depth 48.461168 -120.119135 -0.756200) ...\nSource: Velocity: 2.981250 km/sec GridLoc: ix=211.317505 iy=175.939301 iz=3.243800\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.TWISP.*\n\nCalculating travel times for source: TWW X 32.6563 Y -95.7556 Z -1.0270 (lat/lon/depth 47.137803 -120.869488 -1.027000) ...\nSource: Velocity: 2.430000 km/sec GridLoc: ix=156.656296 iy=28.244408 iz=2.973000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.TWW.*\n\nCalculating travel times for source: VVHS X -87.1397 Y -63.4690 Z -0.0960 (lat/lon/depth 47.423190 -122.455077 -0.096000) ...\nSource: Velocity: 2.257500 km/sec GridLoc: ix=36.860329 iy=60.530983 iz=3.904000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.VVHS.*\n\nCalculating travel times for source: WAT2 X 89.1241 Y -41.5566 Z -0.8751 (lat/lon/depth 47.620013 -120.114154 -0.875100) ...\nSource: Velocity: 3.230000 km/sec GridLoc: ix=213.124146 iy=82.443405 iz=3.124900\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.WAT2.*\n\nCalculating travel times for source: WRW X 31.2091 Y -15.8586 Z -1.1590 (lat/lon/depth 47.856587 -120.882867 -1.159000) ...\nSource: Velocity: 3.100000 km/sec GridLoc: ix=155.209106 iy=108.141411 iz=2.841000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.WRW.*\n\nCalculating travel times for source: YELM X -98.2790 Y -117.0322 Z -0.1029 (lat/lon/depth 46.939828 -122.590821 -0.102900) ...\nSource: Velocity: 2.560000 km/sec GridLoc: ix=25.721010 iy=6.967806 iz=3.897100\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.YELM.*\n\nCalculating travel times for source: VDB X -58.7662 Y 114.4393 Z -0.4040 (lat/lon/depth 49.026508 -122.103587 -0.404000) ...\nSource: Velocity: 2.800000 km/sec GridLoc: ix=65.233788 iy=238.439301 iz=3.596000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.VDB.*\n\nCalculating travel times for source: VDEB X -55.3666 Y 117.8556 Z -0.3510 (lat/lon/depth 49.057536 -122.057562 -0.351000) ...\nSource: Velocity: 2.790000 km/sec GridLoc: ix=68.633392 iy=241.855652 iz=3.649000\nFinished calculation, time grid output files: ./time/delph_poly2_lcc.S.VDEB.*\n', stderr=b'')