Changeset 108 for SH_SHM/trunk
- Timestamp:
- 03/25/2009 11:14:12 AM (14 years ago)
- Location:
- SH_SHM/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
SH_SHM/trunk/inputs/STATINF.DAT
r91 r108 13 13 GRC4 lat:+49.0867465 lon: +11.5262720 elevation: 503.0 array:01 xrel: 22.280903 yrel: -67.175827 name:Graefenberg,_F.R.G. 14 14 ASSE lat:+52.130 lon: +10.673 elevation: -308.6 array:01 xrel:-37.356739 yrel:271.203522 15 AHRW lat:50.541 lon: 7.076 15 16 BFO lat:+48.3301 lon: +08.3296 elevation: 589.0 array:01 xrel:-213.690201 yrel:-151.307358 name:FRG,_Black_Forest 16 17 BRG lat:+50.8732 lon: +13.9428 elevation: 296.0 array:01 xrel: 191.024750 yrel: 131.459930 name:FRG,_BERGGIESHUEBEL … … 48 49 HAM lat:+53.4650 lon: +09.9247 elevation: 30.25 array:01 xrel: -85.759567 yrel: 419.642181 name:FRG,_Hamburg 49 50 HAM3 lat:53.56558 lon:9.97455 elevation:10.0 51 OBER lat:47.40691 lon:10.29338 elevation: 908 52 UBR lat:47.680 lon:10.107 elevation:890 50 53 LID lat:+54.5481 lon: +13.3664 elevation: 0.00 array:01 xrel: 138.407028 yrel: 540.072083 name:GRF,_Liddow 51 54 WERN lat:+50.2874 lon: +12.3761 elevation: 600.0 array:01 xrel: 82.111969 yrel: 66.324837 … … 597 600 FUCH lat:+49.921 lon: +12.138 elevation: 610. name:KTB-Netz,Germany 598 601 SCHN lat:+50.053 lon: +11.854 elevation:1040. name:Fuerstenfeldbruck-Netz,Germany 602 HROE lat:+50.536 lon: +10.156 elevation: 569. name:Bayern-Netz,Germany 599 603 BINY lat:+42.0896 lon: -75.9708 name:New_York 600 604 HTL lat:+50.99430000 lon: -4.48490000 -
SH_SHM/trunk/inputs/filter_lookup.txt
r90 r108 12 12 ASSE-HH-N GRSN 13 13 ASSE-HH-E GRSN 14 AHRW-BH-Z GRSN 15 AHRW-BH-N GRSN 16 AHRW-BH-E GRSN 17 AHRW-HH-Z GRSN 18 AHRW-HH-N GRSN 19 AHRW-HH-E GRSN 14 20 GRA5-BH-Z GRSN 15 21 GRA5-BH-N GRSN -
SH_SHM/trunk/inputs/sensitivities.txt
r94 r108 2 2 ! ================= 3 3 ! 4 ! $Revision: 75 $, $Date: 2009-01-29 09:33:07 +0100 (Do, 29 Jan2009) $4 ! $Revision: 80 $, $Date: 2009-03-17 08:58:51 +0100 (Di, 17 MÀr 2009) $ 5 5 ! 6 6 ! Sensitivity file for data streams … … 466 466 nrdl-hh-? ... ... 1.5895 467 467 468 ober-bh-? ... ... 1.059 469 ober-hh-? ... ... 1.059 470 ober-lh-? ... ... 1.059 471 468 472 obka-bh-? ... ... 1.67 469 473 -
SH_SHM/trunk/source/seed_io/seed_tidy.c
r98 r108 884 884 if (F_ONEFILE & flags) 885 885 switch_days = switch_hours = FALSE; 886 887 /* new file if the record lenth changes */ 888 this_reclth = SeedGetReclth( (SeedDataHeaderT *)rec, FALSE ); 889 if (last_reclth > 0 && this_reclth != last_reclth) 890 new_file = TRUE; 886 891 887 892 /* find out whether to open new file */ -
SH_SHM/trunk/util/check_evt.c
r97 r108 36 36 #include <stdio.h> 37 37 #include <string.h> 38 #include <stdlib.h> 38 39 #include BASECNST 39 40 #include BC_SYSBASE … … 120 121 efv_showinitials = (strcmp(argv[3],"showinitials") == 0); 121 122 123 #ifdef XXX 122 124 /* efv_infile is used for messages, directory will be removed */ 123 125 i = strlen( infile ) - 1; … … 125 127 i--; 126 128 strcpy( efv_infile, infile+i ); 129 #endif 130 strcpy( efv_infile, infile ); 127 131 128 132 status = EveNOERROR; … … 132 136 /* now call the Python script for additional checks */ 133 137 if (strcmp(outfile,"TT") == 0) { 134 sprintf( tmpstr, "%s/CheckEvt.py %s", getenv("SH_UTIL"), efv_infile ); 138 sprintf( tmpstr, "%s/CheckEvt.py %s", (char *)getenv("SH_UTIL"), 139 efv_infile ); 135 140 system( tmpstr ); 136 141 } else { 137 sprintf( tmpstr, "%s/CheckEvt.py %s %s", getenv("SH_UTIL"),142 sprintf( tmpstr, "%s/CheckEvt.py %s %s", (char *)getenv("SH_UTIL"), 138 143 efv_infile, outfile ); 139 144 system( tmpstr );
Note: See TracChangeset
for help on using the changeset viewer.