Changeset 191
- Timestamp:
- 02/02/2010 04:10:30 PM (13 years ago)
- Location:
- SH_SHM/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
SH_SHM/trunk/inputs/LocalSensitivities.dat
r183 r191 99 99 ! zunächst Test der Datenübertragung mit Funkrouter, 500 Hz 100 100 ! Der Austausch des LE3D-5s durch LE3Dlite ändert nichts an der Sensitivity 101 han7-dh-? 16-jan-2010_12:00 ... 3.9725 102 han8-dh-? 16-jan-2010_12:00 ... 3.9725 103 han9-dh-? 16-jan-2010_12:00 ... 3.9725 101 104 102 105 stf1-hh-? ... ... 1.0593 -
SH_SHM/trunk/inputs/LocalStatinf.dat
r182 r191 16 16 HAN5 lat: 52.40488 lon: 9.81988 elevation: 54.7 17 17 HAN6 lat: 52.437677 lon: 9.810629 elevation: 55.9 18 HAN7 lat: 52.38411 lon: 9.872315 elevation: 50 19 HAN8 lat: 52.39212 lon: 9.76544 elevation: 46 20 HAN9 lat: 52.43997 lon: 9.854335 elevation: 62 18 21 19 22 -
SH_SHM/trunk/inputs/STATINF.DAT
r182 r191 99 99 I26H4 lat:48.838572 lon:13.715775 elevation:1084.5 array:77 xrel:-0.172296 yrel:-0.837338 name:I26DE 100 100 I26H5 lat:48.844298 lon:13.701987 elevation:1172.4 array:77 xrel:-1.173748 yrel:-0.184504 name:I26DE 101 I26H6 lat:48.847854 lon:13.710707 elevation:1090.4 102 I26H7 lat:48.846178 lon:13.713941 elevation:1098.5 103 I26H8 lat:48.844365 lon:13.712018 elevation:1073.6 101 104 IGAH1 lat:53.2579 lon:8.6890 elevation:40.0 array:81 xrel:0.0 yrel:0.0 name:IGADE 102 105 IGAH2 lat:53.2596 lon:8.6963 elevation:38.0 array:81 xrel:0.4856 yrel:0.1890 name:IGADE -
SH_SHM/trunk/util/check_evt.c
r108 r191 69 69 static BOOLEAN efv_ms_found=FALSE; /* ms determination done */ 70 70 static BOOLEAN efv_mbb_found=FALSE; /* mbb determination done */ 71 static BOOLEAN efv_depth_phase_found=FALSE;/* depth phase found? */ 71 72 static int efv_subtype=EVTYPE_UNDEF; /* event type */ 72 73 static EvEventTypeT efv_evtype=EvcEventTypeUndefined; /* event type */ … … 204 205 if (is_pkp_phase) 205 206 efv_foundTele = TRUE; 207 208 /* is it a depth phase ? */ 209 if (event->phase[0] == 'p' || event->phase[0] == 's') 210 efv_depth_phase_found = TRUE; 211 /* or from foreign source */ 212 if (event->source[0] != '\0' && (strcmp(event->source,"BGR") != 0) 213 && (strcmp(event->source,"SZGRF") != 0)) 214 efv_depth_phase_found = TRUE; /* assume that the other source has one*/ 206 215 207 216 /* is this a leftover from an amplitude measurement? */ … … 493 502 fprintf( out, "F026 %s: depth %5.1f for teleseismic event\n", 494 503 expl, efv_depth ); 504 if (efv_evtype == EvcEventTypeTeleQuake && !efv_depth_phase_found 505 && ((efv_depth-33.0) > 0.01)) 506 fprintf( out, "F037 %s: depth %5.1f for teleseismic event without depth phases\n", 507 expl, efv_depth ); 495 508 if ((efv_evtype == EvcEventTypeLocalQuake 496 509 || efv_evtype == EvcEventTypeRegioQuake) && (efv_depth < 2.0))
Note: See TracChangeset
for help on using the changeset viewer.