forked from ut-beg-texnet/NonLinLoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
90 lines (81 loc) · 3.47 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
======================================================
>>> Important note: Covariance errors (2014.10.30)
======================================================
Applies to: LOCSEARCH MET and LOCSEARCH OCT
The algorithm for calculating the covariance of the PDF scatter sample used in NLLoc
was subject to precision errors when the expectation of the scatter sample (e.g. the event location)
was far from the origin of the NLL coordinates system relative to the extent of the PDF scatter sample.
Several tests indicate that "Far from the origin" is of the order of 1000 times the extent of the PDF scatter sample.
Errors in covariance will affect the ellipsoid and ellipse, standard-errors (erh, erz, etc.).
For teleseismic locations (NLL GLOBAL mode) errors with the old algorithm occur primarily in
longitude (X), increasing with expectation longitude and occasionally becoming large towards longitude +/-180deg.
For local studies in rectangular coordinates where the NLL coordinates origin is far from the network
and target sources, the errors may be large. This may be the case, for example, for a micro-seismic study
using a regional, metric-based cartesian grid coordinate system with origin far from the study area.
For local studies in rectangular coordinates where the NLL coordinates origin is within or near the network
and target sources, the errors should be very small or negligible.
The algorithm for calculating the covariance of the PDF scatter sample used in NLLoc v.6.03.00 and later does not
have these precision errors and is valid for locations far from the origin of the coordinate system.
======================================================
======================================================
Complete NonLinLoc distribution software package
======================================================
Unpack source files: unpack: NLL[VER]_src.tgz
Set bin path:
export MYBIN=<path>/bin
To build:
cd src
OSX, Solaris:
make all
Linux:
make -R all
See http://alomax.net/nlloc and http://alomax.net/nlloc -> tutorials for further information
======================================================
===========================================================================
NLLoc_func_test program demonstrating running NLLoc through a function call
===========================================================================
Unpack source files: unpack: NLL[VER]_src.tgz
Set bin path:
export MYBIN=<path>/bin
To build:
cd src
In Makefile, uncomment the line:
GNU_SOURCE=-D _GNU_SOURCE
and comment the line:
#GNU_SOURCE=
To build:
OSX, Solaris (not tested):
make NLLoc_func_test_
Linux:
make -R NLLoc_func_test_
cd ..
Unpack demo files: unpack: NLL[VER]_func.tgz
To run:
cd nll_func
./run_func.sh
# clean
rm -rf out/*
cd ..
See nll_func/run_func.sh for more detail.
===========================================================================
===========================================================================
ttime_func_test program demonstrating reading values from 2D or 3D grid file through a function call
===========================================================================
Unpack source files: unpack: NLL[VER]_src.tgz
Set bin path:
export MYBIN=<path>/bin
To build:
cd src
To build:
OSX, Solaris (not tested):
make ttime_func_test
Linux:
make -R ttime_func_test
cd ..
Unpack demo files: unpack: NLL[VER]_func.tgz
To run:
cd ttime_func
./run_func.sh
cd ..
See ttime_func/run_func.sh for more detail.
===========================================================================