├── .gitignore ├── AUTHORS ├── CITATION.cff ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile ├── README.md ├── TODO ├── doc ├── usage.md └── working_scheme.pdf ├── plot ├── NLLGrid.py ├── parse_geo_data.py ├── parse_stat_file.py ├── plot.py └── rtloc_cmap.py ├── src ├── GetRms.c ├── GridLib.c ├── GridLib.h ├── GridMemLib.c ├── GridMemLib.h ├── LocStat.c ├── OctTreeSearch.c ├── Read4dBuf.c ├── ReadCtrlFile.c ├── SearchEdt.c ├── cropgrid.c ├── edt.c ├── geo.c ├── geo.h ├── geometry.h ├── initLocGrid.c ├── map_project.c ├── map_project.h ├── nrmatrix.c ├── nrmatrix.h ├── nrutil.c ├── nrutil.h ├── octtree.c ├── octtree.h ├── printlog.c ├── printstat.c ├── ran1.c ├── ran1.h ├── rtloc.c ├── rtloclib.h ├── stat_lookup.c ├── util.c └── util.h ├── testrun ├── .seismicitydefaults ├── README.md ├── data_geog │ ├── basilicata.lonlat │ ├── basilicata.xy │ ├── campania.lonlat │ ├── campania.xy │ ├── puglia.lonlat │ └── puglia.xy ├── loc │ └── .gitignore ├── model │ └── .gitignore ├── obs │ └── picks.obs ├── run │ ├── Grid2Time.in │ ├── NLLoc.in │ ├── Time2EQ.in │ ├── Vel2Grid.in │ └── irpinia.run ├── run01.rtloc.ctrl ├── test.sh └── time │ └── .gitignore └── utils ├── GridGraphLib.c ├── GridGraphLib.h ├── Makefile ├── stat2ellipse.c ├── vector.c └── vector.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/AUTHORS -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/CITATION.cff -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/TODO -------------------------------------------------------------------------------- /doc/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/doc/usage.md -------------------------------------------------------------------------------- /doc/working_scheme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/doc/working_scheme.pdf -------------------------------------------------------------------------------- /plot/NLLGrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/plot/NLLGrid.py -------------------------------------------------------------------------------- /plot/parse_geo_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/plot/parse_geo_data.py -------------------------------------------------------------------------------- /plot/parse_stat_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/plot/parse_stat_file.py -------------------------------------------------------------------------------- /plot/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/plot/plot.py -------------------------------------------------------------------------------- /plot/rtloc_cmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/plot/rtloc_cmap.py -------------------------------------------------------------------------------- /src/GetRms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/GetRms.c -------------------------------------------------------------------------------- /src/GridLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/GridLib.c -------------------------------------------------------------------------------- /src/GridLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/GridLib.h -------------------------------------------------------------------------------- /src/GridMemLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/GridMemLib.c -------------------------------------------------------------------------------- /src/GridMemLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/GridMemLib.h -------------------------------------------------------------------------------- /src/LocStat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/LocStat.c -------------------------------------------------------------------------------- /src/OctTreeSearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/OctTreeSearch.c -------------------------------------------------------------------------------- /src/Read4dBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/Read4dBuf.c -------------------------------------------------------------------------------- /src/ReadCtrlFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/ReadCtrlFile.c -------------------------------------------------------------------------------- /src/SearchEdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/SearchEdt.c -------------------------------------------------------------------------------- /src/cropgrid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/cropgrid.c -------------------------------------------------------------------------------- /src/edt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/edt.c -------------------------------------------------------------------------------- /src/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/geo.c -------------------------------------------------------------------------------- /src/geo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/geo.h -------------------------------------------------------------------------------- /src/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/geometry.h -------------------------------------------------------------------------------- /src/initLocGrid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/initLocGrid.c -------------------------------------------------------------------------------- /src/map_project.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/map_project.c -------------------------------------------------------------------------------- /src/map_project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/map_project.h -------------------------------------------------------------------------------- /src/nrmatrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/nrmatrix.c -------------------------------------------------------------------------------- /src/nrmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/nrmatrix.h -------------------------------------------------------------------------------- /src/nrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/nrutil.c -------------------------------------------------------------------------------- /src/nrutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/nrutil.h -------------------------------------------------------------------------------- /src/octtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/octtree.c -------------------------------------------------------------------------------- /src/octtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/octtree.h -------------------------------------------------------------------------------- /src/printlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/printlog.c -------------------------------------------------------------------------------- /src/printstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/printstat.c -------------------------------------------------------------------------------- /src/ran1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/ran1.c -------------------------------------------------------------------------------- /src/ran1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/ran1.h -------------------------------------------------------------------------------- /src/rtloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/rtloc.c -------------------------------------------------------------------------------- /src/rtloclib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/rtloclib.h -------------------------------------------------------------------------------- /src/stat_lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/stat_lookup.c -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/src/util.h -------------------------------------------------------------------------------- /testrun/.seismicitydefaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/testrun/.seismicitydefaults -------------------------------------------------------------------------------- /testrun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/testrun/README.md -------------------------------------------------------------------------------- /testrun/data_geog/basilicata.lonlat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/testrun/data_geog/basilicata.lonlat -------------------------------------------------------------------------------- /testrun/data_geog/basilicata.xy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/testrun/data_geog/basilicata.xy -------------------------------------------------------------------------------- /testrun/data_geog/campania.lonlat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/testrun/data_geog/campania.lonlat -------------------------------------------------------------------------------- /testrun/data_geog/campania.xy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/testrun/data_geog/campania.xy -------------------------------------------------------------------------------- /testrun/data_geog/puglia.lonlat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/testrun/data_geog/puglia.lonlat -------------------------------------------------------------------------------- /testrun/data_geog/puglia.xy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/testrun/data_geog/puglia.xy -------------------------------------------------------------------------------- /testrun/loc/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /testrun/model/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /testrun/obs/picks.obs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/testrun/obs/picks.obs -------------------------------------------------------------------------------- /testrun/run/Grid2Time.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/testrun/run/Grid2Time.in -------------------------------------------------------------------------------- /testrun/run/NLLoc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/testrun/run/NLLoc.in -------------------------------------------------------------------------------- /testrun/run/Time2EQ.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/testrun/run/Time2EQ.in -------------------------------------------------------------------------------- /testrun/run/Vel2Grid.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/testrun/run/Vel2Grid.in -------------------------------------------------------------------------------- /testrun/run/irpinia.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/testrun/run/irpinia.run -------------------------------------------------------------------------------- /testrun/run01.rtloc.ctrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/testrun/run01.rtloc.ctrl -------------------------------------------------------------------------------- /testrun/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/testrun/test.sh -------------------------------------------------------------------------------- /testrun/time/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /utils/GridGraphLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/utils/GridGraphLib.c -------------------------------------------------------------------------------- /utils/GridGraphLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/utils/GridGraphLib.h -------------------------------------------------------------------------------- /utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/utils/Makefile -------------------------------------------------------------------------------- /utils/stat2ellipse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/utils/stat2ellipse.c -------------------------------------------------------------------------------- /utils/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/utils/vector.c -------------------------------------------------------------------------------- /utils/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claudiodsf/rtloc/HEAD/utils/vector.h --------------------------------------------------------------------------------