Notes on filling GPS holes in ARGO floats ========================================= 2020/10/19 ---------- Q: what constitutes "all floats"? 1): flt_dict.dat 2): Pelle's input to mk_csv_tables.m 3): all floats currently at /data2/gdac/data/dac/aoml on 1): flt_dict.dat has 1626 entries on 2): meta_sum.mat and float_sum.mat have slightly different count: 1616 and 1601 respectively (to be sure: they use different indeces for the same float: e.g. find([meta_sum.wmo_number] == 4901208) = 853; find([float_sum.wmonum] == 4901208) = 821; try to find meta_sum.wmo_number in float_sum.wmonum: there are 21 instances: could not find meta_sum(6).0 in float_sum could not find meta_sum(27).0 in float_sum could not find meta_sum(57).1900202 in float_sum could not find meta_sum(58).0 in float_sum could not find meta_sum(64).0 in float_sum could not find meta_sum(68).0 in float_sum could not find meta_sum(69).0 in float_sum could not find meta_sum(70).0 in float_sum could not find meta_sum(71).0 in float_sum could not find meta_sum(75).0 in float_sum could not find meta_sum(80).4900368 in float_sum could not find meta_sum(204).0 in float_sum could not find meta_sum(206).0 in float_sum could not find meta_sum(210).0 in float_sum could not find meta_sum(313).0 in float_sum could not find meta_sum(377).0 in float_sum could not find meta_sum(454).0 in float_sum could not find meta_sum(484).0 in float_sum could not find meta_sum(687).0 in float_sum could not find meta_sum(761).1900985 in float_sum could not find meta_sum(1200).4901627 in float_sum>> only 4901627 has profiles in /data2/gdac/data/dac/aoml; these are all R's. try the reverse: find float_sum.wmonum in meta_sum.wmo_number could not find float_sum(53).7900026 in meta_sum could not find float_sum(54).7900027 in meta_sum could not find float_sum(55).7900028 in meta_sum could not find float_sum(65).7900029 in meta_sum could not find float_sum(181).4900603 in meta_sum could not find float_sum(1570).4900228 in meta_sum>> all but the last directory do not exist in /data2/gdac/data/dac/aoml However 4900228 does exist and has about 200 D's. on 3): There are 7619 directories. Most have 7-digit WMO some have 5-digit number; Answer: decide to go with float_sum ---------------- Q: What are the different types of floats: Orbcomm ARGOS SOLO1 S2A (SOLO2W) ALAMO not part of GDAC. and how to identify them: float_sum.inst: 1: NM522_SB10 1900038 ARGOS 2: NM525_SB10 3900058 ARGOS 3: SS109_FS10 4900364 ARGOS 4: SS110_FS10 1900248 ARGOS 5: SS105_SB17 4900583 ARGOS 6: SS110_SB17 4900573 ARGOS 7: SS110_SB19 1900738 ARGOS 8: SS120_SBDO19 4900845 IRIDIUM 9: SS120_SB19 7900051 IRIDIUM 10: SS208_SB19 4901450 IRIDIUM 11: SS201_SB19 3900758 IRIDIUM 12: SS203_SB19 1901504 ARGOS 13: SS200_SB19 1901494 ARGOS 14: SS202_SB19 4901058 ARGOS 15: SS204_SB19 1901544 ARGOS 16: SS206_SB19 1901564 ARGOS 17: SS207_SB19 4901298 IRIDIUM 18: MRV120_SB30 3900837 IRIDIUM 19: MRV130_SB30 1901671 IRIDIUM 20: SS210_SB19 4901461 ARGOS 21: SS301_SB19 4901463 IRIDIUM 22: MRV150_SB30 4901584 IRIDIUM 23: SS210_SBDO19 4901707 IRIDIUM 24: MRV200_SB30 3901061 IRIDIUM 25: MRV210_SB30 4902101 IRIDIUM 26: MRV45c_SB30 3901824 IRIDIUM 27: ALTO50a_SB30 2903133 IRIDIUM 28: MRV240_SB30 4903044 IRIDIUM 29: ALTO600_SB30 4903047 IRIDIUM 30: ALTO601_SB30 4903211 IRIDIUM 31: ALTO45c_SB30 4903222 IRIDIUM 32: ALTO610_SB30 4903230 IRIDIUM 33: SOLOOF_TS10 1900167 ORBCOMM 34: ALTO729_SB30 4903273 IRIDIUM 35: ALTO802_RBR 4903275 IRIDIUM>> define 5 tyes: SOLO1 ORBCOMM 1 comm=ORBCOM SOLO1 ARGOS 2 comm=ARGOS (also check that inst is NOT "MRV" or "ALT" which it is not) SOLO1 IRIDIUM 3 comm=IRIDIUM inst(1:2) = "SS" S2A 4 comm=IRIDIUM inst(1:2) = "MR" ALTO 5 comm=IRIDIUM inst(1:2) = "AL" Add POSITION_SYSTEM: define 4 types: "O" for "ORBCOMM" 1 "A" for "ARGOS 2 "G" for "GPS 3 "I" for "IRIDIUM" 4 neither 0 found no 0, so all types were accounted for found no 1, to "ORBCOMM" is not a POSITION_SYSTEM total number of floats with D files: 1247 total number of floats with position gaps: 164 total number of D files: 172318 total number of missing positions: 1073 Iridium positions: (1:5 for float type) n_i1 = 0 n_i2 = 0 n_i3 = 2321 n_i4 = 69 n_i5 = 0 =========================================================== programs: argo_fbinfo makes and saves structure argoinfo_fb to argoinfo_file.mat r_allpos_1.m reads all D files of floats found in argoinfo_file.mat adds positions and others to each argoinfo_fb structure element. Saves in argoinfo_file_afterread.mat second_tests.m tryies algorithm to find longest contiguous gap. 345 floats from argoinfo_fb have no D's After wiping those out, save as argoinfo_fb1 into argoinfo_file_afterread_noeD.mat !copy argoinfo_file_afterread.mat argoinfo_file_afterread_witheD.mat 1 file(s) copied. load argoinfo_file_afterread_noeD.mat >> argoinfo_fb = argoinfo_fb1; >> save argoinfo_file_afterread argoinfo_fb Thus, argoinfo_fb has now 1247 floats, and no more with empty D's (tested) ------------------------ r_sbdfile: trouble reading: /data1/solo1/data/surface/300124010700700/0672.sbd /data1/solo1/data/surface/300034012720680/0946.sbd /data1/solo1/data/surface/300034012178480/0970.sbd /data1/solo1/data/surface/300034012176480/1064.sbd /data1/solo1/data/surface/300234010262540/1143.sbd working on ii=1057, wmoid = 1901702 trouble finding /data1/solo1/data/surface/300234010136520/1107.sbd working on ii=1064, wmoid = 1901705 trouble finding /data1/solo1/data/surface/300234011213800/1151.sbd working on ii=1065, wmoid = 1901706 trouble finding /data1/solo1/data/surface/300234011219800/1152.sbd working on ii=1081, wmoid = 4901675 trouble finding /data1/solo1/data/surface/300234060200740/1172.sbd so: r_sbdfile.m did not work for: [4900794, 1901006, 1901456, 1901540, 4901400 ,1901702, 1901705, 1901706, 4901675 ] see if they have missing GPS fixes, i.e., if there would be a need to look at IRIDIUM: ( code in "if 0" scratch of r_sbdfile.m) 4900794: nGPS=236, n9=0, nIR=0 no need 1901006: nGPS=231, n9=81, nIR=152 1901456: nGPS=245, n9=9, nIR=18 1901540: nGPS=253, n9=25, nIR=29 4901400: nGPS=209, n9=1, nIR=1 1901702: nGPS=24, n9=0, nIR=0 no need 1901705: nGPS=2, n9=0, nIR=0 no need 1901706: nGPS=94, n9=3, nIR=0 4901675: nGPS=5, n9=0, nIR=0 > no need /data1/solo1/data/surface/300124010700700/0672.sbd no need /data1/solo1/data/surface/300034012720680/0946.sbd /data1/solo1/data/surface/300034012178480/0970.sbd /data1/solo1/data/surface/300034012176480/1064.sbd /data1/solo1/data/surface/300234010262540/1143.sbd /data1/solo1/data/surface/300234010136520/1107.sbd no need /data1/solo1/data/surface/300234011213800/1151.sbd no need /data1/solo1/data/surface/300234011219800/1152.sbd SBD file does not exist; do not consider. /data1/solo1/data/surface/300234060200740/1172.sbd no need thus: copy to PC for fixing: /data1/solo1/data/surface/300034012720680/0946.sbd /data1/solo1/data/surface/300034012178480/0970.sbd /data1/solo1/data/surface/300034012176480/1064.sbd /data1/solo1/data/surface/300234010262540/1143.sbd This one does not exist; fix float manually? /data1/solo1/data/surface/300234011219800/1152.sbd 1152 SS301_SB19 IRIDIUM IRIDIUM 300234011219800 5337 20140302 1 1901706 1901706 $ARGODATA Deal with the one outlier first, for which there is no SBD file: 1152: argoinfo_fb(1065).nb: [14 15 16] '17-May-2014 15:00:10' '22-May-2014 14:59:32' '27-May-2014 14:59:20' fbahr@argus:/data1/solo1/data/300234011219800$ ls 9800_140517*.hex 9800_140517150257.hex 9800_140517150540.hex 9800_140517150612.hex 9800_140517151029.hex 9800_140517151150.hex 9800_140517152225.hex 9800_140517150416.hex 9800_140517150612_full.hex 9800_140517151029_full.hex 9800_140517151150_full.hex 9800_140517152225_full.hex none for the 22; 9800_140313144151_inter.lis:1187:Cycle Number: 1 9800_140318144016_inter.lis:1187:Cycle Number: 2 9800_140323150139_inter.lis:1183:Cycle Number: 3 9800_140328150703_inter.lis:1183:Cycle Number: 4 9800_140402145814_inter.lis:1183:Cycle Number: 5 9800_140407145813_inter.lis:1187:Cycle Number: 6 9800_140417154220_inter.lis:1187:Cycle Number: 7 9800_140422150206_inter.lis:1187:Cycle Number: 7 9800_140422150455_inter.lis:1187:Cycle Number: 7 9800_140422150547_inter.lis:1187:Cycle Number: 7 9800_140422151201_inter.lis:1187:Cycle Number: 7 9800_140422152202_inter.lis:1187:Cycle Number: 7 9800_140422152326_inter.lis:1187:Cycle Number: 7 9800_140422152457_inter.lis:1187:Cycle Number: 7 9800_140422152529_inter.lis:1187:Cycle Number: 7 9800_140422152529_inter.lis:2370:Cycle Number: 8 9800_140422152746_inter.lis:1187:Cycle Number: 7 9800_140422152746_inter.lis:2370:Cycle Number: 8 9800_140422152823_inter.lis:1187:Cycle Number: 7 9800_140422152823_inter.lis:2370:Cycle Number: 8 9800_140422152852_inter.lis:1187:Cycle Number: 7 9800_140422152852_inter.lis:2370:Cycle Number: 8 9800_140422152927_inter.lis:1187:Cycle Number: 7 9800_140422152927_inter.lis:2370:Cycle Number: 8 9800_140422153002_inter.lis:1187:Cycle Number: 7 9800_140422153002_inter.lis:2370:Cycle Number: 8 9800_140422153032_inter.lis:1187:Cycle Number: 7 9800_140422153032_inter.lis:2370:Cycle Number: 8 9800_140422153129_inter.lis:1187:Cycle Number: 7 9800_140422153129_inter.lis:2370:Cycle Number: 8 9800_140422153155_inter.lis:1187:Cycle Number: 7 9800_140422153155_inter.lis:2370:Cycle Number: 8 9800_140422153155_inter.lis:3551:Cycle Number: 9 9800_140427145912_inter.lis:1181:Cycle Number: 10 9800_140517150612_inter.lis:1178:Cycle Number: 11 9800_140517151029_inter.lis:1178:Cycle Number: 11 9800_140517151150_inter.lis:1178:Cycle Number: 11 9800_140517152225_inter.lis:1178:Cycle Number: 11 9800_140527153747_inter.lis:1178:Cycle Number: 11 9800_140601151756_inter.lis:1178:Cycle Number: 11 9800_140601152506_inter.lis:1178:Cycle Number: 11 9800_140611141650_inter.lis:1178:Cycle Number: 11 9800_140611141726_inter.lis:1178:Cycle Number: 11 9800_140611141726_inter.lis:2362:Cycle Number: 12 9800_140611143517_inter.lis:1178:Cycle Number: 11 9800_140611143517_inter.lis:2362:Cycle Number: 12 9800_140611144334_inter.lis:1178:Cycle Number: 11 9800_140611144334_inter.lis:2362:Cycle Number: 12 9800_140616141133_inter.lis:1178:Cycle Number: 11 9800_140616141133_inter.lis:2362:Cycle Number: 12 9800_140616141209_inter.lis:1178:Cycle Number: 11 9800_140616141209_inter.lis:2362:Cycle Number: 12 9800_140616141242_inter.lis:1178:Cycle Number: 11 9800_140616141242_inter.lis:2362:Cycle Number: 12 9800_140616141306_inter.lis:1178:Cycle Number: 11 9800_140616141306_inter.lis:2362:Cycle Number: 12 9800_140616141333_inter.lis:1178:Cycle Number: 11 9800_140616141333_inter.lis:2362:Cycle Number: 12 9800_140616141400_inter.lis:1178:Cycle Number: 11 9800_140616141400_inter.lis:2362:Cycle Number: 12 9800_140616141400_inter.lis:3550:Cycle Number: 13 9800_140616141431_inter.lis:1178:Cycle Number: 11 9800_140616141431_inter.lis:2362:Cycle Number: 12 9800_140616141431_inter.lis:3550:Cycle Number: 13 9800_140616141506_inter.lis:1178:Cycle Number: 11 9800_140616141506_inter.lis:2362:Cycle Number: 12 9800_140616141506_inter.lis:3550:Cycle Number: 13 9800_140616141533_inter.lis:1178:Cycle Number: 11 9800_140616141533_inter.lis:2362:Cycle Number: 12 9800_140616141533_inter.lis:3550:Cycle Number: 13 9800_140616141611_inter.lis:1178:Cycle Number: 11 9800_140616141611_inter.lis:2362:Cycle Number: 12 9800_140616141611_inter.lis:3550:Cycle Number: 13 9800_140616141716_inter.lis:1178:Cycle Number: 11 9800_140616141716_inter.lis:2362:Cycle Number: 12 9800_140616141716_inter.lis:3550:Cycle Number: 13 9800_140616142055_inter.lis:1178:Cycle Number: 11 9800_140616142055_inter.lis:2362:Cycle Number: 12 9800_140616142055_inter.lis:3550:Cycle Number: 13 9800_140616142137_inter.lis:1178:Cycle Number: 11 9800_140616142137_inter.lis:2362:Cycle Number: 12 9800_140616142137_inter.lis:3550:Cycle Number: 13 9800_140616142237_inter.lis:1178:Cycle Number: 11 9800_140616142237_inter.lis:2362:Cycle Number: 12 9800_140616142237_inter.lis:3550:Cycle Number: 13 9800_140616142237_inter.lis:4737:Cycle Number: 14 9800_140616142305_inter.lis:1178:Cycle Number: 11 9800_140616142305_inter.lis:2362:Cycle Number: 12 9800_140616142305_inter.lis:3550:Cycle Number: 13 9800_140616142305_inter.lis:4737:Cycle Number: 14 9800_140616142413_inter.lis:1178:Cycle Number: 11 9800_140616142413_inter.lis:2362:Cycle Number: 12 9800_140616142413_inter.lis:3550:Cycle Number: 13 9800_140616142413_inter.lis:4737:Cycle Number: 14 9800_140616142440_inter.lis:1178:Cycle Number: 11 9800_140616142440_inter.lis:2362:Cycle Number: 12 9800_140616142440_inter.lis:3550:Cycle Number: 13 9800_140616142440_inter.lis:4737:Cycle Number: 14 9800_140616142513_inter.lis:1178:Cycle Number: 11 9800_140616142513_inter.lis:2362:Cycle Number: 12 9800_140616142513_inter.lis:3550:Cycle Number: 13 9800_140616142513_inter.lis:4737:Cycle Number: 14 9800_140616142900_inter.lis:1178:Cycle Number: 11 9800_140616142900_inter.lis:2362:Cycle Number: 12 9800_140616142900_inter.lis:3550:Cycle Number: 13 9800_140616142900_inter.lis:4737:Cycle Number: 14 9800_140616142934_inter.lis:1178:Cycle Number: 11 9800_140616142934_inter.lis:2362:Cycle Number: 12 9800_140616142934_inter.lis:3550:Cycle Number: 13 9800_140616142934_inter.lis:4737:Cycle Number: 14 9800_140616143017_inter.lis:1178:Cycle Number: 11 9800_140616143017_inter.lis:2362:Cycle Number: 12 9800_140616143017_inter.lis:3550:Cycle Number: 13 9800_140616143017_inter.lis:4737:Cycle Number: 14 9800_140616143042_inter.lis:1178:Cycle Number: 11 9800_140616143042_inter.lis:2362:Cycle Number: 12 9800_140616143042_inter.lis:3550:Cycle Number: 13 9800_140616143042_inter.lis:4737:Cycle Number: 14 9800_140616143042_inter.lis:5918:Cycle Number: 15 9800_140616143120_inter.lis:1178:Cycle Number: 11 9800_140616143120_inter.lis:2362:Cycle Number: 12 9800_140616143120_inter.lis:3550:Cycle Number: 13 9800_140616143120_inter.lis:4737:Cycle Number: 14 9800_140616143120_inter.lis:5918:Cycle Number: 15 9800_140616143147_inter.lis:1178:Cycle Number: 11 9800_140616143147_inter.lis:2362:Cycle Number: 12 9800_140616143147_inter.lis:3550:Cycle Number: 13 9800_140616143147_inter.lis:4737:Cycle Number: 14 9800_140616143147_inter.lis:5918:Cycle Number: 15 9800_140616143213_inter.lis:1178:Cycle Number: 11 9800_140616143213_inter.lis:2362:Cycle Number: 12 9800_140616143213_inter.lis:3550:Cycle Number: 13 9800_140616143213_inter.lis:4737:Cycle Number: 14 9800_140616143213_inter.lis:5918:Cycle Number: 15 9800_140616143238_inter.lis:1178:Cycle Number: 11 9800_140616143238_inter.lis:2362:Cycle Number: 12 9800_140616143238_inter.lis:3550:Cycle Number: 13 9800_140616143238_inter.lis:4737:Cycle Number: 14 9800_140616143238_inter.lis:5918:Cycle Number: 15 9800_140616143316_inter.lis:1178:Cycle Number: 11 9800_140616143316_inter.lis:2362:Cycle Number: 12 9800_140616143316_inter.lis:3550:Cycle Number: 13 9800_140616143316_inter.lis:4737:Cycle Number: 14 9800_140616143316_inter.lis:5918:Cycle Number: 15 9800_140616143344_inter.lis:1178:Cycle Number: 11 9800_140616143344_inter.lis:2362:Cycle Number: 12 9800_140616143344_inter.lis:3550:Cycle Number: 13 9800_140616143344_inter.lis:4737:Cycle Number: 14 9800_140616143344_inter.lis:5918:Cycle Number: 15 9800_140616143410_inter.lis:1178:Cycle Number: 11 9800_140616143410_inter.lis:2362:Cycle Number: 12 9800_140616143410_inter.lis:3550:Cycle Number: 13 9800_140616143410_inter.lis:4737:Cycle Number: 14 9800_140616143410_inter.lis:5918:Cycle Number: 15 9800_140616143441_inter.lis:1178:Cycle Number: 11 9800_140616143441_inter.lis:2362:Cycle Number: 12 9800_140616143441_inter.lis:3550:Cycle Number: 13 9800_140616143441_inter.lis:4737:Cycle Number: 14 9800_140616143441_inter.lis:5918:Cycle Number: 15 9800_140616143441_inter.lis:7106:Cycle Number: 16 9800_140616143513_inter.lis:1178:Cycle Number: 11 9800_140616143513_inter.lis:2362:Cycle Number: 12 9800_140616143513_inter.lis:3550:Cycle Number: 13 9800_140616143513_inter.lis:4737:Cycle Number: 14 9800_140616143513_inter.lis:5918:Cycle Number: 15 9800_140616143513_inter.lis:7106:Cycle Number: 16 9800_140616143543_inter.lis:1178:Cycle Number: 11 9800_140616143543_inter.lis:2362:Cycle Number: 12 9800_140616143543_inter.lis:3550:Cycle Number: 13 9800_140616143543_inter.lis:4737:Cycle Number: 14 9800_140616143543_inter.lis:5918:Cycle Number: 15 9800_140616143543_inter.lis:7106:Cycle Number: 16 9800_140616143618_inter.lis:1178:Cycle Number: 11 9800_140616143618_inter.lis:2362:Cycle Number: 12 9800_140616143618_inter.lis:3550:Cycle Number: 13 9800_140616143618_inter.lis:4737:Cycle Number: 14 9800_140616143618_inter.lis:5918:Cycle Number: 15 9800_140616143618_inter.lis:7106:Cycle Number: 16 9800_140616143759_inter.lis:1178:Cycle Number: 11 9800_140616143759_inter.lis:2362:Cycle Number: 12 9800_140616143759_inter.lis:3550:Cycle Number: 13 9800_140616143759_inter.lis:4737:Cycle Number: 14 9800_140616143759_inter.lis:5918:Cycle Number: 15 9800_140616143759_inter.lis:7106:Cycle Number: 16 9800_140616143921_inter.lis:1178:Cycle Number: 11 9800_140616143921_inter.lis:2362:Cycle Number: 12 9800_140616143921_inter.lis:3550:Cycle Number: 13 9800_140616143921_inter.lis:4737:Cycle Number: 14 9800_140616143921_inter.lis:5918:Cycle Number: 15 9800_140616143921_inter.lis:7106:Cycle Number: 16 9800_140616144039_inter.lis:1178:Cycle Number: 11 9800_140616144039_inter.lis:2362:Cycle Number: 12 9800_140616144039_inter.lis:3550:Cycle Number: 13 9800_140616144039_inter.lis:4737:Cycle Number: 14 9800_140616144039_inter.lis:5918:Cycle Number: 15 9800_140616144039_inter.lis:7106:Cycle Number: 16 9800_140616144106_inter.lis:1178:Cycle Number: 11 9800_140616144106_inter.lis:2362:Cycle Number: 12 9800_140616144106_inter.lis:3550:Cycle Number: 13 9800_140616144106_inter.lis:4737:Cycle Number: 14 9800_140616144106_inter.lis:5918:Cycle Number: 15 9800_140616144106_inter.lis:7106:Cycle Number: 16 9800_140616144131_inter.lis:1178:Cycle Number: 11 9800_140616144131_inter.lis:2362:Cycle Number: 12 9800_140616144131_inter.lis:3550:Cycle Number: 13 9800_140616144131_inter.lis:4737:Cycle Number: 14 9800_140616144131_inter.lis:5918:Cycle Number: 15 9800_140616144131_inter.lis:7106:Cycle Number: 16 9800_140616144131_inter.lis:8292:Cycle Number: 17 9800_140616144204_inter.lis:1178:Cycle Number: 11 9800_140616144204_inter.lis:2362:Cycle Number: 12 9800_140616144204_inter.lis:3550:Cycle Number: 13 9800_140616144204_inter.lis:4737:Cycle Number: 14 9800_140616144204_inter.lis:5918:Cycle Number: 15 9800_140616144204_inter.lis:7106:Cycle Number: 16 9800_140616144204_inter.lis:8292:Cycle Number: 17 9800_140616144313_inter.lis:1178:Cycle Number: 11 9800_140616144313_inter.lis:2362:Cycle Number: 12 9800_140616144313_inter.lis:3550:Cycle Number: 13 9800_140616144313_inter.lis:4737:Cycle Number: 14 9800_140616144313_inter.lis:5918:Cycle Number: 15 9800_140616144313_inter.lis:7106:Cycle Number: 16 9800_140616144313_inter.lis:8292:Cycle Number: 17 9800_140616144703_inter.lis:1178:Cycle Number: 11 9800_140616144703_inter.lis:2362:Cycle Number: 12 9800_140616144703_inter.lis:3550:Cycle Number: 13 9800_140616144703_inter.lis:4737:Cycle Number: 14 9800_140616144703_inter.lis:5918:Cycle Number: 15 9800_140616144703_inter.lis:7106:Cycle Number: 16 9800_140616144703_inter.lis:8292:Cycle Number: 17 9800_140616144923_inter.lis:1178:Cycle Number: 11 9800_140616144923_inter.lis:2362:Cycle Number: 12 9800_140616144923_inter.lis:3550:Cycle Number: 13 9800_140616144923_inter.lis:4737:Cycle Number: 14 9800_140616144923_inter.lis:5918:Cycle Number: 15 9800_140616144923_inter.lis:7106:Cycle Number: 16 9800_140616144923_inter.lis:8292:Cycle Number: 17 9800_140616144954_inter.lis:1178:Cycle Number: 11 9800_140616144954_inter.lis:2362:Cycle Number: 12 9800_140616144954_inter.lis:3550:Cycle Number: 13 9800_140616144954_inter.lis:4737:Cycle Number: 14 9800_140616144954_inter.lis:5918:Cycle Number: 15 9800_140616144954_inter.lis:7106:Cycle Number: 16 9800_140616144954_inter.lis:8292:Cycle Number: 17 9800_140616145032_inter.lis:1178:Cycle Number: 11 9800_140616145032_inter.lis:2362:Cycle Number: 12 9800_140616145032_inter.lis:3550:Cycle Number: 13 9800_140616145032_inter.lis:4737:Cycle Number: 14 9800_140616145032_inter.lis:5918:Cycle Number: 15 9800_140616145032_inter.lis:7106:Cycle Number: 16 9800_140616145032_inter.lis:8292:Cycle Number: 17 9800_140616145102_inter.lis:1178:Cycle Number: 11 9800_140616145102_inter.lis:2362:Cycle Number: 12 9800_140616145102_inter.lis:3550:Cycle Number: 13 9800_140616145102_inter.lis:4737:Cycle Number: 14 9800_140616145102_inter.lis:5918:Cycle Number: 15 9800_140616145102_inter.lis:7106:Cycle Number: 16 9800_140616145102_inter.lis:8292:Cycle Number: 17 9800_140616145102_inter.lis:9470:Cycle Number: 18 9800_140616145137_inter.lis:1178:Cycle Number: 11 9800_140616145137_inter.lis:2362:Cycle Number: 12 9800_140616145137_inter.lis:3550:Cycle Number: 13 9800_140616145137_inter.lis:4737:Cycle Number: 14 9800_140616145137_inter.lis:5918:Cycle Number: 15 9800_140616145137_inter.lis:7106:Cycle Number: 16 9800_140616145137_inter.lis:8292:Cycle Number: 17 9800_140616145137_inter.lis:9470:Cycle Number: 18 9800_140616145559_inter.lis:1178:Cycle Number: 11 9800_140616145559_inter.lis:2362:Cycle Number: 12 9800_140616145559_inter.lis:3550:Cycle Number: 13 9800_140616145559_inter.lis:4737:Cycle Number: 14 9800_140616145559_inter.lis:5918:Cycle Number: 15 9800_140616145559_inter.lis:7106:Cycle Number: 16 9800_140616145559_inter.lis:8292:Cycle Number: 17 9800_140616145559_inter.lis:9470:Cycle Number: 18 9800_140616151617_inter.lis:1178:Cycle Number: 11 9800_140616151617_inter.lis:2362:Cycle Number: 12 9800_140616151617_inter.lis:3550:Cycle Number: 13 9800_140616151617_inter.lis:4737:Cycle Number: 14 9800_140616151617_inter.lis:5918:Cycle Number: 15 9800_140616151617_inter.lis:7106:Cycle Number: 16 9800_140616151617_inter.lis:8292:Cycle Number: 17 9800_140616151617_inter.lis:9470:Cycle Number: 18 9800_140616151641_inter.lis:1178:Cycle Number: 11 9800_140616151641_inter.lis:2362:Cycle Number: 12 9800_140616151641_inter.lis:3550:Cycle Number: 13 9800_140616151641_inter.lis:4737:Cycle Number: 14 9800_140616151641_inter.lis:5918:Cycle Number: 15 9800_140616151641_inter.lis:7106:Cycle Number: 16 9800_140616151641_inter.lis:8292:Cycle Number: 17 9800_140616151641_inter.lis:9470:Cycle Number: 18 9800_140616151711_inter.lis:1178:Cycle Number: 11 9800_140616151711_inter.lis:2362:Cycle Number: 12 9800_140616151711_inter.lis:3550:Cycle Number: 13 9800_140616151711_inter.lis:4737:Cycle Number: 14 9800_140616151711_inter.lis:5918:Cycle Number: 15 9800_140616151711_inter.lis:7106:Cycle Number: 16 9800_140616151711_inter.lis:8292:Cycle Number: 17 9800_140616151711_inter.lis:9470:Cycle Number: 18 9800_140616151753_inter.lis:1178:Cycle Number: 11 9800_140616151753_inter.lis:2362:Cycle Number: 12 9800_140616151753_inter.lis:3550:Cycle Number: 13 9800_140616151753_inter.lis:4737:Cycle Number: 14 9800_140616151753_inter.lis:5918:Cycle Number: 15 9800_140616151753_inter.lis:7106:Cycle Number: 16 9800_140616151753_inter.lis:8292:Cycle Number: 17 9800_140616151753_inter.lis:9470:Cycle Number: 18 9800_140616151921_inter.lis:1178:Cycle Number: 11 9800_140616151921_inter.lis:2362:Cycle Number: 12 9800_140616151921_inter.lis:3550:Cycle Number: 13 9800_140616151921_inter.lis:4737:Cycle Number: 14 9800_140616151921_inter.lis:5918:Cycle Number: 15 9800_140616151921_inter.lis:7106:Cycle Number: 16 9800_140616151921_inter.lis:8292:Cycle Number: 17 9800_140616151921_inter.lis:9470:Cycle Number: 18 9800_140616152318_inter.lis:1178:Cycle Number: 11 9800_140616152318_inter.lis:2362:Cycle Number: 12 9800_140616152318_inter.lis:3550:Cycle Number: 13 9800_140616152318_inter.lis:4737:Cycle Number: 14 9800_140616152318_inter.lis:5918:Cycle Number: 15 9800_140616152318_inter.lis:7106:Cycle Number: 16 9800_140616152318_inter.lis:8292:Cycle Number: 17 9800_140616152318_inter.lis:9470:Cycle Number: 18 9800_140616152318_inter.lis:10651:Cycle Number: 19 9800_140616152413_inter.lis:1178:Cycle Number: 11 9800_140616152413_inter.lis:2362:Cycle Number: 12 9800_140616152413_inter.lis:3550:Cycle Number: 13 9800_140616152413_inter.lis:4737:Cycle Number: 14 9800_140616152413_inter.lis:5918:Cycle Number: 15 9800_140616152413_inter.lis:7106:Cycle Number: 16 9800_140616152413_inter.lis:8292:Cycle Number: 17 9800_140616152413_inter.lis:9470:Cycle Number: 18 9800_140616152413_inter.lis:10651:Cycle Number: 19 9800_140616152443_inter.lis:1178:Cycle Number: 11 9800_140616152443_inter.lis:2362:Cycle Number: 12 9800_140616152443_inter.lis:3550:Cycle Number: 13 9800_140616152443_inter.lis:4737:Cycle Number: 14 9800_140616152443_inter.lis:5918:Cycle Number: 15 9800_140616152443_inter.lis:7106:Cycle Number: 16 9800_140616152443_inter.lis:8292:Cycle Number: 17 9800_140616152443_inter.lis:9470:Cycle Number: 18 9800_140616152443_inter.lis:10651:Cycle Number: 19 9800_140616152559_inter.lis:1178:Cycle Number: 11 9800_140616152559_inter.lis:2362:Cycle Number: 12 9800_140616152559_inter.lis:3550:Cycle Number: 13 9800_140616152559_inter.lis:4737:Cycle Number: 14 9800_140616152559_inter.lis:5918:Cycle Number: 15 9800_140616152559_inter.lis:7106:Cycle Number: 16 9800_140616152559_inter.lis:8292:Cycle Number: 17 9800_140616152559_inter.lis:9470:Cycle Number: 18 9800_140616152559_inter.lis:10651:Cycle Number: 19 9800_140616152629_inter.lis:1178:Cycle Number: 11 9800_140616152629_inter.lis:2362:Cycle Number: 12 9800_140616152629_inter.lis:3550:Cycle Number: 13 9800_140616152629_inter.lis:4737:Cycle Number: 14 9800_140616152629_inter.lis:5918:Cycle Number: 15 9800_140616152629_inter.lis:7106:Cycle Number: 16 9800_140616152629_inter.lis:8292:Cycle Number: 17 9800_140616152629_inter.lis:9470:Cycle Number: 18 9800_140616152629_inter.lis:10651:Cycle Number: 19 9800_140616152727_inter.lis:1178:Cycle Number: 11 9800_140616152727_inter.lis:2362:Cycle Number: 12 9800_140616152727_inter.lis:3550:Cycle Number: 13 9800_140616152727_inter.lis:4737:Cycle Number: 14 9800_140616152727_inter.lis:5918:Cycle Number: 15 9800_140616152727_inter.lis:7106:Cycle Number: 16 9800_140616152727_inter.lis:8292:Cycle Number: 17 9800_140616152727_inter.lis:9470:Cycle Number: 18 9800_140616152727_inter.lis:10651:Cycle Number: 19 9800_140616153345_inter.lis:1178:Cycle Number: 11 9800_140616153345_inter.lis:2362:Cycle Number: 12 9800_140616153345_inter.lis:3550:Cycle Number: 13 9800_140616153345_inter.lis:4737:Cycle Number: 14 9800_140616153345_inter.lis:5918:Cycle Number: 15 9800_140616153345_inter.lis:7106:Cycle Number: 16 9800_140616153345_inter.lis:8292:Cycle Number: 17 9800_140616153345_inter.lis:9470:Cycle Number: 18 9800_140616153345_inter.lis:10651:Cycle Number: 19 9800_140616153413_inter.lis:1178:Cycle Number: 11 9800_140616153413_inter.lis:2362:Cycle Number: 12 9800_140616153413_inter.lis:3550:Cycle Number: 13 9800_140616153413_inter.lis:4737:Cycle Number: 14 9800_140616153413_inter.lis:5918:Cycle Number: 15 9800_140616153413_inter.lis:7106:Cycle Number: 16 9800_140616153413_inter.lis:8292:Cycle Number: 17 9800_140616153413_inter.lis:9470:Cycle Number: 18 9800_140616153413_inter.lis:10651:Cycle Number: 19 9800_140616153438_inter.lis:1178:Cycle Number: 11 9800_140616153438_inter.lis:2362:Cycle Number: 12 9800_140616153438_inter.lis:3550:Cycle Number: 13 9800_140616153438_inter.lis:4737:Cycle Number: 14 9800_140616153438_inter.lis:5918:Cycle Number: 15 9800_140616153438_inter.lis:7106:Cycle Number: 16 9800_140616153438_inter.lis:8292:Cycle Number: 17 9800_140616153438_inter.lis:9470:Cycle Number: 18 9800_140616153438_inter.lis:10651:Cycle Number: 19 9800_140616153438_inter.lis:11826:Cycle Number: 20 9800_140621144544_inter.lis:1184:Cycle Number: 21 9800_140626143250_inter.lis:1179:Cycle Number: 22 9800_140701142033_inter.lis:1182:Cycle Number: 23 9800_140706142109_inter.lis:1178:Cycle Number: 24 9800_140711142853_inter.lis:1177:Cycle Number: 25 9800_140716143457_inter.lis:1181:Cycle Number: 26 9800_140721142620_inter.lis:1188:Cycle Number: 27 9800_140726142356_inter.lis:1184:Cycle Number: 28 9800_140731142007_inter.lis:1179:Cycle Number: 29 9800_140810142404_inter.lis:1188:Cycle Number: 30 9800_140810142538_inter.lis:1188:Cycle Number: 30 9800_140810142659_inter.lis:1188:Cycle Number: 30 9800_140810142758_inter.lis:1188:Cycle Number: 30 9800_140810142825_inter.lis:1188:Cycle Number: 30 9800_140810142851_inter.lis:1188:Cycle Number: 30 9800_140810142930_inter.lis:1188:Cycle Number: 30 9800_140810143000_inter.lis:1188:Cycle Number: 30 9800_140810143000_inter.lis:2371:Cycle Number: 31 9800_140815144345_inter.lis:1184:Cycle Number: 32 9800_140820142416_inter.lis:1181:Cycle Number: 33 9800_140825143705_inter.lis:1185:Cycle Number: 34 9800_140830142645_inter.lis:1185:Cycle Number: 35 9800_140904142839_inter.lis:1186:Cycle Number: 36 9800_140909142809_inter.lis:1187:Cycle Number: 37 9800_140914142431_inter.lis:1194:Cycle Number: 38 9800_140919145726_inter.lis:1191:Cycle Number: 39 9800_140924142950_inter.lis:1194:Cycle Number: 40 9800_140929142322_inter.lis:1191:Cycle Number: 41 9800_141004143242_inter.lis:1187:Cycle Number: 42 9800_141009142612_inter.lis:1187:Cycle Number: 43 9800_141014143024_inter.lis:1187:Cycle Number: 44 9800_141019141741_inter.lis:1181:Cycle Number: 45 9800_141024141636_inter.lis:1179:Cycle Number: 46 9800_141029142101_inter.lis:1177:Cycle Number: 47 9800_141103141702_inter.lis:1181:Cycle Number: 48 9800_141108141556_inter.lis:1181:Cycle Number: 49 9800_141113142355_inter.lis:1177:Cycle Number: 50 9800_141118143228_inter.lis:1185:Cycle Number: 51 9800_141123142613_inter.lis:1182:Cycle Number: 52 9800_141128143607_inter.lis:1177:Cycle Number: 53 9800_141203151826_inter.lis:1181:Cycle Number: 54 9800_141208143653_inter.lis:1181:Cycle Number: 55 9800_141213144907_inter.lis:1183:Cycle Number: 56 9800_141218144010_inter.lis:1183:Cycle Number: 57 9800_141223145140_inter.lis:1183:Cycle Number: 58 9800_141228144237_inter.lis:1187:Cycle Number: 59 9800_150102144324_inter.lis:1184:Cycle Number: 60 9800_150107143959_inter.lis:1185:Cycle Number: 61 9800_150112144419_inter.lis:1187:Cycle Number: 62 9800_150117144714_inter.lis:1187:Cycle Number: 63 9800_150122145058_inter.lis:1185:Cycle Number: 64 9800_150127144722_inter.lis:1193:Cycle Number: 65 9800_150201144411_inter.lis:1189:Cycle Number: 66 9800_150206144537_inter.lis:1187:Cycle Number: 67 9800_150211145605_inter.lis:1189:Cycle Number: 68 9800_150216144515_inter.lis:1189:Cycle Number: 69 9800_150221144829_inter.lis:1193:Cycle Number: 70 9800_150226144653_inter.lis:1189:Cycle Number: 71 9800_150303145145_inter.lis:1189:Cycle Number: 72 9800_150308145838_inter.lis:1186:Cycle Number: 73 9800_150318144605_inter.lis:1186:Cycle Number: 74 9800_150318150310_inter.lis:1186:Cycle Number: 74 9800_150318152642_inter.lis:1186:Cycle Number: 74 9800_150323150148_inter.lis:1186:Cycle Number: 74 9800_150323150315_inter.lis:1186:Cycle Number: 74 9800_150323151223_inter.lis:1186:Cycle Number: 74 9800_150323151249_inter.lis:1186:Cycle Number: 74 9800_150323151411_inter.lis:1186:Cycle Number: 74 9800_150323151411_inter.lis:2367:Cycle Number: 75 9800_150323152053_inter.lis:1186:Cycle Number: 74 9800_150323152053_inter.lis:2367:Cycle Number: 75 9800_150323152119_inter.lis:1186:Cycle Number: 74 9800_150323152119_inter.lis:2367:Cycle Number: 75 9800_150323152147_inter.lis:1186:Cycle Number: 74 9800_150323152147_inter.lis:2367:Cycle Number: 75 9800_150323152231_inter.lis:1186:Cycle Number: 74 9800_150323152231_inter.lis:2367:Cycle Number: 75 9800_150323152302_inter.lis:1186:Cycle Number: 74 9800_150323152302_inter.lis:2367:Cycle Number: 75 9800_150323152508_inter.lis:1186:Cycle Number: 74 9800_150323152508_inter.lis:2367:Cycle Number: 75 9800_150323152853_inter.lis:1186:Cycle Number: 74 9800_150323152853_inter.lis:2367:Cycle Number: 75 9800_150323153008_inter.lis:1186:Cycle Number: 74 9800_150323153008_inter.lis:2367:Cycle Number: 75 9800_150323153008_inter.lis:3559:Cycle Number: 76 9800_150328152819_inter.lis:1184:Cycle Number: 77 9800_150402145658_inter.lis:1188:Cycle Number: 78 9800_150407153809_inter.lis:1191:Cycle Number: 79 9800_150412152448_inter.lis:1191:Cycle Number: 80 9800_150417155237_inter.lis:1185:Cycle Number: 81 9800_150422150937_inter.lis:1186:Cycle Number: 82 9800_150507152351_inter.lis:1202:Cycle Number: 83 9800_150507152434_inter.lis:1202:Cycle Number: 83 9800_150507153220_inter.lis:1202:Cycle Number: 83 9800_150507153333_inter.lis:1202:Cycle Number: 83 9800_150507153409_inter.lis:1202:Cycle Number: 83 9800_150507153443_inter.lis:1202:Cycle Number: 83 9800_150507153935_inter.lis:1202:Cycle Number: 83 9800_150507154042_inter.lis:1202:Cycle Number: 83 9800_150507154154_inter.lis:1202:Cycle Number: 83 9800_150507154154_inter.lis:2383:Cycle Number: 84 9800_150507154318_inter.lis:1202:Cycle Number: 83 9800_150507154318_inter.lis:2383:Cycle Number: 84 9800_150507154350_inter.lis:1202:Cycle Number: 83 9800_150507154350_inter.lis:2383:Cycle Number: 84 9800_150507154540_inter.lis:1202:Cycle Number: 83 9800_150507154540_inter.lis:2383:Cycle Number: 84 9800_150507154954_inter.lis:1202:Cycle Number: 83 9800_150507154954_inter.lis:2383:Cycle Number: 84 9800_150507155351_inter.lis:1202:Cycle Number: 83 9800_150507155351_inter.lis:2383:Cycle Number: 84 9800_150507155934_inter.lis:1202:Cycle Number: 83 9800_150507155934_inter.lis:2383:Cycle Number: 84 9800_150512150257_inter.lis:1202:Cycle Number: 83 9800_150512150257_inter.lis:2383:Cycle Number: 84 9800_150512150407_inter.lis:1202:Cycle Number: 83 9800_150512150407_inter.lis:2383:Cycle Number: 84 9800_150512150407_inter.lis:3569:Cycle Number: 85 9800_150512150450_inter.lis:1202:Cycle Number: 83 9800_150512150450_inter.lis:2383:Cycle Number: 84 9800_150512150450_inter.lis:3569:Cycle Number: 85 9800_150512150843_inter.lis:1202:Cycle Number: 83 9800_150512150843_inter.lis:2383:Cycle Number: 84 9800_150512150843_inter.lis:3569:Cycle Number: 85 9800_150512151133_inter.lis:1202:Cycle Number: 83 9800_150512151133_inter.lis:2383:Cycle Number: 84 9800_150512151133_inter.lis:3569:Cycle Number: 85 9800_150512151211_inter.lis:1202:Cycle Number: 83 9800_150512151211_inter.lis:2383:Cycle Number: 84 9800_150512151211_inter.lis:3569:Cycle Number: 85 9800_150512152758_inter.lis:1202:Cycle Number: 83 9800_150512152758_inter.lis:2383:Cycle Number: 84 9800_150512152758_inter.lis:3569:Cycle Number: 85 9800_150512152914_inter.lis:1202:Cycle Number: 83 9800_150512152914_inter.lis:2383:Cycle Number: 84 9800_150512152914_inter.lis:3569:Cycle Number: 85 9800_150512153103_inter.lis:1202:Cycle Number: 83 9800_150512153103_inter.lis:2383:Cycle Number: 84 9800_150512153103_inter.lis:3569:Cycle Number: 85 9800_150517145058_inter.lis:1202:Cycle Number: 83 9800_150517145058_inter.lis:2383:Cycle Number: 84 9800_150517145058_inter.lis:3569:Cycle Number: 85 9800_150517145058_inter.lis:4760:Cycle Number: 86 9800_150517145124_inter.lis:1202:Cycle Number: 83 9800_150517145124_inter.lis:2383:Cycle Number: 84 9800_150517145124_inter.lis:3569:Cycle Number: 85 9800_150517145124_inter.lis:4760:Cycle Number: 86 9800_150517145155_inter.lis:1202:Cycle Number: 83 9800_150517145155_inter.lis:2383:Cycle Number: 84 9800_150517145155_inter.lis:3569:Cycle Number: 85 9800_150517145155_inter.lis:4760:Cycle Number: 86 9800_150517145223_inter.lis:1202:Cycle Number: 83 9800_150517145223_inter.lis:2383:Cycle Number: 84 9800_150517145223_inter.lis:3569:Cycle Number: 85 9800_150517145223_inter.lis:4760:Cycle Number: 86 9800_150517145435_inter.lis:1202:Cycle Number: 83 9800_150517145435_inter.lis:2383:Cycle Number: 84 9800_150517145435_inter.lis:3569:Cycle Number: 85 9800_150517145435_inter.lis:4760:Cycle Number: 86 9800_150517145735_inter.lis:1202:Cycle Number: 83 9800_150517145735_inter.lis:2383:Cycle Number: 84 9800_150517145735_inter.lis:3569:Cycle Number: 85 9800_150517145735_inter.lis:4760:Cycle Number: 86 9800_150517145853_inter.lis:1202:Cycle Number: 83 9800_150517145853_inter.lis:2383:Cycle Number: 84 9800_150517145853_inter.lis:3569:Cycle Number: 85 9800_150517145853_inter.lis:4760:Cycle Number: 86 9800_150517145918_inter.lis:1202:Cycle Number: 83 9800_150517145918_inter.lis:2383:Cycle Number: 84 9800_150517145918_inter.lis:3569:Cycle Number: 85 9800_150517145918_inter.lis:4760:Cycle Number: 86 9800_150517145918_inter.lis:5947:Cycle Number: 87 9800_150601145352_inter.lis:1190:Cycle Number: 88 9800_150601153111_inter.lis:1187:Cycle Number: 89 9800_150601153335_inter.lis:1187:Cycle Number: 89 9800_150601153401_inter.lis:1187:Cycle Number: 89 9800_150601153932_inter.lis:1187:Cycle Number: 89 9800_150601154024_inter.lis:1187:Cycle Number: 89 9800_150601154240_inter.lis:1187:Cycle Number: 89 9800_150601154908_inter.lis:1187:Cycle Number: 89 9800_150601155040_inter.lis:1187:Cycle Number: 89 9800_150601155157_inter.lis:1187:Cycle Number: 89 9800_150601155157_inter.lis:2370:Cycle Number: 90 9800_150606150859_inter.lis:1186:Cycle Number: 91 9800_150616145526_inter.lis:1194:Cycle Number: 92 9800_150621145954_inter.lis:1194:Cycle Number: 92 9800_150621150655_inter.lis:1194:Cycle Number: 92 9800_150621150751_inter.lis:1194:Cycle Number: 92 9800_150621152352_inter.lis:1194:Cycle Number: 92 9800_150621152424_inter.lis:1194:Cycle Number: 92 9800_150621152619_inter.lis:1194:Cycle Number: 92 9800_150621153357_inter.lis:1194:Cycle Number: 92 9800_150621153451_inter.lis:1194:Cycle Number: 92 9800_150621153451_inter.lis:2376:Cycle Number: 93 9800_150621153509_inter.lis:1194:Cycle Number: 92 9800_150621153509_inter.lis:2376:Cycle Number: 93 9800_150621153612_inter.lis:1194:Cycle Number: 92 9800_150621153612_inter.lis:2376:Cycle Number: 93 9800_150621153641_inter.lis:1194:Cycle Number: 92 9800_150621153641_inter.lis:2376:Cycle Number: 93 9800_150621154155_inter.lis:1194:Cycle Number: 92 9800_150621154155_inter.lis:2376:Cycle Number: 93 9800_150621154226_inter.lis:1194:Cycle Number: 92 9800_150621154226_inter.lis:2376:Cycle Number: 93 9800_150621154259_inter.lis:1194:Cycle Number: 92 9800_150621154259_inter.lis:2376:Cycle Number: 93 9800_150621154330_inter.lis:1194:Cycle Number: 92 9800_150621154330_inter.lis:2376:Cycle Number: 93 9800_150621154330_inter.lis:3558:Cycle Number: 94 2020/10/24 > !cp argoinfo_file_afterread.mat argoinfo_file_afterread_20201023.mat add icycles to argoinfo_file_afterread.mat Get these files to fix /data1/solo1/data/surface/300034012720680/0946.sbd /data1/solo1/data/surface/300034012178480/0970.sbd /data1/solo1/data/surface/300034012176480/1064.sbd /data1/solo1/data/surface/300234010262540/1143.sbd 2020/10/26 ---------- scp argus:/data1/solo1/data/surface/300034012720680/0946.sbd . scp argus:/data1/solo1/data/surface/300034012178480/0970.sbd . scp argus:/data1/solo1/data/surface/300034012176480/1064.sbd . scp argus:/data1/solo1/data/surface/300234010262540/1143.sbd . fixed a line each that had drop-outs then return scp 0946.sbd argus:/data1/solo1/data/surface/300034012720680/ scp 0970.sbd argus:/data1/solo1/data/surface/300034012178480/ scp 1064.sbd argus:/data1/solo1/data/surface/300034012176480/ scp 1143.sbd argus:/data1/solo1/data/surface/300234010262540/ Ah: does not work! I do not have write permission to argus:/data1/solo1/data/surface/[IMEI] But by now I have learned another fix: ignore lines that do not have the full count of fields, 14 here. run f_fixpos1.m generates argoinfo_fb().canfixfix : same number of elements as .nb 0 if can not be fixes, 3 if has an IR fix previously not added (editing of IR: within a day of JULD, and IR QF<15) also argoinfo_fb().nbr same as .nb but reduced for the indeces where an IR fix can be added, i.e., the fields were .canfixfix = 3. example: .nb = [3 4 5 8] .canfixfix = [0 0 3 0] .nbr = [3 4 8] (actuall, there is of course no space: [3 4 8]) so the idea is that eventually all nbr's are wiped out by interpolation etc. For interpolation, .canfixfix will be "9". Running f_fixpos1 finds 30 floats for which 123 fixes can be found, reducing the number of total missing fixes from 1073 to 950. ------------------------------------ 2020/10/27 quantifying gaps. Make structure gaps It determines gaps.start and gaps.end, which shows the first and last index for a contiguous GPS gap. So for a one-fix "hole", start and end are the same. calculated by third_tests.m found 482 gaps saved in gaps_file.mat I struggle with an odd case: gaps(281) is very large (45 cycles) It relates to argoinfo_fb(741). Why are the existing Iridium fixes not substituted? ---------------------------------------- 2020/11/10 Returning after argus->tethys move, and "distraction" by ongoing Pickart cruise: Approach: have a list of positions that can be fixed: - one entry per missing position; so one float can have multiple entries. - to identify them includes QC graphics, such as a speed check; to be made still. - each entry then triggers generation of a D file, based on the original D but with a fixed position and .nc comments, ready for re-submission; - eventual general tool will cover GPS hole interpolation, but not special cases like missing IR fixes or starting positions. Those I will deal with here before, using the "nb->nbr" approach outlined above. So: before I get to the interpolation, let along extrapolation, I first need to fix the "special cases" like IR and launch_pos. But I also need graphics for that. Start with remaining SOLO1 IR position fills, and graphics thereof. 1. question: why does ii=741, WMO=3900758, not work? 0962 SS201_SB19 IRIDIUM IRIDIUM 300034012170600 3382 20100206 1 3900758 3900758 $ARGODATA look for surface/0962 file. Turns out that the IR fixes disappeared around Day 200 into the souther ocean float's life (61 cycles, not quite 600 days), then re-appeared 30 months later. The IR fixes only start 2.5 years AFTER the last good position, and 1.5 years after the last cycle. however, the following floats do have IR positions we can add: ii wmoid sum of 3's, one each for possible IR fix 536 7900046 9 536 595 7900049 3 595 617 7900057 6 617 634 3900735 12 634 637 7900058 3 637 733 1901004 6 733 734 1901010 3 734 735 1901011 12 735 737 1901007 6 737 738 1901448 6 738 740 3900759 3 744 1901006 114 744 753 1901455 9 753 763 1901466 6 763 768 1901456 21 768 770 4901043 3 790 4901211 45 790 799 1901484 12 799 816 3900767 6 820 4901225 6 822 4901283 3 831 1901498 27 831 833 1901502 15 833 836 1901503 3 843 1901529 3 855 1901540 3 918 4901298 3 928 4901400 3 932 1901633 9 937 1901634 9>> ah, found bug: a logical "&" was instead coded as a "+" Afterr that, I am left with: 733 1901004 3 737 1901007 6 740 3900759 3 744 1901006 51 763 1901466 3 768 1901456 18 790 4901211 21 816 3900767 3 831 1901498 3 843 1901529 3 But those still use .sbd files, which list all IR fixes. Alex also made .srf files, which calculated a position based on good IR fixes. Redo using those: (and add as column higher up) for ii=536, WMO=7900046, found 3 IR fixes 7900046 for ii=595, WMO=7900049, found 1 IR fixes 7900049 for ii=617, WMO=7900057, found 2 IR fixes 7900057 for ii=634, WMO=3900735, found 1 IR fixes 3900735 for ii=637, WMO=7900058, found 1 IR fixes 7900058 for ii=733, WMO=1901004, found 1 IR fixes 1901004 for ii=734, WMO=1901010, found 1 IR fixes 1901010 for ii=735, WMO=1901011, found 4 IR fixes 1901011 for ii=737, WMO=1901007, found 1 IR fixes 1901007 for ii=738, WMO=1901448, found 2 IR fixes 1901448 for ii=744, WMO=1901006, found 36 IR fixes 1901006 for ii=753, WMO=1901455, found 3 IR fixes 1901455 for ii=763, WMO=1901466, found 1 IR fixes 1901466 for ii=768, WMO=1901456, found 6 IR fixes 1901456 for ii=790, WMO=4901211, found 15 IR fixes 4901211 for ii=799, WMO=1901484, found 3 IR fixes 1901484 for ii=831, WMO=1901498, found 6 IR fixes 1901498 for ii=833, WMO=1901502, found 5 IR fixes 1901502 >> 2020/11/13 ---------- save previous argoinfo_file_afterread.mat to argoinfo_file_afterread_20201013.mat run r_srffile1.m added field "i_txyn" to argoinfo_fb, holding the .srf files translated into a matrix for each float. new routine: f_fixpos2.m note it takes a quite different approach from f_fixpos1.m, which had used the individual IR fixes from each float email. Here, we are basing the fixing of missing positions of SOLO1 IR floats on Alex' IR positions derived by an edited/weighted average of all IR fixes around a float profile. Time convention: datestr(argoinfo_fb(536).i_txyn(5)) = '29-Jan-2007 09:09:00' datestr(argoinfo_fb(536).julds(5)+toff) = '29-Jan-2007 09:06:39' datenum(1950,1,1) = 712224 = toff redo setting for a new "canfixfix", but call it "canfixsrf" to make clear its based on IR positions from the .srf fils ----------------- interlude: an odd float ----------------------- I tested f_fixpos2.m on 546, 7900046, which is an odd float: stuck at depth. Its cycles are somewhat out of order. Because the float is so "messed up", I decide to not deal with, say, fixing the icycle order. for ii=47, wmo=4900268, type 1: JULD not in order by 2 out of 102 for ii=48, wmo=4900269, type 1: JULD not in order by 2 out of 2 for ii=49, wmo=4900270, type 1: JULD not in order by 2 out of 102 for ii=51, wmo=4900272, type 1: JULD not in order by 2 out of 102 for ii=52, wmo=4900273, type 1: JULD not in order by 2 out of 102 for ii=110, wmo=4900228, type 1: JULD not in order by 2 out of 191 for ii=536, wmo=7900046, type 3: JULD not in order by 21 out of 54 for ii=577, wmo=4900845, type 3: JULD not in order by 2 out of 191 for ii=606, wmo=7900053, type 3: JULD not in order by 2 out of 275 for ii=738, wmo=1901448, type 3: JULD not in order by 30 out of 122 >> ----------------- end interlude --------------------------------- ---------------- interlude: fix sign in lat/lon: -------------- ii=768; % 1901456; argoinfo_fb(ii).lons(2)=argoinfo_fb(ii).lons(2)*-1; ---------------- end interlude ---------------------------------- 2020/11/14 ---------------- interlude: first fix has qc=4, though seemed fine: ------------------- noticed by accident for ii=753, 1901455; Why marked? Test: how many more like that? found 187 flagged positions in 119 floats (for all types, though most for type 2, ARGOS) type 4: 117 type 5: 70 in detail: for ii=24, wmo=4900159, type 2: found 4 qc=1 pos at cycle 200 for ii=58, wmo=1900059, type 2: found 4 qc=1 pos at cycle 213 for ii=66, wmo=4900232, type 2: found 4 qc=2 pos at cycle 165 199 for ii=70, wmo=4900359, type 2: found 4 qc=1 pos at cycle 148 for ii=90, wmo=4900424, type 2: found 4 qc=1 pos at cycle 217 for ii=110, wmo=4900228, type 1: found 4 qc=3 pos at cycle 140 141 196 for ii=117, wmo=4900438, type 2: found 4 qc=1 pos at cycle 156 for ii=128, wmo=3900149, type 2: found 4 qc=1 pos at cycle 153 for ii=177, wmo=4900545, type 2: found 4 qc=1 pos at cycle 195 for ii=183, wmo=4900551, type 2: found 4 qc=1 pos at cycle 136 for ii=204, wmo=1900426, type 2: found 4 qc=1 pos at cycle 122 for ii=207, wmo=1900430, type 2: found 4 qc=1 pos at cycle 122 for ii=213, wmo=4900584, type 2: found 4 qc=1 pos at cycle 121 for ii=235, wmo=3900356, type 2: found 4 qc=1 pos at cycle 46 for ii=243, wmo=3900367, type 2: found 4 qc=1 pos at cycle 137 for ii=259, wmo=4900600, type 2: found 4 qc=1 pos at cycle 96 for ii=261, wmo=1900492, type 2: found 4 qc=2 pos at cycle 60 154 for ii=268, wmo=4900601, type 2: found 4 qc=1 pos at cycle 38 for ii=292, wmo=4900614, type 2: found 4 qc=1 pos at cycle 113 for ii=301, wmo=3900445, type 2: found 4 qc=1 pos at cycle 140 for ii=302, wmo=6900124, type 2: found 4 qc=1 pos at cycle 126 for ii=304, wmo=1900528, type 2: found 4 qc=1 pos at cycle 63 for ii=324, wmo=1900535, type 2: found 4 qc=1 pos at cycle 86 for ii=335, wmo=1900562, type 2: found 4 qc=1 pos at cycle 85 for ii=341, wmo=4900687, type 2: found 4 qc=1 pos at cycle 50 for ii=346, wmo=1900643, type 2: found 4 qc=1 pos at cycle 100 for ii=348, wmo=3900489, type 2: found 4 qc=2 pos at cycle 75 109 for ii=350, wmo=3900488, type 2: found 4 qc=1 pos at cycle 112 for ii=352, wmo=3900490, type 2: found 4 qc=1 pos at cycle 141 for ii=367, wmo=5901106, type 2: found 4 qc=1 pos at cycle 112 for ii=368, wmo=5901104, type 2: found 4 qc=1 pos at cycle 89 for ii=371, wmo=1900576, type 2: found 4 qc=2 pos at cycle 5 14 for ii=372, wmo=1900577, type 2: found 4 qc=1 pos at cycle 131 for ii=373, wmo=1900573, type 2: found 4 qc=1 pos at cycle 77 for ii=374, wmo=1900578, type 2: found 4 qc=3 pos at cycle 77 130 135 for ii=375, wmo=1900579, type 2: found 4 qc=1 pos at cycle 106 for ii=379, wmo=1900583, type 2: found 4 qc=1 pos at cycle 92 for ii=381, wmo=3900564, type 2: found 4 qc=1 pos at cycle 127 for ii=385, wmo=1900636, type 2: found 4 qc=2 pos at cycle 67 72 for ii=398, wmo=1900647, type 2: found 4 qc=1 pos at cycle 13 for ii=400, wmo=1900683, type 2: found 4 qc=1 pos at cycle 64 for ii=401, wmo=1900649, type 2: found 4 qc=1 pos at cycle 40 for ii=402, wmo=1900684, type 2: found 4 qc=4 pos at cycle 52 128 130 132 for ii=403, wmo=1900685, type 2: found 4 qc=2 pos at cycle 32 99 for ii=406, wmo=3900601, type 2: found 4 qc=1 pos at cycle 19 for ii=407, wmo=3900603, type 2: found 4 qc=1 pos at cycle 77 for ii=431, wmo=1900703, type 2: found 4 qc=1 pos at cycle 98 for ii=444, wmo=1900711, type 2: found 4 qc=1 pos at cycle 59 for ii=455, wmo=3900580, type 2: found 4 qc=1 pos at cycle 42 for ii=465, wmo=4900775, type 2: found 4 qc=1 pos at cycle 25 for ii=466, wmo=4900776, type 2: found 4 qc=3 pos at cycle 109 111 113 for ii=467, wmo=4900777, type 2: found 4 qc=1 pos at cycle 47 for ii=476, wmo=4900782, type 2: found 4 qc=2 pos at cycle 25 32 for ii=480, wmo=4900786, type 2: found 4 qc=1 pos at cycle 49 for ii=482, wmo=4900788, type 2: found 4 qc=1 pos at cycle 80 for ii=489, wmo=4900792, type 2: found 4 qc=1 pos at cycle 82 for ii=490, wmo=3900592, type 2: found 4 qc=1 pos at cycle 66 for ii=497, wmo=1900735, type 2: found 4 qc=1 pos at cycle 99 for ii=498, wmo=1900736, type 2: found 4 qc=2 pos at cycle 37 93 for ii=500, wmo=1900737, type 2: found 4 qc=1 pos at cycle 45 for ii=501, wmo=3900595, type 2: found 4 qc=1 pos at cycle 13 for ii=506, wmo=4900804, type 2: found 4 qc=1 pos at cycle 52 for ii=512, wmo=1900753, type 2: found 4 qc=1 pos at cycle 57 for ii=522, wmo=1900746, type 2: found 4 qc=1 pos at cycle 86 for ii=526, wmo=7900044, type 2: found 4 qc=1 pos at cycle 52 for ii=530, wmo=3900797, type 2: found 4 qc=1 pos at cycle 53 for ii=533, wmo=3900801, type 2: found 4 qc=1 pos at cycle 69 for ii=534, wmo=3900802, type 2: found 4 qc=1 pos at cycle 20 for ii=546, wmo=6900311, type 2: found 4 qc=1 pos at cycle 10 for ii=547, wmo=6900312, type 2: found 4 qc=1 pos at cycle 6 for ii=553, wmo=1900762, type 2: found 4 qc=1 pos at cycle 53 for ii=561, wmo=1900763, type 2: found 4 qc=1 pos at cycle 27 for ii=604, wmo=4901039, type 2: found 4 qc=1 pos at cycle 61 for ii=613, wmo=1900783, type 2: found 4 qc=1 pos at cycle 9 for ii=623, wmo=3900650, type 2: found 4 qc=1 pos at cycle 0 for ii=624, wmo=3900651, type 2: found 4 qc=1 pos at cycle 8 for ii=640, wmo=1900790, type 2: found 4 qc=1 pos at cycle 0 for ii=642, wmo=1900788, type 2: found 4 qc=1 pos at cycle 53 for ii=644, wmo=1900792, type 2: found 4 qc=1 pos at cycle 0 for ii=661, wmo=3900691, type 2: found 4 qc=1 pos at cycle 13 for ii=687, wmo=3900727, type 3: found 4 qc=1 pos at cycle 0 for ii=733, wmo=1901004, type 3: found 4 qc=1 pos at cycle 0 for ii=753, wmo=1901455, type 3: found 4 qc=1 pos at cycle 0 for ii=825, wmo=4901282, type 3: found 4 qc=1 pos at cycle 142 for ii=879, wmo=1901559, type 3: found 4 qc=1 pos at cycle 122 for ii=880, wmo=1901580, type 2: found 4 qc=1 pos at cycle 0 for ii=1005, wmo=4901473, type 4: found 4 qc=1 pos at cycle 0 for ii=1015, wmo=1901656, type 2: found 4 qc=1 pos at cycle 0 for ii=1025, wmo=4901588, type 4: found 4 qc=1 pos at cycle 145 for ii=1040, wmo=4901478, type 4: found 4 qc=1 pos at cycle 0 for ii=1041, wmo=4901482, type 4: found 4 qc=1 pos at cycle 0 for ii=1042, wmo=4901481, type 4: found 4 qc=1 pos at cycle 0 for ii=1043, wmo=4901483, type 4: found 4 qc=1 pos at cycle 0 for ii=1065, wmo=1901706, type 3: found 4 qc=1 pos at cycle 70 for ii=1079, wmo=4901628, type 4: found 4 qc=1 pos at cycle 0 for ii=1085, wmo=4901631, type 4: found 4 qc=1 pos at cycle 0 for ii=1086, wmo=4901629, type 4: found 4 qc=1 pos at cycle 0 for ii=1089, wmo=4901624, type 4: found 4 qc=1 pos at cycle 0 for ii=1215, wmo=4903219, type 5: found 4 qc=1 pos at cycle 0 for ii=1221, wmo=4903059, type 4: found 4 qc=1 pos at cycle 0 found 117 flagged positions in 100 floats for ii=35, wmo=4900230, type 1: found 13 qc=5 pos at cycle 3 5 7 11 22 28 29 38 43 44 47 51 53 for ii=47, wmo=4900268, type 1: found 7 qc=5 pos at cycle 4 7 8 9 15 26 41 for ii=49, wmo=4900270, type 1: found 6 qc=5 pos at cycle 11 18 29 32 34 42 for ii=50, wmo=4900271, type 1: found 3 qc=5 pos at cycle 27 33 40 for ii=51, wmo=4900272, type 1: found 5 qc=5 pos at cycle 3 11 35 41 42 for ii=52, wmo=4900273, type 1: found 7 qc=5 pos at cycle 1 18 24 29 32 41 42 for ii=63, wmo=1900168, type 1: found 5 qc=5 pos at cycle 6 7 8 14 17 for ii=64, wmo=1900167, type 1: found 4 qc=5 pos at cycle 7 9 16 18 for ii=67, wmo=4900366, type 1: found 1 qc=5 pos at cycle 5 for ii=68, wmo=4900367, type 1: found 3 qc=5 pos at cycle 1 4 10 for ii=69, wmo=4900358, type 1: found 1 qc=5 pos at cycle 11 for ii=72, wmo=4900361, type 1: found 1 qc=5 pos at cycle 7 for ii=87, wmo=4900382, type 1: found 1 qc=5 pos at cycle 5 for ii=96, wmo=1900244, type 1: found 1 qc=5 pos at cycle 1 for ii=97, wmo=1900245, type 1: found 2 qc=5 pos at cycle 1 3 for ii=98, wmo=4900427, type 1: found 1 qc=5 pos at cycle 1 for ii=100, wmo=4900428, type 1: found 1 qc=5 pos at cycle 3 for ii=104, wmo=1900255, type 1: found 2 qc=5 pos at cycle 1 2 for ii=109, wmo=3900148, type 1: found 1 qc=5 pos at cycle 1 for ii=110, wmo=4900228, type 1: found 5 qc=5 pos at cycle 1 54 87 88 127 found 70 flagged positions in 20 floats >> ---------------------------- end interlude--------------------------------------------- 2020/11/16 run f_fixpos2.m for SOLO1 IR substitutions ii=536, wmo=7900046 % not yet: something looks wrong. Fixed 595, 7900049 Fixed 2020/11/17 ran f_fixpos2.m through, have now "solo1irsubs.mat" with structure "updateinfo" with 18 floats: WMO cycle no ---------------------- 7900046: 56 57 58 7900049: 2 7900057: 1 2 3900735: 0 7900058: 8 1901004: 256 1901010: 131 1901011: 35 36 37 46 1901007: 3 1901448: 88 92 1901006: 1 2 9 10 11 12 13 14 16 17 18 19 20 21 22 23 24 25 26 28 30 36 43 44 45 46 47 49 51 52 53 54 55 56 57 58 1901455: 10 21 22 1901466: 256 1901456: 8 17 38 42 44 51 4901211: 46 54 60 65 70 72 121 122 125 134 137 138 139 140 149 1901484: 13 15 16 1901498: 112 113 135 159 179 209 1901502: 3 4 6 7 8 That jibes with the listing from just-prior-2020/11/13. !copy solo1irsubs.mat solo1irsubs_20201117.mat So that copy has a complete run now! Save what we had up to now: !copy argoinfo_file_afterread.mat argoinfo_file_afterread_20201117.mat now also save updated argoinfo_fb with the updated fields canfixfix1 and nbr1 save argoinfo_file_afterread argoinfo_fb But things are also getting a bit confusing with my various indeces. Add one more item: lons_ori lats_ori posqcs_ori then update lons, lats, and pos_qcs with the newly found fixes. program update_argoinfofb.m save argoinfo_file_afterread argoinfo_fb and save that into a dated file: !copy argoinfo_file_afterread.mat argoinfo_file_afterread_20201117a.mat 2020/11/18 --------- ran f_fixpos2.m to generate structure updateinfo_fb to hold the 18 floats with SOLO1 IR fixes to be added; Ran upd_D.m, which does the actual work of updating the 92 .nc files including HISTORY statements. They are copied to a local dir first, gpsinterp/upd_d_dir, then scp'ed to tethys, solo2/gpsinterp/upd_d_dir. There, I run call_cleanvalidatecowmp.m, which calls slightly modified versions of clean_validate_cow_mp.m and aoml_que.m, with modifications of 1) the "QC3" path, and 2) a dir statement that now allows for several WMO# to be within that "QC3" dir. The updateinfo structure for these updated cycles - SOLO1 IR substitutions - is in the file solo1irsubs_20201117.mat Add field to updateinfo to indicate that this part was for SOLO1 IR substitutions load solo1irsubs_20201117.mat for ii=1:length(updateinfo) updateinfo(ii).fixedbytype=3; end save upd_D.mat updateinfo These are the .nc files that saw position fixing: D1901004_256.nc D1901006_001.nc D1901006_002.nc D1901006_009.nc D1901006_010.nc D1901006_011.nc D1901006_012.nc D1901006_013.nc D1901006_014.nc D1901006_016.nc D1901006_017.nc D1901006_018.nc D1901006_019.nc D1901006_020.nc D1901006_021.nc D1901006_022.nc D1901006_023.nc D1901006_024.nc D1901006_025.nc D1901006_026.nc D1901006_028.nc D1901006_030.nc D1901006_036.nc D1901006_043.nc D1901006_044.nc D1901006_045.nc D1901006_046.nc D1901006_047.nc D1901006_049.nc D1901006_051.nc D1901006_052.nc D1901006_053.nc D1901006_054.nc D1901006_055.nc D1901006_056.nc D1901006_057.nc D1901006_058.nc D1901007_003.nc D1901010_131.nc D1901011_035.nc D1901011_036.nc D1901011_037.nc D1901011_046.nc D1901448_088.nc D1901448_092.nc D1901455_010.nc D1901455_021.nc D1901455_022.nc D1901456_008.nc D1901456_017.nc D1901456_038.nc D1901456_042.nc D1901456_044.nc D1901456_051.nc D1901466_256.nc D1901484_013.nc D1901484_015.nc D1901484_016.nc D1901498_112.nc D1901498_113.nc D1901498_135.nc D1901498_159.nc D1901498_179.nc D1901498_209.nc D1901502_003.nc D1901502_004.nc D1901502_006.nc D1901502_007.nc D1901502_008.nc D3900735_000.nc D4901211_046.nc D4901211_054.nc D4901211_060.nc D4901211_065.nc D4901211_070.nc D4901211_072.nc D4901211_121.nc D4901211_122.nc D4901211_125.nc D4901211_134.nc D4901211_137.nc D4901211_138.nc D4901211_139.nc D4901211_140.nc D4901211_149.nc D7900046_056.nc D7900046_057.nc D7900046_058.nc D7900049_002.nc D7900057_001.nc D7900057_002.nc D7900058_008.nc 2020/11/19 ----------- next: fill initial (cycle 0) missing positions with the launch position. program f_fixpos3.m continue 2020/11/30, below 2020/11/23 ---------------- interlude: test SOLO2 Iridium substitutions -------- Breck had found a file with IR fixes for the example SOLO2 I emailed him late Thursday. /data1/solo2/data/surf. WMO 4901588, WHOI 7176.sfc, have 6 floats of type 4, no 5: 12 missing fixes for 921, 3901036, 7038, type 4: have 1 missings for 923, 3900838, 7027, type 4: have 1 missings for 1020, 1901686, 7140, type 4: have 1 missings for 1045, 4901581, 7171, type 4: have 2 missings for 1069, 1901709, 7152, type 4: have 1 missings for 1115, 4901721, 7261, type 4: have 6 missings argolkjlkjlkjlkjlkjlkj for 1005, 4901473, 7132, type 4: have 1 qc=4 for 1025, 4901588, 7176, type 4: have 1 qc=4 for 1040, 4901478, 7088, type 4: have 1 qc=4 for 1041, 4901482, 7161, type 4: have 1 qc=4 for 1042, 4901481, 7117, type 4: have 1 qc=4 for 1043, 4901483, 7168, type 4: have 1 qc=4 for 1079, 4901628, 7205, type 4: have 1 qc=4 for 1085, 4901631, 7211, type 4: have 1 qc=4 for 1086, 4901629, 7208, type 4: have 1 qc=4 for 1089, 4901624, 7232, type 4: have 1 qc=4 for 1215, 4903219,11020, type 5: have 1 qc=4 for 1221, 4903059, 7511, type 4: have 1 qc=4 scp fbahr@argus:/data1/solo2/data/surf/7038.sfc . scp fbahr@argus:/data1/solo2/data/surf/7027.sfc . scp fbahr@argus:/data1/solo2/data/surf/7140.sfc . scp fbahr@argus:/data1/solo2/data/surf/7171.sfc . scp fbahr@argus:/data1/solo2/data/surf/7152.sfc . scp fbahr@argus:/data1/solo2/data/surf/7261.sfc . scp fbahr@argus:/data1/solo2/data/surf/7132.sfc . scp fbahr@argus:/data1/solo2/data/surf/7176.sfc . scp fbahr@argus:/data1/solo2/data/surf/7088.sfc . scp fbahr@argus:/data1/solo2/data/surf/7161.sfc . scp fbahr@argus:/data1/solo2/data/surf/7117.sfc . scp fbahr@argus:/data1/solo2/data/surf/7168.sfc . scp fbahr@argus:/data1/solo2/data/surf/7205.sfc . scp fbahr@argus:/data1/solo2/data/surf/7211.sfc . scp fbahr@argus:/data1/solo2/data/surf/7208.sfc . scp fbahr@argus:/data1/solo2/data/surf/7232.sfc . scp fbahr@argus:/data1/solo2/data/surf/7511.sfc . scp fbahr@argus:/data1/solo2/data/surf/11020.sfc . did not work well. cp /data1/solo2/data/surf/7038.sfc . cp /data1/solo2/data/surf/7027.sfc . cp /data1/solo2/data/surf/7140.sfc . cp /data1/solo2/data/surf/7171.sfc . cp /data1/solo2/data/surf/7152.sfc . cp /data1/solo2/data/surf/7261.sfc . cp /data1/solo2/data/surf/7132.sfc . cp /data1/solo2/data/surf/7176.sfc . cp /data1/solo2/data/surf/7088.sfc . cp /data1/solo2/data/surf/7161.sfc . cp /data1/solo2/data/surf/7117.sfc . cp /data1/solo2/data/surf/7168.sfc . cp /data1/solo2/data/surf/7205.sfc . cp /data1/solo2/data/surf/7211.sfc . cp /data1/solo2/data/surf/7208.sfc . cp /data1/solo2/data/surf/7232.sfc . cp /data1/solo2/data/surf/7511.sfc . cp /data1/solo2/data/surf/11020.sfc . then tar it, scp it. 2020/11/23 ---------- Look in detail: what can be fixed: SOLO2 missing fixes: for 921, 3901036, 7038, type 4: have 1 missings yes cycle 0 for 923, 3900838, 7027, type 4: have 1 missings yes cycle 8 for 1020, 1901686, 7140, type 4: have 1 missings yes cycle 270 for 1045, 4901581, 7171, type 4: have 2 missings yes to both; icycles 227 233 for 1069, 1901709, 7152, type 4: have 1 missings no for 1115, 4901721, 7261, type 4: have 6 missings no use f_fixpos4.m to address those. run update_argoinfofb1.m for those ------------------------------------------------------ use f_fixpos5.m to check out these fixes with QC=4: SOLO2 S2A with QC=4: 1005, 4901473, 7132, 4 1 (index, not cycle; so "1" is usually cycle 0) 1025, 4901588, 7176, 4 138 fix elsewhere!!! 1040, 4901478, 7088, 4 1 1041, 4901482, 7161, 4 1 1042, 4901481, 7117, 4 1 1043, 4901483, 7168, 4 1 1079, 4901628, 7205, 4 1 1085, 4901631, 7211, 4 1 1086, 4901629, 7208, 4 1 1089, 4901624, 7232, 4 1 1221, 4903059, 7511, 4 1 ALTO with QC=4 1215, 4903219, 11020, 5 1 also have a few SOLO1 floats with QC=4 687, 3900727, 850, 3 1 733, 1901004, 949, 3 1 753, 1901455, 969, 3 1 825, 4901282, 1038, 3 143 879, 1901559, 1070, 3 123 checked with edit_argo_qc_mp: 1065, 1901706, 1152, 3 71 All these QC=4 cases were fine OTHER THAN 1025, 4901588, 7176, 4 138 fix elsewhere!!! I added that to the cases addressed in f_fixpos4.m 2020/11/27 ---------- updated html documentation It makes sense to continue the QC=4 checks for all floats. Update f_fixpos5.m to f_fixpos5a.m: allow for multiple occasions per float: ORBCOMM 110, 4900228, 144, 1 140 141 196 % second one had rel. large speed, but still looked possible; lateron, several other cycles had the similar and larger speeds ARGOS 24, 4900159, 26, 2 200 ok 58, 1900059, 130, 2 213 ok 66, 4900232, 184, 2 165 199 ok 70, 4900359, 166, 2 148 ok 90, 4900424, 185, 2 217 ok 117, 4900438, 234, 2 156 ok 128, 3900149, 260, 2 153 ok 177, 4900545, 310, 2 195 ok 183, 4900551, 288, 2 136 ok 204, 1900426, 333, 2 122 ok 207, 1900430, 276, 2 122 ok 213, 4900584, 335, 2 121 ok 235, 3900356, 347, 2 46 ok 243, 3900367, 377, 2 137 ok 259, 4900600, 400, 2 96 ok 261, 1900492, 382, 2 60 154 ok 268, 4900601, 406, 2 38 looks likely bad 292, 4900614, 439, 2 113 ok 301, 3900445, 429, 2 140 ok 302, 6900124, 397, 2 126 ok 304, 1900528, 444, 2 63 ok 324, 1900535, 458, 2 86 ok 335, 1900562, 463, 2 85 ok 341, 4900687, 462, 2 50 ok 346, 1900643, 499, 2 100 ok 348, 3900489, 500, 2 75 109 ok 350, 3900488, 469, 2 112 ok 352, 3900490, 504, 2 141 ok 367, 5901106, 525, 2 112 ok 368, 5901104, 521, 2 89 ok 371, 1900576, 517, 2 5 14 ok 372, 1900577, 516, 2 131 ok 373, 1900573, 503, 2 77 ok check eith edit_argo_qc_mp: nothing obvious 374, 1900578, 519, 2 77 130 135 ok 375, 1900579, 526, 2 106 ok 379, 1900583, 534, 2 92 ok 381, 3900564, 537, 2 127 ok 385, 1900636, 542, 2 67 72 ok 398, 1900647, 510, 2 13 ok 400, 1900683, 524, 2 64 ok 401, 1900649, 527, 2 40 ok 402, 1900684, 513, 2 52 128 130 132 ok 403, 1900685, 518, 2 32 99 ok 406, 3900601, 432, 2 19 ok 407, 3900603, 477, 2 77 ok 431, 1900703, 550, 2 98 ok 444, 1900711, 536, 2 59 ok 455, 3900580, 593, 2 42 ok 465, 4900775, 602, 2 25 ok 466, 4900776, 607, 2 109 111 113 ok 467, 4900777, 615, 2 47 ok 476, 4900782, 601, 2 25 32 ok 480, 4900786, 618, 2 49 ok 482, 4900788, 620, 2 80 ok 489, 4900792, 631, 2 82 ok 490, 3900592, 673, 2 66 ok 497, 1900735, 637, 2 99 ok 498, 1900736, 640, 2 37 93 ok 500, 1900737, 629, 2 45 ok 501, 3900595, 651, 2 13 likely bad 506, 4900804, 704, 2 52 ok 512, 1900753, 652, 2 57 ok 522, 1900746, 657, 2 86 ok 526, 7900044, 648, 2 52 ok 530, 3900797, 502, 2 53 ok 533, 3900801, 632, 2 69 ok 534, 3900802, 633, 2 20 ok 546, 6900311, 662, 2 10 ok 547, 6900312, 665, 2 6 ok 553, 1900762, 712, 2 53 ok 561, 1900763, 723, 2 27 ok 604, 4901039, 747, 2 61 ok 613, 1900783, 773, 2 9 ok 623, 3900650, 676, 2 0 ok 624, 3900651, 687, 2 8 ok 640, 1900790, 790, 2 0 ok 642, 1900788, 801, 2 53 ok 644, 1900792, 793, 2 0 ok 661, 3900691, 756, 2 13 ok 880, 1901580, 1118, 2 0 only fix; check again launch; leave out for now 1015, 1901656, 1167, 2 0 ok 2020/11/30 --------------------- next: return to fill initial (cycle 0) missing positions with the launch position. program f_fixpos3.m ii WMO 48 4900269 n_meta: 51 messed up: has only two profiles. R files show cycle 0 with position, equal to launch cycle 1 is 99999. D files have 99999 for cycle 0, launch pos for cycle 1. Can't set cycle 0 to launch, that would make both the same. Has cycle 0 marked qc=2 for TSP, cycle 1 as 4. take no action. 127 3900151 n_meta: 136 129 3900152 n_meta: 143 202 3900351 n_meta: 230 420 4900750 n_meta: 445 448 3900609 n_meta: 473 okay, but unrelated: look again at lon time series: equatorial Atlantic crossing has one "back track" 473 1900734 n_meta: 498 no GPS at all for long time; can't judge if launch pos is okay; leave as is 667 1901449 n_meta: 597 fail speed test: 0.3 , large outlier (Gulf of Guinea) 788 4901213 n_meta: 858 fail also 808 4901218 n_meta: 877 fail also 819 4901224 n_meta: 883 likely some error in the launch position, but its close enought to have speed just at the limit: its about the same as a good-looking set of large values lateron. Accept launch position. 2020/12/01 --------- after fixes and mods, run f_fixpost3.m one last time. Generates updateinfo, saved into launchpossubs.mat. modified update_argoinfofb1.m to load structure "updateinfo" from file launchpossubs.mat; run it; save updated argoinfo_fb to argoinfo_file_afterread.mat -------------------------------- Need to generate the corrected .nc files next, which will be re-submitted to GDAC. based on program upd_D.m run already for SOLO1 IR substitutions. first: combine the various "updateinfo" structure into "updates": index WMOID REPAIRTYPE CYCLE# >> comb_updateinfos index into structure "updates" WMOID REPAIRTYPE CYCLE# modified D-file if made yet from which updateinfo_file? 1 7900046 3 56 D7900046_056.nc solo1irsubs_20201117.mat 2 7900046 3 57 D7900046_057.nc 3 7900046 3 58 D7900046_058.nc 4 7900049 3 2 D7900049_002.nc 5 7900057 3 1 D7900057_001.nc 6 7900057 3 2 D7900057_002.nc 7 3900735 3 0 D3900735_000.nc 8 7900058 3 8 D7900058_008.nc 9 1901004 3 256 D1901004_256.nc 10 1901010 3 131 D1901010_131.nc 11 1901011 3 35 D1901011_035.nc 12 1901011 3 36 D1901011_036.nc 13 1901011 3 37 D1901011_037.nc 14 1901011 3 46 D1901011_046.nc 15 1901007 3 3 D1901007_003.nc 16 1901448 3 88 D1901448_088.nc 17 1901448 3 92 D1901448_092.nc 18 1901006 3 1 D1901006_001.nc 19 1901006 3 2 D1901006_002.nc 20 1901006 3 9 D1901006_009.nc 21 1901006 3 10 D1901006_010.nc 22 1901006 3 11 D1901006_011.nc 23 1901006 3 12 D1901006_012.nc 24 1901006 3 13 D1901006_013.nc 25 1901006 3 14 D1901006_014.nc 26 1901006 3 16 D1901006_016.nc 27 1901006 3 17 D1901006_017.nc 28 1901006 3 18 D1901006_018.nc 29 1901006 3 19 D1901006_019.nc 30 1901006 3 20 D1901006_020.nc 31 1901006 3 21 D1901006_021.nc 32 1901006 3 22 D1901006_022.nc 33 1901006 3 23 D1901006_023.nc 34 1901006 3 24 D1901006_024.nc 35 1901006 3 25 D1901006_025.nc 36 1901006 3 26 D1901006_026.nc 37 1901006 3 28 D1901006_028.nc 38 1901006 3 30 D1901006_030.nc 39 1901006 3 36 D1901006_036.nc 40 1901006 3 43 D1901006_043.nc 41 1901006 3 44 D1901006_044.nc 42 1901006 3 45 D1901006_045.nc 43 1901006 3 46 D1901006_046.nc 44 1901006 3 47 D1901006_047.nc 45 1901006 3 49 D1901006_049.nc 46 1901006 3 51 D1901006_051.nc 47 1901006 3 52 D1901006_052.nc 48 1901006 3 53 D1901006_053.nc 49 1901006 3 54 D1901006_054.nc 50 1901006 3 55 D1901006_055.nc 51 1901006 3 56 D1901006_056.nc 52 1901006 3 57 D1901006_057.nc 53 1901006 3 58 D1901006_058.nc 54 1901455 3 10 D1901455_010.nc 55 1901455 3 21 D1901455_021.nc 56 1901455 3 22 D1901455_022.nc 57 1901466 3 256 D1901466_256.nc 58 1901456 3 8 D1901456_008.nc 59 1901456 3 17 D1901456_017.nc 60 1901456 3 38 D1901456_038.nc 61 1901456 3 42 D1901456_042.nc 62 1901456 3 44 D1901456_044.nc 63 1901456 3 51 D1901456_051.nc 64 4901211 3 46 D4901211_046.nc 65 4901211 3 54 D4901211_054.nc 66 4901211 3 60 D4901211_060.nc 67 4901211 3 65 D4901211_065.nc 68 4901211 3 70 D4901211_070.nc 69 4901211 3 72 D4901211_072.nc 70 4901211 3 121 D4901211_121.nc 71 4901211 3 122 D4901211_122.nc 72 4901211 3 125 D4901211_125.nc 73 4901211 3 134 D4901211_134.nc 74 4901211 3 137 D4901211_137.nc 75 4901211 3 138 D4901211_138.nc 76 4901211 3 139 D4901211_139.nc 77 4901211 3 140 D4901211_140.nc 78 4901211 3 149 D4901211_149.nc 79 1901484 3 13 D1901484_013.nc 80 1901484 3 15 D1901484_015.nc 81 1901484 3 16 D1901484_016.nc 82 1901498 3 112 D1901498_112.nc 83 1901498 3 113 D1901498_113.nc 84 1901498 3 135 D1901498_135.nc 85 1901498 3 159 D1901498_159.nc 86 1901498 3 179 D1901498_179.nc 87 1901498 3 209 D1901498_209.nc 88 1901502 3 3 D1901502_003.nc 89 1901502 3 4 D1901502_004.nc 90 1901502 3 6 D1901502_006.nc 91 1901502 3 7 D1901502_007.nc 92 1901502 3 8 D1901502_008.nc 93 3901036 3 0 [] solo2mis.mat 94 3900838 3 8 95 1901686 3 270 96 4901581 3 227 97 4901581 3 233 98 4901588 3 145 99 3900151 6 1 [] launchpossubs.mat 100 3900152 6 1 101 3900351 6 1 102 4900750 6 0 103 3900609 6 0 104 4901224 6 0 105 4900228 4 140 [] orbcommqc4.mat 106 4900228 4 141 107 4900228 4 196 108 4900159 4 200 [] argosqc4.mat 109 1900059 4 213 110 4900232 4 165 111 4900232 4 199 112 4900359 4 148 113 4900424 4 217 114 4900438 4 156 115 3900149 4 153 116 4900545 4 195 117 4900551 4 136 118 1900426 4 122 119 1900430 4 122 120 4900584 4 121 121 3900356 4 46 122 3900367 4 137 123 4900600 4 96 124 1900492 4 60 125 1900492 4 154 126 4900614 4 113 127 3900445 4 140 128 6900124 4 126 129 1900528 4 63 130 1900535 4 86 131 1900562 4 85 132 4900687 4 50 133 1900643 4 100 134 3900489 4 75 135 3900489 4 109 136 3900488 4 112 137 3900490 4 141 138 5901106 4 112 139 5901104 4 89 140 1900576 4 5 141 1900576 4 14 142 1900577 4 131 143 1900573 4 77 144 1900578 4 77 145 1900578 4 130 146 1900578 4 135 147 1900579 4 106 148 1900583 4 92 149 3900564 4 127 150 1900636 4 67 151 1900636 4 72 152 1900647 4 13 153 1900683 4 64 154 1900649 4 40 155 1900684 4 52 156 1900684 4 128 157 1900684 4 130 158 1900684 4 132 159 1900685 4 32 160 1900685 4 99 161 3900601 4 19 162 3900603 4 77 163 1900703 4 98 164 1900711 4 59 165 3900580 4 42 166 4900775 4 25 167 4900776 4 109 168 4900776 4 111 169 4900776 4 113 170 4900777 4 47 171 4900782 4 25 172 4900782 4 32 173 4900786 4 49 174 4900788 4 80 175 4900792 4 82 176 3900592 4 66 177 1900735 4 99 178 1900736 4 37 179 1900736 4 93 180 1900737 4 45 181 4900804 4 52 182 1900753 4 57 183 1900746 4 86 184 7900044 4 52 185 3900797 4 53 186 3900801 4 69 187 3900802 4 20 188 6900311 4 10 189 6900312 4 6 190 1900762 4 53 191 1900763 4 27 192 4901039 4 61 193 1900783 4 9 194 3900650 4 0 195 3900651 4 8 196 1900790 4 0 197 1900788 4 53 198 1900792 4 0 199 3900691 4 13 200 1901656 4 0 201 4901473 4 0 (solo2) [] solo2qc4.mat (should be called solo12qc4.mat) 202 4901478 4 0 203 4901482 4 0 204 4901481 4 0 205 4901483 4 0 206 4901628 4 0 207 4901631 4 0 208 4901629 4 0 209 4901624 4 0 210 4903059 4 0 211 3900727 4 0 (solo1) 212 1901004 4 0 213 1901455 4 0 214 4901282 4 142 215 1901559 4 122 216 1901706 4 70 217 4903219 4 0 (alto) 2020/12/02 ----------- run the next batch of D files: upd_D1, now using combined structure "updates" and an index range to work on: [93:98] : for solo2 IR (or second GPS) updates. I use "IRIDIUM " as POSITIONING_SYSEM since it at least better reflects the change to a secondary position source than leaving things with the original "GPS " There, I run call_cleanvalidatecowmp.m, which calls slightly modified versions of clean_validate_cow_mp.m and aoml_que.m, with modifications of 1) the "QC3" path, and 2) a dir statement that now allows for several WMO# to be within that "QC3" dir. Found an issue with one of the six files: clean_validate_cow_mp_fb(4901581, [227:227]) Replacing bad values in adjusted field(s) with fill value in D4901581_227.nc /shared/argo/fbtests/solo2/gpsinterp/upd_d_dir//D4901581_227.nc JULD_LOCATION[1]: 25506.895138888853: Not within 2.0 day of JULD (25495.862268544042) does this look okay? y=1, n=00 AHA!!! found typo in my reading of the .sfc file at the time, in f_fixpos4. corrected, and updated solo2mis.mat, updates_file.mat on PC, then reran upd_D1.m, scp'ed file to tethys, and ran call_cleanvalidatecowmp.m again for just that one file. Fine now, submit. 93 3901036 3 0 yes [] solo2mis.mat 94 3900838 3 8 yes 95 1901686 3 270 yes 96 4901581 3 227 yes 97 4901581 3 233 yes 98 4901588 3 145 yes -------------------------------------------------------------------------------- 99 3900151 6 1 no [] launchpossubs.mat 100 3900152 6 1 no 101 3900351 6 1 no 102 4900750 6 0 yes 103 3900609 6 0 yes 104 4901224 6 0 yes clean_validate_cow_mp_fb(3900151, [1:1]) Replacing bad values in adjusted field(s) with fill value in D3900151_001.nc /shared/argo/fbtests/solo2/gpsinterp/upd_d_dir//D3900151_001.nc JULD_LOCATION[1]: 19672.873611111194: Not within 2.0 day of JULD (19681.599085628986) does this look okay? y=1, n=00 clean_validate_cow_mp_fb(3900152, [1:1])/shared/argo/fbtests/solo2/gpsinterp/upd_d_dir//D3900152_001.nc JULD_LOCATION[1]: 19673.50208333321: Not within 2.0 day of JULD (19682.650983810425) does this look okay? y=1, n=00 clean_validate_cow_mp_fb(3900351, [1:1])/shared/argo/fbtests/solo2/gpsinterp/upd_d_dir//D3900351_001.nc DATA_MODE 'D': PRES[1] Not missing / PRES_ADJUSTED Missing (QC not 4 or 9): At 63 levels (of 63) Warning: PROFILE_PRES_QC[1] not checked due to errors in PRES data DATA_MODE 'D': TEMP[1] Not missing / TEMP_ADJUSTED Missing (QC not 4 or 9): At 63 levels (of 63) Warning: PROFILE_TEMP_QC[1] not checked due to errors in TEMP data DATA_MODE 'D': PSAL[1] Not missing / PSAL_ADJUSTED Missing (QC not 4 or 9): At 63 levels (of 63) Warning: PROFILE_PSAL_QC[1] not checked due to errors in PSAL data does this look okay? y=1, n=00 2020/12/03 ----------- adjusted argoinfo_fb in argoinfo_file_afterread.mat to reflect that 3900151 cycle 1 and 3900152 cycle 1 were NOT changed. Do NOT adjust it for 3900351, because fixing it would only trigger AGAIN the issues with the current D files. Fixing those are a distraction here. next: adjust the QC flags: modify upd_D1.m to upd_D2.m for that find that too many .nc files are missing on PC Siena; move directly to tethys. Encounter many formatting issues, like the one above, mostly for PRES but also for PSAL skip the following: skip_wmo = [ 4900545, 1900426, 1900430, 4900584, 4900600, 4900614, 3900445, 6900124, ... 1900535, 1900562, 1900643, 3900489, 3900490, 1900647]; for the rest: use tethys:/shared/argo/fbtests/solo2/gpsinterp/call_cleanvalidatecowmp.m to submit to gdac: 98 files. That jibes with having 113 QC=4 files of which 15 were skipped. Note: I checked lateron that all of those files are format version 3.1 2020/12/07 ----------- continue with GPS interpolation, f_fixpos6.m 2020/12/09 ---------- get to chat with Susan during the a0am Club when no-one else showed: "Use your judgement", she says. "Antarctic floats can be interpolated over wide gaps since AA folks know about interpolated positions since the floats spend time under ice" "Don't go across fronts or large hydrographic changes [paraphrasing]" For the last one, I figure I'll include a TS plot, possibly profile plots, to estimate. 2020/12/12 use f_fixpos7.m, which includes color TS and profile plots. Calls p_ts_2bc.m, the "to be called" version of p_ts.m which makes those TS and profile plots. also starts new file to save "updateinfo_fb" structure and png dir "interp_r3" ------------------- interlude ---------------------------------- clean_validate_cow_mp_fb(4900584, [121:121])/shared/argo/fbtests/solo2/gpsinterp/upd_d_dir//D4900584_121.nc DATA_MODE 'D': PRES[1] Not missing / PRES_ADJUSTED Missing (QC not 4 or 9): At 74 levels (of 74) Warning: PROFILE_PRES_QC[1] not checked due to errors in PRES data DATA_MODE 'D': TEMP[1] Not missing / TEMP_ADJUSTED Missing (QC not 4 or 9): At 74 levels (of 74) Warning: PROFILE_TEMP_QC[1] not checked due to errors in TEMP data DATA_MODE 'D': PSAL[1] Not missing / PSAL_ADJUSTED Missing (QC not 4 or 9): At 74 levels (of 74) Warning: PROFILE_PSAL_QC[1] not checked due to errors in PSAL data ---------------- end interlude --------------------------------- % make a list of the floats to fix here so I can get there GDAC records over to PC Siena: unique([updateinfo.wmoid], 'stable') ii= 741, wmoid=3900758 , maxgap=45 SOLO1 IR 3900758 ii= 734, wmoid=1901010 , maxgap=20 SOLO1 IR 1901010 ii= 473, wmoid=1900734 , maxgap=16 ARGOS 1900734 ii= 784, wmoid=4901208 , maxgap=16 SOLO1 IR 4901208 ii= 11, wmoid=1900033 , maxgap=15 ARGOS 1900033 not yet - do accept in second look ii= 825, wmoid=4901282 , maxgap=14 SOLO1 IR 4901282 ii= 875, wmoid=3900769 , maxgap=13 SOLO1 IR 3900769 ii= 850, wmoid=4901291 , maxgap=12 SOLO1 IR no ii= 831, wmoid=1901498 , maxgap=11 SOLO1 IR 1901498 ii= 735, wmoid=1901011 , maxgap=10 SOLO1 IR 1901011 ii=1113, wmoid=4901715 , maxgap= 9 SOLO1 IR 4901715 ii= 855, wmoid=1901540 , maxgap= 8 SOLO1 IR 1901540 ii= 918, wmoid=4901298 , maxgap= 8 SOLO1 IR 4901298 not yet - do accept in second look ii= 66, wmoid=4900232 , maxgap= 7 ARGOS 4900232 question - has many profiles missing ii= 74, wmoid=4900363 , maxgap= 6 ARGOS 4900363 question - has many profiles missing ii= 830, wmoid=1901499 , maxgap= 6 SOLO1 IR 1901499 ii= 949, wmoid=1901669 , maxgap= 6 SOLO1 IR 1901669 ii= 951, wmoid=1901668 , maxgap= 6 SOLO1 IR 1901668 ii= 790, wmoid=4901211 , maxgap= 5 SOLO1 IR 4901211 ii= 448, wmoid=3900609 , maxgap= 4 ARGOS 3900609 ii= 623, wmoid=3900650 , maxgap= 4 ARGOS 3900650 could use profile editing ii= 63, wmoid=1900168 , maxgap= 3 ORBCOMM 1900168 ii= 83, wmoid=1900242 , maxgap= 3 ARGOS 1900242 could use profile and position editing ii= 91, wmoid=4900425 , maxgap= 3 ARGOS 4900425 ii= 97, wmoid=1900245 , maxgap= 3 ORBCOMM 1900245 ii= 317, wmoid=1900534 , maxgap= 3 ARGOS 1900534 ii= 495, wmoid=4900797 , maxgap= 3 ARGOS 4900797 ii= 605, wmoid=7900052 , maxgap= 3 SOLO1 IR 7900052 ii= 731, wmoid=1901003 , maxgap= 3 SOLO1 IR 1901003 ii= 871, wmoid=3900771 , maxgap= 3 SOLO1 IR 3900771 ii=1065, wmoid=1901706 , maxgap= 3 SOLO1 IR 1901706 ii=1115, wmoid=4901721 , maxgap= 3 SOLO2 no: wide distance between profiles with no data; can't see the TS changes ii= 19, wmoid=1900040 , maxgap= 2 ARGOS 1900040 ii= 33, wmoid=1900041 , maxgap= 2 ARGOS 1900041 ii= 294, wmoid=4900606 , maxgap= 2 ARGOS 4900606 ii= 429, wmoid=3900576 , maxgap= 2 ARGOS 3900576 ii= 528, wmoid=3900607 , maxgap= 2 ARGOS not yet: large distances, and no TS data ii= 543, wmoid=5901427 , maxgap= 2 ARGOS 5901427 ii= 596, wmoid=7900050 , maxgap= 2 SOLO1 IR 7900050 ii= 617, wmoid=7900057 , maxgap= 2 SOLO1 IR 7900057 ii= 644, wmoid=1900792 , maxgap= 2 ARGOS 1900792 ii= 737, wmoid=1901007 , maxgap= 2 SOLO1 IR 1901007 ii= 740, wmoid=3900759 , maxgap= 2 SOLO1 IR 3900759 ii= 742, wmoid=3900760 , maxgap= 2 SOLO1 IR 3900760 ii= 759, wmoid=1901467 , maxgap= 2 SOLO1 IR 1901467 ii= 769, wmoid=4901044 , maxgap= 2 SOLO1 IR 4901044 ii= 816, wmoid=3900767 , maxgap= 2 SOLO1 IR 3900767 ii= 843, wmoid=1901529 , maxgap= 2 SOLO1 IR 1901529 step-through matlab up to here ii=1104, wmoid=4901707 , maxgap= 2 SOLO1 IR 4901707 ii= 14, wmoid=1900035 , maxgap= 1 ARGOS 1900035 ii= 48, wmoid=4900269 , maxgap= 1 ORBCOMM just one cycle which is bad ; skipped ii= 59, wmoid=3900058 , maxgap= 1 ARGOS 3900058 ii= 61, wmoid=1900164 , maxgap= 1 ARGOS no more bad fix ii= 73, wmoid=4900362 , maxgap= 1 ARGOS 4900362 ii= 78, wmoid=1900203 , maxgap= 1 ARGOS 1900203 ii= 82, wmoid=1900243 , maxgap= 1 ARGOS 1900243 ii= 85, wmoid=4900370 , maxgap= 1 ARGOS 4900370 ii= 90, wmoid=4900424 , maxgap= 1 ARGOS 4900424 ii= 95, wmoid=1900248 , maxgap= 1 ARGOS 1900248 ii= 121, wmoid=1900259 , maxgap= 1 ARGOS 1900259 ii= 127, wmoid=3900151 , maxgap= 1 ARGOS 3900151 ii= 129, wmoid=3900152 , maxgap= 1 ARGOS 3900152 ii= 130, wmoid=3900153 , maxgap= 1 ARGOS 3900153 ii= 131, wmoid=3900176 , maxgap= 1 ARGOS 3900176 ii= 132, wmoid=3900175 , maxgap= 1 ARGOS 3900175 ii= 135, wmoid=3900186 , maxgap= 1 ARGOS 3900186 ii= 137, wmoid=3900188 , maxgap= 1 ARGOS 3900188 ii= 139, wmoid=3900191 , maxgap= 1 ARGOS 3900191 ii= 142, wmoid=3900192 , maxgap= 1 ARGOS 3900192 ii= 143, wmoid=3900193 , maxgap= 1 ARGOS 3900193 ii= 161, wmoid=1900264 , maxgap= 1 ARGOS 1900264 ii= 162, wmoid=1900263 , maxgap= 1 ARGOS 1900263 ii= 171, wmoid=1900360 , maxgap= 1 ARGOS 1900360 ii= 177, wmoid=4900545 , maxgap= 1 ARGOS 4900545 ii= 179, wmoid=4900547 , maxgap= 1 ARGOS 4900547 ii= 199, wmoid=3900296 , maxgap= 1 ARGOS only last fix missing - can't interpolate ii= 203, wmoid=1900427 , maxgap= 1 ARGOS 1900427 ii= 210, wmoid=1900424 , maxgap= 1 ARGOS 1900424 ii= 308, wmoid=4900617 , maxgap= 1 ARGOS only last fix missing - can't interpolate ii= 320, wmoid=1900532 , maxgap= 1 ARGOS 1900532 ii= 344, wmoid=4900685 , maxgap= 1 ARGOS 4900685 ii= 348, wmoid=3900489 , maxgap= 1 ARGOS no - weird profiles ii= 350, wmoid=3900488 , maxgap= 1 ARGOS 3900488 ii= 375, wmoid=1900579 , maxgap= 1 ARGOS 1900579 ii= 377, wmoid=1900580 , maxgap= 1 ARGOS 1900580 ii= 413, wmoid=1900690 , maxgap= 1 ARGOS only last fix missing - can't interpolate ii= 416, wmoid=4900747 , maxgap= 1 ARGOS 4900747 ii= 420, wmoid=4900750 , maxgap= 1 ARGOS 4900750 ii= 436, wmoid=4900755 , maxgap= 1 ARGOS 4900755 ii= 453, wmoid=1900712 , maxgap= 1 ARGOS 1900712 ii= 454, wmoid=1900713 , maxgap= 1 ARGOS 1900713 ii= 459, wmoid=1900717 , maxgap= 1 ARGOS 1900717 ii= 496, wmoid=4900798 , maxgap= 1 ARGOS 4900798 ii= 505, wmoid=4900802 , maxgap= 1 ARGOS 4900802 ii= 509, wmoid=4900800 , maxgap= 1 ARGOS 4900800 ii= 535, wmoid=7900045 , maxgap= 1 SOLO1 IR 7900045 ii= 536, wmoid=7900046 , maxgap= 1 SOLO1 IR 7900046 ii= 537, wmoid=7900047 , maxgap= 1 SOLO1 IR 7900047 ii= 577, wmoid=4900845 , maxgap= 1 SOLO1 IR 4900845 ii= 582, wmoid=1900771 , maxgap= 1 ARGOS 1900771 ii= 592, wmoid=7900048 , maxgap= 1 SOLO1 IR 7900048 ii= 595, wmoid=7900049 , maxgap= 1 SOLO1 IR 7900049 ii= 599, wmoid=3900706 , maxgap= 1 ARGOS only last fix missing - can't interpolate ii= 606, wmoid=7900053 , maxgap= 1 SOLO1 IR 7900053 ii= 607, wmoid=7900054 , maxgap= 1 SOLO1 IR 7900054 ii= 620, wmoid=4900851 , maxgap= 1 ARGOS 4900851 ii= 632, wmoid=3900652 , maxgap= 1 ARGOS 3900652 ii= 634, wmoid=3900735 , maxgap= 1 SOLO1 IR 3900735 ii= 639, wmoid=7900061 , maxgap= 1 SOLO1 IR 7900061 ii= 659, wmoid=3900690 , maxgap= 1 SOLO1 IR 3900690 ii= 665, wmoid=3900707 , maxgap= 1 ARGOS 3900707 ii= 666, wmoid=3900708 , maxgap= 1 ARGOS 3900708 ii= 667, wmoid=1901449 , maxgap= 1 ARGOS only first fix missing - can't interpolate ii= 720, wmoid=1900993 , maxgap= 1 SOLO1 IR 1900993 ii= 732, wmoid=1901002 , maxgap= 1 SOLO1 IR 1901002 ii= 733, wmoid=1901004 , maxgap= 1 SOLO1 IR 1901004 ii= 743, wmoid=1901005 , maxgap= 1 ARGOS 1901005 ii= 744, wmoid=1901006 , maxgap= 1 SOLO1 IR 1901006 ii= 750, wmoid=3900757 , maxgap= 1 ARGOS 3900757 ii= 760, wmoid=1901468 , maxgap= 1 SOLO1 IR 1901468 ii= 763, wmoid=1901466 , maxgap= 1 SOLO1 IR 1901466 ii= 768, wmoid=1901456 , maxgap= 1 SOLO1 IR 1901456 ii= 770, wmoid=4901043 , maxgap= 1 SOLO1 IR 4901043 ii= 785, wmoid=4901209 , maxgap= 1 SOLO1 IR 4901209 ii= 787, wmoid=4901212 , maxgap= 1 SOLO1 IR 4901212 ii= 788, wmoid=4901213 , maxgap= 1 ARGOS only first fix missing - can't interpolate ii= 799, wmoid=1901484 , maxgap= 1 SOLO1 IR 1901484 ii= 800, wmoid=1901485 , maxgap= 1 SOLO1 IR 1901485 ii= 802, wmoid=4901216 , maxgap= 1 SOLO1 IR 4901216 ii= 808, wmoid=4901218 , maxgap= 1 ARGOS only first fix missing - can't interpolate ii= 814, wmoid=3900764 , maxgap= 1 SOLO1 IR 3900764 ii= 820, wmoid=4901225 , maxgap= 1 SOLO1 IR 4901225 ii= 822, wmoid=4901283 , maxgap= 1 SOLO1 IR 4901283 ii= 829, wmoid=1901501 , maxgap= 1 SOLO1 IR 1901501 ii= 833, wmoid=1901502 , maxgap= 1 SOLO1 IR 1901502 ii= 836, wmoid=1901503 , maxgap= 1 SOLO1 IR 1901503 ii= 840, wmoid=4901284 , maxgap= 1 SOLO1 IR 4901284 ii= 845, wmoid=1901530 , maxgap= 1 SOLO1 IR 1901530 ii= 849, wmoid=1901534 , maxgap= 1 SOLO1 IR 1901534 ii= 851, wmoid=1901535 , maxgap= 1 SOLO1 IR 1901535 ii= 857, wmoid=1901538 , maxgap= 1 SOLO1 IR 1901538 ii= 867, wmoid=3900833 , maxgap= 1 SOLO1 IR 3900833 ii= 868, wmoid=3900772 , maxgap= 1 SOLO1 IR 3900772 ii= 874, wmoid=3900770 , maxgap= 1 SOLO1 IR 3900770 ii= 880, wmoid=1901580 , maxgap= 1 ARGOS only two cycles, last has no position ii= 893, wmoid=1901572 , maxgap= 1 ARGOS 1901572 ii= 900, wmoid=1901587 , maxgap= 1 ARGOS 1901587 ii= 914, wmoid=1901494 , maxgap= 1 ARGOS 1901494 ii= 917, wmoid=1901497 , maxgap= 1 SOLO1 IR 1901497 ii= 930, wmoid=4901448 , maxgap= 1 SOLO1 IR 4901448 ii= 931, wmoid=4901450 , maxgap= 1 SOLO1 IR 4901450 ii= 932, wmoid=1901633 , maxgap= 1 SOLO1 IR 1901633 ii= 937, wmoid=1901634 , maxgap= 1 SOLO1 IR 1901634 ii=1069, wmoid=1901709 , maxgap= 1 SOLO2 >> no 2020/12/16 ----------- After adding the interpolation to my structure updates, saved in updates_file.mat: index WMOID REPAIRTYPE CYCLE# 1 7900046 3 56 2 7900046 3 57 3 7900046 3 58 4 7900049 3 2 5 7900057 3 1 6 7900057 3 2 7 3900735 3 0 8 7900058 3 8 9 1901004 3 256 10 1901010 3 131 11 1901011 3 35 12 1901011 3 36 13 1901011 3 37 14 1901011 3 46 15 1901007 3 3 16 1901448 3 88 17 1901448 3 92 18 1901006 3 1 19 1901006 3 2 20 1901006 3 9 21 1901006 3 10 22 1901006 3 11 23 1901006 3 12 24 1901006 3 13 25 1901006 3 14 26 1901006 3 16 27 1901006 3 17 28 1901006 3 18 29 1901006 3 19 30 1901006 3 20 31 1901006 3 21 32 1901006 3 22 33 1901006 3 23 34 1901006 3 24 35 1901006 3 25 36 1901006 3 26 37 1901006 3 28 38 1901006 3 30 39 1901006 3 36 40 1901006 3 43 41 1901006 3 44 42 1901006 3 45 43 1901006 3 46 44 1901006 3 47 45 1901006 3 49 46 1901006 3 51 47 1901006 3 52 48 1901006 3 53 49 1901006 3 54 50 1901006 3 55 51 1901006 3 56 52 1901006 3 57 53 1901006 3 58 54 1901455 3 10 55 1901455 3 21 56 1901455 3 22 57 1901466 3 256 58 1901456 3 8 59 1901456 3 17 60 1901456 3 38 61 1901456 3 42 62 1901456 3 44 63 1901456 3 51 64 4901211 3 46 65 4901211 3 54 66 4901211 3 60 67 4901211 3 65 68 4901211 3 70 69 4901211 3 72 70 4901211 3 121 71 4901211 3 122 72 4901211 3 125 73 4901211 3 134 74 4901211 3 137 75 4901211 3 138 76 4901211 3 139 77 4901211 3 140 78 4901211 3 149 79 1901484 3 13 80 1901484 3 15 81 1901484 3 16 82 1901498 3 112 83 1901498 3 113 84 1901498 3 135 85 1901498 3 159 86 1901498 3 179 87 1901498 3 209 88 1901502 3 3 89 1901502 3 4 90 1901502 3 6 91 1901502 3 7 92 1901502 3 8 93 3901036 3 0 94 3900838 3 8 95 1901686 3 270 96 4901581 3 227 97 4901581 3 233 98 4901588 3 145 99 3900151 6 1 100 3900152 6 1 101 3900351 6 1 102 4900750 6 0 103 3900609 6 0 104 4901224 6 0 105 4900228 4 140 106 4900228 4 141 107 4900228 4 196 108 4900159 4 200 109 1900059 4 213 110 4900232 4 165 111 4900232 4 199 112 4900359 4 148 113 4900424 4 217 114 4900438 4 156 115 3900149 4 153 116 4900545 4 195 117 4900551 4 136 118 1900426 4 122 119 1900430 4 122 120 4900584 4 121 121 3900356 4 46 122 3900367 4 137 123 4900600 4 96 124 1900492 4 60 125 1900492 4 154 126 4900614 4 113 127 3900445 4 140 128 6900124 4 126 129 1900528 4 63 130 1900535 4 86 131 1900562 4 85 132 4900687 4 50 133 1900643 4 100 134 3900489 4 75 135 3900489 4 109 136 3900488 4 112 137 3900490 4 141 138 5901106 4 112 139 5901104 4 89 140 1900576 4 5 141 1900576 4 14 142 1900577 4 131 143 1900573 4 77 144 1900578 4 77 145 1900578 4 130 146 1900578 4 135 147 1900579 4 106 148 1900583 4 92 149 3900564 4 127 150 1900636 4 67 151 1900636 4 72 152 1900647 4 13 153 1900683 4 64 154 1900649 4 40 155 1900684 4 52 156 1900684 4 128 157 1900684 4 130 158 1900684 4 132 159 1900685 4 32 160 1900685 4 99 161 3900601 4 19 162 3900603 4 77 163 1900703 4 98 164 1900711 4 59 165 3900580 4 42 166 4900775 4 25 167 4900776 4 109 168 4900776 4 111 169 4900776 4 113 170 4900777 4 47 171 4900782 4 25 172 4900782 4 32 173 4900786 4 49 174 4900788 4 80 175 4900792 4 82 176 3900592 4 66 177 1900735 4 99 178 1900736 4 37 179 1900736 4 93 180 1900737 4 45 181 4900804 4 52 182 1900753 4 57 183 1900746 4 86 184 7900044 4 52 185 3900797 4 53 186 3900801 4 69 187 3900802 4 20 188 6900311 4 10 189 6900312 4 6 190 1900762 4 53 191 1900763 4 27 192 4901039 4 61 193 1900783 4 9 194 3900650 4 0 195 3900651 4 8 196 1900790 4 0 197 1900788 4 53 198 1900792 4 0 199 3900691 4 13 200 1901656 4 0 201 4901473 4 0 202 4901478 4 0 203 4901482 4 0 204 4901481 4 0 205 4901483 4 0 206 4901628 4 0 207 4901631 4 0 208 4901629 4 0 209 4901624 4 0 210 4903059 4 0 211 3900727 4 0 212 1901004 4 0 213 1901455 4 0 214 4901282 4 142 215 1901559 4 122 216 1901706 4 70 217 4903219 4 0 218 3900758 8 13 % start of interpolations 219 3900758 8 14 220 1901010 8 60 221 1901010 8 68 222 1901010 8 69 223 1901010 8 105 224 1901010 8 106 225 1901010 8 113 226 1901010 8 115 227 1901010 8 117 228 1901010 8 118 229 1901010 8 119 230 1901010 8 120 231 1901010 8 121 232 1901010 8 123 233 1901010 8 124 234 1901010 8 125 235 1901010 8 126 236 1901010 8 127 237 1901010 8 128 238 1901010 8 129 239 1901010 8 130 240 1901010 8 133 241 1901010 8 134 242 1901010 8 135 243 1901010 8 136 244 1901010 8 137 245 1901010 8 138 246 1901010 8 139 247 1901010 8 140 248 1901010 8 142 249 1901010 8 143 250 1901010 8 144 251 1901010 8 146 252 1901010 8 180 253 1901010 8 181 254 1901010 8 183 255 1901010 8 184 256 1901010 8 185 257 1901010 8 186 258 1901010 8 187 259 1901010 8 188 260 1901010 8 189 261 1901010 8 190 262 1901010 8 191 263 1901010 8 193 264 1901010 8 194 265 1901010 8 195 266 1901010 8 196 267 1901010 8 197 268 1901010 8 198 269 1901010 8 199 270 1901010 8 200 271 1901010 8 201 272 1901010 8 203 273 1901010 8 204 274 1901010 8 205 275 1901010 8 206 276 1901010 8 207 277 1901010 8 208 278 1901010 8 209 279 1901010 8 210 280 1901010 8 211 281 1901010 8 212 282 1901010 8 213 283 1901010 8 215 284 1901010 8 216 285 1900734 8 24 286 4901208 8 100 287 4901208 8 101 288 4901208 8 105 289 4901208 8 106 290 4901208 8 107 291 4901208 8 108 292 4901208 8 109 293 4901208 8 110 294 4901208 8 111 295 4901208 8 112 296 4901208 8 115 297 4901208 8 116 298 4901208 8 121 299 4901208 8 124 300 4901208 8 125 301 4901208 8 126 302 4901208 8 127 303 4901208 8 128 304 4901208 8 129 305 4901208 8 130 306 4901208 8 131 307 4901208 8 132 308 4901208 8 133 309 4901208 8 134 310 4901208 8 135 311 4901208 8 136 312 4901208 8 137 313 4901208 8 138 314 4901208 8 140 315 4901208 8 142 316 4901208 8 143 317 4901208 8 144 318 4901208 8 145 319 4901208 8 146 320 4901208 8 147 321 4901208 8 148 322 4901208 8 149 323 4901208 8 150 324 4901208 8 152 325 4901208 8 153 326 4901208 8 154 327 4901208 8 155 328 4901208 8 172 329 4901208 8 175 330 4901208 8 178 331 4901208 8 179 332 4901208 8 181 333 4901208 8 183 334 4901208 8 198 335 4901208 8 205 336 1900033 8 13 337 1900033 8 15 338 1900033 8 16 339 1900033 8 17 340 1900033 8 19 341 1900033 8 22 342 1900033 8 23 343 1900033 8 24 344 1900033 8 26 345 1900033 8 27 346 1900033 8 28 347 1900033 8 29 348 1900033 8 30 349 1900033 8 31 350 1900033 8 35 351 1900033 8 36 352 1900033 8 37 353 1900033 8 38 354 1900033 8 39 355 1900033 8 41 356 1900033 8 42 357 1900033 8 45 358 1900033 8 56 359 1900033 8 60 360 4901282 8 148 361 4901282 8 155 362 4901282 8 156 363 4901282 8 157 364 4901282 8 158 365 4901282 8 159 366 4901282 8 160 367 4901282 8 161 368 4901282 8 162 369 4901282 8 163 370 4901282 8 164 371 4901282 8 165 372 4901282 8 166 373 4901282 8 167 374 4901282 8 168 375 3900769 8 128 376 3900769 8 129 377 3900769 8 130 378 3900769 8 131 379 3900769 8 132 380 3900769 8 133 381 3900769 8 134 382 3900769 8 135 383 3900769 8 136 384 3900769 8 137 385 3900769 8 138 386 3900769 8 139 387 3900769 8 140 388 3900769 8 148 389 1901498 8 73 390 1901498 8 90 391 1901498 8 108 392 1901498 8 120 393 1901498 8 121 394 1901498 8 126 395 1901498 8 133 396 1901498 8 145 397 1901498 8 148 398 1901498 8 149 399 1901498 8 150 400 1901498 8 151 401 1901498 8 152 402 1901498 8 153 403 1901498 8 154 404 1901498 8 155 405 1901498 8 156 406 1901498 8 157 407 1901498 8 158 408 1901498 8 176 409 1901498 8 188 410 1901498 8 189 411 1901498 8 190 412 1901498 8 191 413 1901498 8 192 414 1901498 8 193 415 1901498 8 204 416 1901498 8 205 417 1901498 8 206 418 1901498 8 207 419 1901498 8 208 420 1901011 8 27 421 1901011 8 30 422 1901011 8 31 423 1901011 8 33 424 1901011 8 39 425 1901011 8 40 426 1901011 8 41 427 1901011 8 43 428 1901011 8 44 429 1901011 8 45 430 1901011 8 47 431 1901011 8 48 432 1901011 8 49 433 1901011 8 50 434 1901011 8 51 435 1901011 8 52 436 1901011 8 53 437 1901011 8 54 438 1901011 8 55 439 1901011 8 56 440 4901715 8 1 441 4901715 8 2 442 4901715 8 3 443 4901715 8 4 444 4901715 8 5 445 4901715 8 6 446 4901715 8 7 447 4901715 8 8 448 4901715 8 9 449 4901715 8 15 450 4901715 8 16 451 4901715 8 17 452 4901715 8 18 453 4901715 8 19 454 4901715 8 20 455 4901715 8 21 456 4901715 8 22 457 1901540 8 95 458 1901540 8 96 459 1901540 8 116 460 1901540 8 117 461 1901540 8 134 462 1901540 8 135 463 1901540 8 136 464 1901540 8 137 465 1901540 8 138 466 1901540 8 140 467 1901540 8 142 468 1901540 8 143 469 1901540 8 144 470 1901540 8 145 471 1901540 8 146 472 1901540 8 147 473 1901540 8 148 474 1901540 8 151 475 1901540 8 154 476 1901540 8 155 477 1901540 8 189 478 1901540 8 190 479 1901540 8 191 480 1901540 8 201 481 1901540 8 233 482 4901298 8 5 483 4901298 8 23 484 4901298 8 24 485 4901298 8 25 486 4901298 8 26 487 4901298 8 27 488 4901298 8 28 489 4901298 8 29 490 4901298 8 30 491 4901298 8 35 492 4901298 8 102 493 4901298 8 202 494 4900232 8 8 495 4900232 8 11 496 4900232 8 30 497 4900232 8 36 498 4900232 8 40 499 4900232 8 45 500 4900232 8 52 501 4900232 8 54 502 4900232 8 55 503 4900232 8 56 504 4900232 8 57 505 4900232 8 60 506 4900232 8 61 507 4900232 8 81 508 4900232 8 85 509 4900363 8 3 510 4900363 8 7 511 4900363 8 9 512 4900363 8 11 513 4900363 8 12 514 4900363 8 17 515 4900363 8 19 516 4900363 8 20 517 4900363 8 28 518 4900363 8 29 519 4900363 8 30 520 4900363 8 38 521 4900363 8 40 522 4900363 8 42 523 4900363 8 45 524 4900363 8 46 525 4900363 8 48 526 4900363 8 49 527 4900363 8 50 528 4900363 8 51 529 1901499 8 101 530 1901499 8 110 531 1901499 8 118 532 1901499 8 119 533 1901499 8 120 534 1901499 8 121 535 1901499 8 122 536 1901499 8 123 537 1901669 8 81 538 1901669 8 82 539 1901669 8 83 540 1901669 8 84 541 1901669 8 85 542 1901669 8 86 543 1901668 8 12 544 1901668 8 52 545 1901668 8 86 546 1901668 8 111 547 1901668 8 112 548 1901668 8 113 549 1901668 8 114 550 1901668 8 115 551 1901668 8 116 552 1901668 8 118 553 1901668 8 119 554 1901668 8 121 555 1901668 8 132 556 4901211 8 116 557 4901211 8 118 558 4901211 8 119 559 4901211 8 123 560 4901211 8 124 561 4901211 8 126 562 4901211 8 128 563 4901211 8 129 564 4901211 8 130 565 4901211 8 131 566 4901211 8 132 567 4901211 8 135 568 4901211 8 136 569 4901211 8 146 570 4901211 8 147 571 3900609 8 10 572 3900609 8 18 573 3900609 8 22 574 3900609 8 24 575 3900609 8 25 576 3900609 8 26 577 3900609 8 27 578 3900609 8 29 579 3900609 8 35 580 3900650 8 70 581 3900650 8 72 582 3900650 8 73 583 3900650 8 75 584 3900650 8 76 585 3900650 8 77 586 3900650 8 92 587 3900650 8 94 588 3900650 8 97 589 3900650 8 99 590 3900650 8 101 591 3900650 8 107 592 3900650 8 109 593 3900650 8 115 594 3900650 8 116 595 3900650 8 117 596 3900650 8 123 597 3900650 8 125 598 3900650 8 126 599 3900650 8 127 600 3900650 8 135 601 3900650 8 138 602 3900650 8 141 603 3900650 8 142 604 3900650 8 147 605 3900650 8 148 606 3900650 8 151 607 3900650 8 157 608 3900650 8 162 609 3900650 8 165 610 3900650 8 166 611 3900650 8 168 612 3900650 8 169 613 3900650 8 179 614 3900650 8 181 615 3900650 8 185 616 3900650 8 194 617 3900650 8 196 618 3900650 8 197 619 1900168 8 3 620 1900168 8 5 621 1900168 8 9 622 1900168 8 11 623 1900168 8 12 624 1900168 8 13 625 1900168 8 15 626 1900168 8 16 627 1900168 8 23 628 1900168 8 24 629 1900168 8 25 630 1900168 8 29 631 1900168 8 30 632 1900168 8 37 633 1900242 8 33 634 1900242 8 82 635 1900242 8 85 636 1900242 8 86 637 1900242 8 88 638 1900242 8 90 639 1900242 8 92 640 1900242 8 113 641 1900242 8 116 642 1900242 8 118 643 1900242 8 121 644 1900242 8 126 645 1900242 8 140 646 1900242 8 148 647 1900242 8 151 648 4900425 8 2 649 4900425 8 3 650 4900425 8 4 651 1900245 8 5 652 1900245 8 8 653 1900245 8 10 654 1900245 8 11 655 1900245 8 14 656 1900245 8 16 657 1900245 8 22 658 1900245 8 27 659 1900245 8 28 660 1900245 8 29 661 1900245 8 31 662 1900245 8 32 663 1900245 8 37 664 1900245 8 50 665 1900245 8 51 666 1900245 8 56 667 1900245 8 57 668 1900245 8 58 669 1900534 8 15 670 1900534 8 16 671 1900534 8 19 672 1900534 8 22 673 1900534 8 85 674 1900534 8 97 675 1900534 8 98 676 1900534 8 168 677 4900797 8 20 678 4900797 8 22 679 4900797 8 42 680 4900797 8 43 681 4900797 8 98 682 4900797 8 99 683 4900797 8 116 684 4900797 8 118 685 4900797 8 128 686 4900797 8 129 687 7900052 8 2 688 7900052 8 3 689 7900052 8 11 690 7900052 8 12 691 7900052 8 13 692 7900052 8 19 693 7900052 8 21 694 7900052 8 24 695 1901003 8 29 696 1901003 8 41 697 1901003 8 59 698 1901003 8 60 699 1901003 8 62 700 3900771 8 140 701 1901706 8 13 702 1901706 8 14 703 1901706 8 15 704 1900040 8 10 705 1900040 8 11 706 1900041 8 77 707 1900041 8 78 708 1900041 8 98 709 4900606 8 68 710 4900606 8 69 711 3900576 8 45 712 3900576 8 50 713 5901427 8 166 714 5901427 8 167 715 5901427 8 189 716 7900050 8 1 717 7900050 8 2 718 7900050 8 26 719 7900057 8 29 720 7900057 8 59 721 7900057 8 60 722 1900792 8 128 723 1900792 8 135 724 1901007 8 1 725 1901007 8 2 726 1901007 8 4 727 3900759 8 39 728 3900759 8 59 729 3900759 8 64 730 3900759 8 66 731 3900759 8 67 732 3900759 8 69 733 3900759 8 95 734 3900760 8 42 735 3900760 8 43 736 3900760 8 62 737 3900760 8 136 738 1901467 8 122 739 1901467 8 148 740 1901467 8 150 741 1901467 8 151 742 4901044 8 40 743 4901044 8 42 744 4901044 8 43 745 4901044 8 118 746 4901044 8 146 747 4901044 8 165 748 4901044 8 185 749 4901044 8 193 750 4901044 8 206 751 4901044 8 247 752 4901044 8 250 753 3900767 8 3 754 3900767 8 4 755 3900767 8 23 756 3900767 8 50 757 3900767 8 76 758 3900767 8 85 759 3900767 8 91 760 3900767 8 99 761 3900767 8 102 762 3900767 8 3 763 3900767 8 4 764 3900767 8 23 765 3900767 8 50 766 3900767 8 76 767 3900767 8 85 768 3900767 8 91 769 3900767 8 99 770 3900767 8 102 771 1901529 8 120 772 1901529 8 155 773 1901529 8 156 774 4901707 8 75 775 4901707 8 134 776 4901707 8 135 777 4901707 8 140 778 4901707 8 150 779 1900035 8 38 780 3900058 8 242 781 4900362 8 283 782 4900362 8 288 783 1900203 8 58 784 1900243 8 56 785 4900370 8 41 786 4900424 8 90 787 4900424 8 172 788 1900248 8 50 789 1900259 8 7 790 3900151 8 16 791 3900152 8 22 792 3900152 8 35 793 3900153 8 18 794 3900153 8 34 795 3900176 8 6 796 3900176 8 13 797 3900176 8 31 798 3900176 8 37 799 3900175 8 17 800 3900175 8 35 801 3900186 8 26 802 3900188 8 26 803 3900191 8 26 804 3900192 8 26 805 3900193 8 26 806 1900264 8 14 807 1900263 8 14 808 1900360 8 3 809 4900545 8 83 810 4900547 8 9 811 1900427 8 4 812 1900424 8 144 813 1900532 8 196 814 4900685 8 37 815 3900488 8 17 816 1900579 8 137 817 1900580 8 28 818 4900747 8 54 819 4900750 8 97 820 4900755 8 3 821 1900712 8 122 822 1900713 8 122 823 1900717 8 151 824 4900798 8 92 825 4900798 8 162 826 4900802 8 62 827 4900802 8 107 828 4900802 8 166 829 4900800 8 66 830 7900045 8 28 831 7900046 8 18 832 7900046 8 25 833 7900046 8 27 834 7900046 8 32 835 7900047 8 18 836 4900845 8 136 837 1900771 8 41 838 7900048 8 4 839 7900049 8 4 840 7900053 8 1 841 7900054 8 2 842 4900851 8 142 843 3900652 8 9 844 3900735 8 3 845 3900735 8 27 846 3900735 8 38 847 3900735 8 45 848 3900735 8 57 849 3900735 8 64 850 3900735 8 81 851 3900735 8 88 852 3900735 8 90 853 3900735 8 99 854 3900735 8 101 855 3900735 8 109 856 3900735 8 111 857 3900735 8 126 858 3900735 8 145 859 3900735 8 147 860 3900735 8 157 861 3900735 8 168 862 3900735 8 184 863 3900735 8 186 864 3900735 8 188 865 3900735 8 201 866 3900735 8 204 867 3900735 8 233 868 3900735 8 242 869 3900735 8 307 870 3900735 8 313 871 3900735 8 322 872 7900061 8 147 873 3900690 8 19 874 3900707 8 162 875 3900708 8 158 876 1900993 8 60 877 1901002 8 249 878 1901004 8 36 879 1901004 8 40 880 1901004 8 68 881 1901004 8 72 882 1901004 8 98 883 1901004 8 105 884 1901004 8 133 885 1901004 8 176 886 1901004 8 206 887 1901004 8 234 888 1901005 8 244 889 1901006 8 15 890 1901006 8 29 891 1901006 8 34 892 1901006 8 50 893 1901006 8 69 894 1901006 8 116 895 1901006 8 133 896 1901006 8 142 897 1901006 8 164 898 1901006 8 187 899 1901006 8 195 900 1901006 8 197 901 1901006 8 211 902 1901006 8 226 903 1901006 8 248 904 1901006 8 249 905 3900757 8 17 906 1901468 8 36 907 1901466 8 182 908 1901466 8 208 909 1901466 8 221 910 1901456 8 24 911 1901456 8 50 912 1901456 8 186 913 4901043 8 40 914 4901043 8 96 915 4901209 8 12 916 4901212 8 6 917 4901212 8 8 918 4901212 8 80 919 4901212 8 113 920 4901212 8 149 921 4901212 8 188 922 1901484 8 24 923 1901484 8 26 924 1901484 8 38 925 1901484 8 40 926 1901484 8 56 927 1901485 8 159 928 4901216 8 225 929 4901216 8 227 930 3900764 8 188 931 4901225 8 157 932 4901225 8 183 933 4901225 8 224 934 4901225 8 228 935 4901283 8 23 936 4901283 8 61 937 4901283 8 85 938 1901501 8 4 939 1901501 8 209 940 1901502 8 5 941 1901503 8 14 942 1901503 8 64 943 1901503 8 96 944 1901503 8 132 945 4901284 8 14 946 4901284 8 18 947 1901530 8 211 948 1901534 8 163 949 1901535 8 103 950 1901538 8 85 951 3900833 8 33 952 3900833 8 59 953 3900833 8 78 954 3900772 8 139 955 3900772 8 141 956 3900772 8 143 957 3900772 8 146 958 3900770 8 192 959 3900770 8 212 960 1901572 8 118 961 1901587 8 65 962 1901494 8 88 963 1901497 8 34 964 1901497 8 58 965 1901497 8 62 966 1901497 8 72 967 1901497 8 99 968 1901497 8 112 969 1901497 8 127 970 1901497 8 171 971 4901448 8 67 972 4901448 8 82 973 4901450 8 3 974 4901450 8 13 975 4901450 8 27 976 4901450 8 29 977 4901450 8 40 978 4901450 8 53 979 4901450 8 66 980 4901450 8 68 981 4901450 8 74 982 4901450 8 111 983 1901633 8 10 984 1901633 8 14 985 1901633 8 43 986 1901633 8 51 987 1901633 8 58 988 1901633 8 62 989 1901633 8 88 990 1901633 8 117 991 1901633 8 167 992 1901633 8 178 993 1901633 8 196 994 1901634 8 6 995 1901634 8 12 996 1901634 8 23 997 1901634 8 28 998 1901634 8 84 999 1901634 8 111 1000 1901634 8 191 1001 3900758 8 13 1002 3900758 8 14 =================================================================== =================================================================== =================================================================== Scratch and old news below here argoinfo_fb: ii=66 WMO=7900029 has no D ii=67 WMO=7900026 has no D ii=68 WMO=7900027 has no D ii=69 WMO=7900028 has no D ii=188 WMO=4900550 has no D ii=206 WMO=4900576 has no D ii=217 WMO=1900423 has no D ii=219 WMO=4900583 has no D ii=234 WMO=1900448 has no D ii=240 WMO=4900591 has no D ii=241 WMO=4900592 has no D ii=282 WMO=3900416 has no D ii=295 WMO=4900603 has no D ii=334 WMO=3900454 has no D ii=384 WMO=1900574 has no D ii=458 WMO=1900709 has no D ii=484 WMO=4900774 has no D ii=491 WMO=4900779 has no D ii=500 WMO=4900783 has no D ii=509 WMO=4900793 has no D ii=521 WMO=1900739 has no D ii=544 WMO=1900748 has no D ii=545 WMO=1900751 has no D ii=566 WMO=5901428 has no D ii=575 WMO=3900612 has no D ii=579 WMO=6900314 has no D ii=582 WMO=4900807 has no D ii=642 WMO=7900056 has no D ii=657 WMO=1900784 has no D ii=667 WMO=7900059 has no D ii=675 WMO=1900793 has no D ii=701 WMO=4901045 has no D ii=702 WMO=4901040 has no D ii=705 WMO=4901042 has no D ii=707 WMO=3900709 has no D ii=714 WMO=1900825 has no D ii=717 WMO=4901041 has no D ii=729 WMO=4901038 has no D ii=734 WMO=4901013 has no D ii=744 WMO=4901025 has no D ii=745 WMO=4901026 has no D ii=749 WMO=3900731 has no D ii=750 WMO=3900744 has no D ii=756 WMO=4901023 has no D ii=762 WMO=1900995 has no D ii=765 WMO=1900990 has no D ii=767 WMO=1900992 has no D ii=769 WMO=1900994 has no D ii=782 WMO=1901008 has no D ii=792 WMO=3900761 has no D ii=857 WMO=4901220 has no D ii=883 WMO=1901500 has no D ii=910 WMO=1901542 has no D ii=914 WMO=1901546 has no D ii=915 WMO=1901555 has no D ii=920 WMO=1901545 has no D ii=937 WMO=7900329 has no D ii=938 WMO=1901570 has no D ii=939 WMO=7900331 has no D ii=940 WMO=7900330 has no D ii=955 WMO=4901293 has no D ii=958 WMO=4901034 has no D ii=968 WMO=1901584 has no D ii=995 WMO=1901630 has no D ii=998 WMO=1901631 has no D ii=999 WMO=1901635 has no D ii=1007 WMO=1901636 has no D ii=1013 WMO=1901665 has no D ii=1043 WMO=1901699 has no D ii=1049 WMO=1901648 has no D ii=1054 WMO=1901676 has no D ii=1055 WMO=1901677 has no D ii=1056 WMO=1901678 has no D ii=1070 WMO=4901465 has no D ii=1071 WMO=4901464 has no D ii=1080 WMO=1901682 has no D ii=1083 WMO=4901474 has no D ii=1088 WMO=5904393 has no D ii=1089 WMO=5904385 has no D ii=1090 WMO=5904386 has no D ii=1091 WMO=5904388 has no D ii=1092 WMO=5904390 has no D ii=1096 WMO=1901658 has no D ii=1099 WMO=1901659 has no D ii=1128 WMO=1901662 has no D ii=1130 WMO=4901484 has no D ii=1136 WMO=1901663 has no D ii=1138 WMO=1901696 has no D ii=1149 WMO=1901700 has no D ii=1150 WMO=1901698 has no D ii=1151 WMO=1901697 has no D ii=1152 WMO=1901701 has no D ii=1156 WMO=3901053 has no D ii=1157 WMO=3901051 has no D ii=1160 WMO=1901707 has no D ii=1167 WMO=3901048 has no D ii=1170 WMO=4901593 has no D ii=1171 WMO=4901592 has no D ii=1179 WMO=4901673 has no D ii=1182 WMO=4901676 has no D ii=1186 WMO=4901674 has no D ii=1189 WMO=4901626 has no D ii=1192 WMO=4901677 has no D ii=1193 WMO=4901678 has no D ii=1194 WMO=1901716 has no D ii=1195 WMO=1901715 has no D ii=1196 WMO=1901718 has no D ii=1197 WMO=1901719 has no D ii=1200 WMO=1901713 has no D ii=1202 WMO=1901721 has no D ii=1203 WMO=1901722 has no D ii=1205 WMO=4901679 has no D ii=1212 WMO=1901727 has no D ii=1219 WMO=4901708 has no D ii=1223 WMO=4901710 has no D ii=1224 WMO=4901711 has no D ii=1228 WMO=3901057 has no D ii=1231 WMO=4901584 has no D ii=1232 WMO=4901703 has no D ii=1233 WMO=1901726 has no D ii=1234 WMO=1901729 has no D ii=1235 WMO=3901058 has no D ii=1236 WMO=3901060 has no D ii=1237 WMO=3901061 has no D ii=1238 WMO=1901725 has no D ii=1239 WMO=3901059 has no D ii=1240 WMO=3901062 has no D ii=1242 WMO=4901720 has no D ii=1243 WMO=4901719 has no D ii=1244 WMO=4901716 has no D ii=1245 WMO=4902098 has no D ii=1247 WMO=4901718 has no D ii=1248 WMO=1901808 has no D ii=1249 WMO=1901732 has no D ii=1250 WMO=1901784 has no D ii=1253 WMO=3901113 has no D ii=1254 WMO=3901222 has no D ii=1255 WMO=3901223 has no D ii=1257 WMO=3901224 has no D ii=1258 WMO=3901228 has no D ii=1259 WMO=2902393 has no D ii=1260 WMO=3901114 has no D ii=1262 WMO=3901220 has no D ii=1263 WMO=3901229 has no D ii=1264 WMO=3901112 has no D ii=1265 WMO=3901221 has no D ii=1266 WMO=3901230 has no D ii=1267 WMO=3901105 has no D ii=1268 WMO=3901107 has no D ii=1269 WMO=1901733 has no D ii=1270 WMO=3901106 has no D ii=1271 WMO=3901110 has no D ii=1272 WMO=3901227 has no D ii=1273 WMO=3901225 has no D ii=1274 WMO=3901226 has no D ii=1275 WMO=3901063 has no D ii=1276 WMO=3901109 has no D ii=1277 WMO=3901111 has no D ii=1278 WMO=3901108 has no D ii=1279 WMO=3901064 has no D ii=1288 WMO=2902388 has no D ii=1289 WMO=2902389 has no D ii=1290 WMO=2902390 has no D ii=1291 WMO=2902391 has no D ii=1292 WMO=2902392 has no D ii=1293 WMO=2902395 has no D ii=1294 WMO=2902397 has no D ii=1296 WMO=2902394 has no D ii=1297 WMO=2902396 has no D ii=1306 WMO=1901810 has no D ii=1308 WMO=1901812 has no D ii=1310 WMO=1901811 has no D ii=1311 WMO=1901809 has no D ii=1312 WMO=1901813 has no D ii=1317 WMO=1901816 has no D ii=1321 WMO=1901819 has no D ii=1322 WMO=1901817 has no D ii=1326 WMO=4902117 has no D ii=1327 WMO=4902118 has no D ii=1329 WMO=4902116 has no D ii=1349 WMO=1901824 has no D ii=1350 WMO=1901814 has no D ii=1353 WMO=1901826 has no D ii=1354 WMO=1901830 has no D ii=1355 WMO=1901829 has no D ii=1356 WMO=1902069 has no D ii=1357 WMO=1902063 has no D ii=1358 WMO=1902068 has no D ii=1359 WMO=1902060 has no D ii=1360 WMO=1902066 has no D ii=1361 WMO=1901828 has no D ii=1362 WMO=1902062 has no D ii=1363 WMO=1902065 has no D ii=1364 WMO=1902061 has no D ii=1365 WMO=1901827 has no D ii=1366 WMO=1902064 has no D ii=1367 WMO=1902067 has no D ii=1368 WMO=4902101 has no D ii=1369 WMO=3901240 has no D ii=1370 WMO=3901238 has no D ii=1371 WMO=3901237 has no D ii=1372 WMO=3901239 has no D ii=1373 WMO=3901241 has no D ii=1374 WMO=3901242 has no D ii=1378 WMO=4902916 has no D ii=1380 WMO=4902915 has no D ii=1381 WMO=4902917 has no D ii=1382 WMO=4902914 has no D ii=1383 WMO=3901243 has no D ii=1392 WMO=4903222 has no D ii=1395 WMO=3901816 has no D ii=1396 WMO=3901822 has no D ii=1398 WMO=3901821 has no D ii=1399 WMO=3901820 has no D ii=1400 WMO=3901823 has no D ii=1403 WMO=3901817 has no D ii=1405 WMO=3901824 has no D ii=1406 WMO=3901825 has no D ii=1407 WMO=4903223 has no D ii=1412 WMO=3901826 has no D ii=1413 WMO=3901827 has no D ii=1414 WMO=3901828 has no D ii=1415 WMO=4902925 has no D ii=1419 WMO=1902070 has no D ii=1420 WMO=1902071 has no D ii=1421 WMO=4902342 has no D ii=1422 WMO=1902072 has no D ii=1423 WMO=1902180 has no D ii=1424 WMO=1902073 has no D ii=1425 WMO=1902181 has no D ii=1426 WMO=3901830 has no D ii=1427 WMO=3901829 has no D ii=1428 WMO=3901831 has no D ii=1429 WMO=3901832 has no D ii=1430 WMO=3901833 has no D ii=1431 WMO=3901836 has no D ii=1432 WMO=3901834 has no D ii=1433 WMO=3901835 has no D ii=1443 WMO=1902210 has no D ii=1444 WMO=1902185 has no D ii=1445 WMO=1902211 has no D ii=1446 WMO=1902183 has no D ii=1447 WMO=1902204 has no D ii=1448 WMO=1902206 has no D ii=1451 WMO=1902182 has no D ii=1452 WMO=1902205 has no D ii=1456 WMO=3902142 has no D ii=1457 WMO=2903130 has no D ii=1458 WMO=2903131 has no D ii=1459 WMO=2903132 has no D ii=1460 WMO=2903133 has no D ii=1461 WMO=2903134 has no D ii=1462 WMO=2903135 has no D ii=1463 WMO=1902212 has no D ii=1464 WMO=1902213 has no D ii=1465 WMO=1902214 has no D ii=1466 WMO=1902215 has no D ii=1467 WMO=1902216 has no D ii=1468 WMO=1902217 has no D ii=1469 WMO=1902218 has no D ii=1470 WMO=1902219 has no D ii=1471 WMO=1902220 has no D ii=1472 WMO=4902926 has no D ii=1473 WMO=4903037 has no D ii=1474 WMO=4903038 has no D ii=1475 WMO=4903039 has no D ii=1476 WMO=4903040 has no D ii=1477 WMO=4903041 has no D ii=1483 WMO=4903056 has no D ii=1486 WMO=4903214 has no D ii=1488 WMO=4903213 has no D ii=1492 WMO=4903058 has no D ii=1493 WMO=4903211 has no D ii=1494 WMO=4903212 has no D ii=1495 WMO=4903215 has no D ii=1496 WMO=4903052 has no D ii=1502 WMO=4903050 has no D ii=1503 WMO=4903051 has no D ii=1504 WMO=1902226 has no D ii=1505 WMO=1902221 has no D ii=1506 WMO=1902222 has no D ii=1507 WMO=1902225 has no D ii=1508 WMO=1902223 has no D ii=1509 WMO=1902224 has no D ii=1510 WMO=3902143 has no D ii=1511 WMO=3902145 has no D ii=1512 WMO=3902144 has no D ii=1513 WMO=3902146 has no D ii=1514 WMO=3902164 has no D ii=1515 WMO=3902165 has no D ii=1517 WMO=4903239 has no D ii=1524 WMO=4903244 has no D ii=1526 WMO=4903246 has no D ii=1527 WMO=3902166 has no D ii=1528 WMO=4903247 has no D ii=1530 WMO=3902167 has no D ii=1531 WMO=3902169 has no D ii=1532 WMO=3902235 has no D ii=1533 WMO=3902236 has no D ii=1534 WMO=3902237 has no D ii=1535 WMO=4903242 has no D ii=1538 WMO=4903243 has no D ii=1546 WMO=4903241 has no D ii=1550 WMO=3902238 has no D ii=1551 WMO=3902239 has no D ii=1552 WMO=1902227 has no D ii=1553 WMO=3902240 has no D ii=1554 WMO=1902228 has no D ii=1556 WMO=1902274 has no D ii=1557 WMO=3902245 has no D ii=1558 WMO=3902244 has no D ii=1559 WMO=3902241 has no D ii=1560 WMO=3902242 has no D ii=1561 WMO=3902243 has no D ii=1562 WMO=4903224 has no D ii=1563 WMO=4903225 has no D ii=1564 WMO=4903227 has no D ii=1565 WMO=4903226 has no D ii=1566 WMO=4903228 has no D ii=1567 WMO=4903229 has no D ii=1568 WMO=4903230 has no D ii=1569 WMO=4903231 has no D ii=1570 WMO=4903261 has no D ii=1571 WMO=4903262 has no D ii=1572 WMO=4903265 has no D ii=1573 WMO=4903263 has no D ii=1574 WMO=4903264 has no D ii=1575 WMO=4903266 has no D ii=1576 WMO=4903267 has no D ii=1577 WMO=4903268 has no D ii=1578 WMO=4903269 has no D ii=1579 WMO=4903272 has no D ii=1580 WMO=4903270 has no D ii=1581 WMO=4903271 has no D ii=1582 WMO=4903046 has no D ii=1583 WMO=1902278 has no D ii=1584 WMO=1902275 has no D ii=1585 WMO=1902277 has no D ii=1586 WMO=1902279 has no D ii=1587 WMO=1902276 has no D ii=1588 WMO=1902280 has no D ii=1589 WMO=4903276 has no D ii=1590 WMO=4903277 has no D ii=1591 WMO=4903278 has no D ii=1592 WMO=4903279 has no D ii=1593 WMO=4903275 has no D >> inD= [66 67 68 69 188 206 217 219 234 240 241 282 295 334 384 458 484 491 500 509 521 544 545 566 575 579 582 642 657 667 675 701 702 705 707 714 717 729 734 744 745 749 750 756 762 765 767 769 782 792 857 883 910 914 915 920 937 938 939 940 955 958 968 995 998 999 1007 1013 1043 1049 1054 1055 1056 1070 1071 1080 1083 1088 1089 1090 1091 1092 1096 1099 1128 1130 1136 1138 1149 1150 1151 1152 1156 1157 1160 1167 1170 1171 1179 1182 1186 1189 1192 1193 1194 1195 1196 1197 1200 1202 1203 1205 1212 1219 1223 1224 1228 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1242 1243 1244 1245 1247 1248 1249 1250 1253 1254 1255 1257 1258 1259 1260 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1288 1289 1290 1291 1292 1293 1294 1296 1297 1306 1308 1310 1311 1312 1317 1321 1322 1326 1327 1329 1349 1350 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1378 1380 1381 1382 1383 1392 1395 1396 1398 1399 1400 1403 1405 1406 1407 1412 1413 1414 1415 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1443 1444 1445 1446 1447 1448 1451 1452 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1483 1486 1488 1492 1493 1494 1495 1496 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1517 1524 1526 1527 1528 1530 1531 1532 1533 1534 1535 1538 1546 1550 1551 1552 1553 1554 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 ];