Hi Derek! I tried with the lastest version of python(x,y) package with numpy version of 1.6.0. I gave the data to you with reduced columns (10 column) and rows.
b=np.genfromtxt('99Burn2003all_new.csv',delimiter=';',names=True,usecols=tuple(range(10)),dtype=['S10'] + [ float for n in range(9)]) works. if you change usecols=tuple(range(10)) to usecols=range(10), it still works. b=np.genfromtxt('99Burn2003all_new.csv',delimiter=';',names=True,dtype=None) works. but b=np.genfromtxt('99Burn2003all_new.csv',delimiter=';',names=True,dtype=['S10'] + [ float for n in range(9)]) didn't work. I use Python(x,y)-2.6.6.1 with numpy version as 1.6.0, I use windows 32-bit system. Please don't spend too much time on this if it's not a potential problem. the final thing is, when I try to do this (I want to try the missing_values in numpy 1.6.0), it gives error: In [33]: import StringIO as StringIO In [34]: data = "1, 2, 3\n4, 5, 6" In [35]: np.genfromtxt(StringIO(data), delimiter=",",dtype="int,int,int",missing_values=2) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) D:\data\LaThuile_ancillary\Jim_Randerson_data\<ipython console> in <module>() TypeError: 'module' object is not callable I think it must be some problem of my own python configuration? Much thanks again, cheers, Chao 2011/6/27 Derek Homeier <de...@astro.physik.uni-goettingen.de> > Hi Chao, > > this seems to have become quite a number of different issues! > But let's make sure I understand what's going on... > > > Thanks very much for your quick reply. I make a short summary of what > I've tried. Actually the ['S10'] + [ float for n in range(48) ] only works > when you explicitly specify the columns to be read, and genfromtxt cannot > automatically determine the type if you don't specify the type.... > > > > > In [164]: > b=np.genfromtxt('99Burn2003all.csv',delimiter=';',names=True,usecols=tuple(range(49)),dtype=['S10'] > + [ float for n in range(48)]) > ... > > But if I use the following, it gives error: > > > > In [171]: > b=np.genfromtxt('99Burn2003all.csv',delimiter=';',names=True,dtype=['S > > 10'] + [ float for n in range(48)]) > > > --------------------------------------------------------------------------- > > ValueError Traceback (most recent call > last) > > > And the above (without the usecols) did work if you explicitly typed > dtype=('S10', float, float....)? That by itself would be quite weird, > because the two should be completely equivalent. > What happens if you cast the generated list to a tuple - > dtype=tuple(['S10'] + [ float for n in range(48)])? > If you are using a recent numpy version (1.6.0 or 1.6.1rc1), could you > please file a bug report with complete machine info etc.? But I suspect this > might be an older version, you should also be able to simply use > 'usecols=range(49)' (without the tuple()). Either way, I cannot reproduce > this behaviour with the current numpy version. > > > If I don't specify the dtype, it will not recognize the type of the first > column (it displays as nan): > > > > In [172]: > b=np.genfromtxt('99Burn2003all.csv',delimiter=';',names=True,usecols=(0,1,2)) > > > > In [173]: b > > Out[173]: > > array([(nan, -999.0, -1.028), (nan, -999.0, -0.40899999999999997), > > (nan, -999.0, 0.16700000000000001), ..., (nan, -999.0, -999.0), > > (nan, -999.0, -999.0), (nan, -999.0, -999.0)], > > dtype=[('TIMESTAMP', '<f8'), ('CO2_flux', '<f8'), ('Net_radiation', > '<f8') > > ]) > > > You _do_ have to specify 'dtype=None', since the default is 'dtype=float', > as I have remarked in my previous mail. If this does not work, it could be a > matter of the numpy version gain - there were a number of type conversion > issues fixed between 1.5.1 and 1.6.0. > > > > Then the final question is, actually the '-999.0' in the data is missing > value, but I cannot display it as 'nan' by specifying the missing_values as > '-999.0': > > but either I set the missing_values as -999.0 or using a dictionary, it > neither work... > ... > > > > Even this doesn't work (suppose 2 is our missing_value), > > In [184]: data = "1, 2, 3\n4, 5, 6" > > > > In [185]: np.genfromtxt(StringIO(data), > delimiter=",",dtype="int,int,int",missin > > g_values=2) > > Out[185]: > > array([(1, 2, 3), (4, 5, 6)], > > dtype=[('f0', '<i4'), ('f1', '<i4'), ('f2', '<i4')]) > > OK, same behaviour here - I found the only tests involving 'valid numbers' > as missing_values use masked arrays; for regular ndarrays they seem to be > ignored. I don't know if this is by design - the question is, what do you > need to do with the data if you know ' -999' always means a missing value? > You could certainly manipulate them after reading in... > If you have to convert them already on reading in, and using np.mafromtxt > is not an option, your best bet may be to define a custom converter like > (note you have to include any blanks, if present) > > conv = dict(((n, lambda s: s==' -999' and np.nan or float(s)) for n in > range(1,49))) > > Cheers, > Derek > > -- *********************************************************************************** Chao YUE Laboratoire des Sciences du Climat et de l'Environnement (LSCE-IPSL) UMR 1572 CEA-CNRS-UVSQ Batiment 712 - Pe 119 91191 GIF Sur YVETTE Cedex Tel: (33) 01 69 08 77 30; Fax:01.69.08.77.16 ************************************************************************************
TIMESTAMP;CO2 flux;Net radiation;Sensible heat flux;Latent heat flux;u*;Water vapor density by LiCor 7500;CO2 concentration;"Air temperature (High; HMP45C)";AGC #TIMESTAMP;umol m-2 s-1;W/m^2;W/m^2;W/m^2;m/s;g/(m^3);ppm;C;unitless 01/01/2003 00:00;-999;-1.028;-999;-999;-999;-999;-999;-25.3684;-999 01/01/2003 00:30;-999;-0.409;-999;-999;-999;-999;-999;-25.3233;-999 01/01/2003 01:00;-999;0.167;-999;-999;-999;-999;-999;-25.3589;-999 01/01/2003 01:30;-999;-0.188;-999;-999;-999;-999;-999;-25.4535;-999 01/01/2003 02:00;-999;-0.017;-999;-999;-999;-999;-999;-25.5717;-999 01/01/2003 02:30;-999;0.911;-999;-999;-999;-999;-999;-25.6927;-999 01/01/2003 03:00;-999;1.675;-999;-999;-999;-999;-999;-26.261;-999 01/01/2003 03:30;-999;1.856;-999;-999;-999;-999;-999;-26.6863;-999 01/01/2003 04:00;-999;3.377;-999;-999;-999;-999;-999;-26.7538;-999 01/01/2003 04:30;-999;4.012;-999;-999;-999;-999;-999;-27.3459;-999 01/01/2003 05:00;-999;2.985;-999;-999;-999;-999;-999;-27.8764;-999 01/01/2003 05:30;-999;3.396;-999;-999;-999;-999;-999;-28.7779;-999 01/01/2003 06:00;-999;4.641;-999;-999;-999;-999;-999;-29.2211;-999 01/01/2003 06:30;-999;5.066;-999;-999;-999;-999;-999;-29.5942;-999 01/01/2003 07:00;-999;5.225;-999;-999;-999;-999;-999;-30.3728;-999 01/01/2003 07:30;-999;5.272;-999;-999;-999;-999;-999;-31.0314;-999 01/01/2003 08:00;-999;4.8;-999;-999;-999;-999;-999;-31.5624;-999 01/01/2003 08:30;-999;4.71;-999;-999;-999;-999;-999;-32.0388;-999 01/01/2003 09:00;-999;4.345;-999;-999;-999;-999;-999;-31.1014;-999 01/01/2003 09:30;-999;4.681;-999;-999;-999;-999;-999;-31.6566;-999 01/01/2003 10:00;-999;4.567;-999;-999;-999;-999;-999;-31.9319;-999 01/01/2003 10:30;-999;4.491;-999;-999;-999;-999;-999;-32.2679;-999 01/01/2003 11:00;-999;4.277;-999;-999;-999;-999;-999;-32.457;-999 01/01/2003 11:30;-999;4.054;-999;-999;-999;-999;-999;-32.4047;-999 01/01/2003 12:00;-999;2.173;-999;-999;-999;-999;-999;-32.6372;-999 01/01/2003 12:30;-999;1.132;-999;-999;-999;-999;-999;-32.7332;-999 01/01/2003 13:00;-999;-1.394;-999;-999;-999;-999;-999;-32.59;-999 01/01/2003 13:30;-999;-2.617;-999;-999;-999;-999;-999;-31.564;-999 01/01/2003 14:00;-999;-2.794;-999;-999;-999;-999;-999;-31.2353;-999 01/01/2003 14:30;-999;-8.017;-999;-999;-999;-999;-999;-31.5474;-999 01/01/2003 15:00;-999;-2.115;-999;-999;-999;-999;-999;-31.765;-999 01/01/2003 15:30;-999;-0.143;-999;-999;-999;-999;-999;-31.3201;-999 01/01/2003 16:00;-999;1.267;-999;-999;-999;-999;-999;-31.5929;-999 01/01/2003 16:30;-999;-0.282;-999;-999;-999;-999;-999;-31.4198;-999 01/01/2003 17:00;-999;-0.281;-999;-999;-999;-999;-999;-31.8246;-999 01/01/2003 17:30;-999;-1.001;-999;-999;-999;-999;-999;-31.0432;-999 01/01/2003 18:00;-999;0.054;-999;-999;-999;-999;-999;-30.972;-999 01/01/2003 18:30;-999;1.008;-999;-999;-999;-999;-999;-30.6776;-999 01/01/2003 19:00;-999;-2.189;-999;-999;-999;-999;-999;-30.5332;-999 01/01/2003 19:30;-999;-3.992;-999;-999;-999;-999;-999;-29.8003;-999 01/01/2003 20:00;-999;-2.537;-999;-999;-999;-999;-999;-28.5913;-999 01/01/2003 20:30;-999;-2.093;-999;-999;-999;-999;-999;-27.8852;-999 01/01/2003 21:00;-999;0.324;-999;-999;-999;-999;-999;-27.4831;-999 01/01/2003 21:30;-999;1.97;-999;-999;-999;-999;-999;-27.5662;-999 01/01/2003 22:00;-999;2.527;-999;-999;-999;-999;-999;-27.8688;-999 01/01/2003 22:30;-999;2.553;-999;-999;-999;-999;-999;-28.0078;-999 01/01/2003 23:00;-999;2.719;-999;-999;-999;-999;-999;-28.858;-999 01/01/2003 23:30;-999;3.2;-999;-999;-999;-999;-999;-29.1183;-999 02/01/2003 00:00;-999;3.176;-999;-999;-999;-999;-999;-29.6443;-999 02/01/2003 00:30;-999;1.682;-999;-999;-999;-999;-999;-30.6337;-999 02/01/2003 01:00;-999;1.569;-999;-999;-999;-999;-999;-30.0727;-999 02/01/2003 01:30;-999;1.247;-999;-999;-999;-999;-999;-29.8676;-999 02/01/2003 02:00;-999;2.679;-999;-999;-999;-999;-999;-29.4964;-999 02/01/2003 02:30;-999;2.339;-999;-999;-999;-999;-999;-30.039;-999 02/01/2003 03:00;-999;2.85;-999;-999;-999;-999;-999;-30.0223;-999 02/01/2003 03:30;-999;1.844;-999;-999;-999;-999;-999;-30.979;-999 02/01/2003 04:00;-999;1.383;-999;-999;-999;-999;-999;-30.9313;-999 02/01/2003 04:30;-999;0.157;-999;-999;-999;-999;-999;-30.8023;-999 02/01/2003 05:00;-999;0.23;-999;-999;-999;-999;-999;-29.6911;-999 02/01/2003 05:30;-999;3.226;-999;-999;-999;-999;-999;-30.1023;-999 02/01/2003 06:00;-999;1.02;-999;-999;-999;-999;-999;-29.7733;-999 02/01/2003 06:30;-999;1.998;-999;-999;-999;-999;-999;-29.7671;-999 02/01/2003 07:00;-999;1.737;-999;-999;-999;-999;-999;-29.1955;-999 02/01/2003 07:30;-999;0.688;-999;-999;-999;-999;-999;-28.6603;-999 02/01/2003 08:00;-999;2.919;-999;-999;-999;-999;-999;-29.1426;-999 02/01/2003 08:30;-999;4.067;-999;-999;-999;-999;-999;-29.8793;-999 02/01/2003 09:00;-999;3.461;-999;-999;-999;-999;-999;-29.4382;-999 02/01/2003 09:30;-999;3.074;-999;-999;-999;-999;-999;-30.5472;-999 02/01/2003 10:00;-999;2.507;-999;-999;-999;-999;-999;-29.8167;-999 02/01/2003 10:30;-999;4.497;-999;-999;-999;-999;-999;-29.7924;-999 02/01/2003 11:00;-999;3.328;-999;-999;-999;-999;-999;-30.3725;-999 02/01/2003 11:30;-999;0.571;-999;-999;-999;-999;-999;-29.0591;-999 02/01/2003 12:00;-999;1.024;-999;-999;-999;-999;-999;-29.2255;-999 02/01/2003 12:30;-999;-1.834;-999;-999;-999;-999;-999;-29.8131;-999 02/01/2003 13:00;-999;-2.908;-999;-999;-999;-999;-999;-29.1584;-999 02/01/2003 13:30;-999;-10.36;-999;-999;-999;-999;-999;-28.244;-999 02/01/2003 14:00;-999;-9.284;-999;-999;-999;-999;-999;-26.2769;-999 02/01/2003 14:30;-999;-10.185;-999;-999;-999;-999;-999;-24.4763;-999 02/01/2003 15:00;-999;-2.35;-999;-999;-999;-999;-999;-23.5516;-999 02/01/2003 15:30;-999;3.412;-999;-999;-999;-999;-999;-23.8667;-999 02/01/2003 16:00;-999;2.2;-999;-999;-999;-999;-999;-22.785;-999 02/01/2003 16:30;-999;4.338;-999;-999;-999;-999;-999;-22.6405;-999 02/01/2003 17:00;-999;3.747;-999;-999;-999;-999;-999;-25.362;-999 02/01/2003 17:30;-999;1.777;-999;-999;-999;-999;-999;-24.0074;-999 02/01/2003 18:00;-999;2.684;-999;-999;-999;-999;-999;-23.2573;-999 02/01/2003 18:30;-999;3.773;-999;-999;-999;-999;-999;-22.3894;-999 02/01/2003 19:00;-999;3.866;-999;-999;-999;-999;-999;-22.0428;-999 02/01/2003 19:30;-999;1.713;-999;-999;-999;-999;-999;-21.8664;-999 02/01/2003 20:00;-999;1.953;-999;-999;-999;-999;-999;-20.9711;-999 02/01/2003 20:30;-999;0.601;-999;-999;-999;-999;-999;-21.6758;-999 02/01/2003 21:00;-999;0.108;-999;-999;-999;-999;-999;-19.3906;-999 02/01/2003 21:30;-999;2.257;-999;-999;-999;-999;-999;-18.2217;-999 02/01/2003 22:00;-999;3.432;-999;-999;-999;-999;-999;-18.794;-999 02/01/2003 22:30;-999;1.78;-999;-999;-999;-999;-999;-18.6213;-999 02/01/2003 23:00;-999;2.842;-999;-999;-999;-999;-999;-19.4019;-999 02/01/2003 23:30;-999;1.481;-999;-999;-999;-999;-999;-19.0536;-999 03/01/2003 00:00;-999;2.253;-999;-999;-999;-999;-999;-18.989;-999 03/01/2003 00:30;-999;1.343;-999;-999;-999;-999;-999;-17.3401;-999 03/01/2003 01:00;-999;2.859;-999;-999;-999;-999;-999;-16.3831;-999 03/01/2003 01:30;-999;3.203;-999;-999;-999;-999;-999;-16.6249;-999 03/01/2003 02:00;-999;3.465;-999;-999;-999;-999;-999;-16.7923;-999 03/01/2003 02:30;-999;6.48;-999;-999;-999;-999;-999;-17.8546;-999 03/01/2003 03:00;-999;4.036;-999;-999;-999;-999;-999;-18.5633;-999 03/01/2003 03:30;-999;4.025;-999;-999;-999;-999;-999;-16.1118;-999 03/01/2003 04:00;-999;3.995;-999;-999;-999;-999;-999;-15.4682;-999 03/01/2003 04:30;-999;3.887;-999;-999;-999;-999;-999;-15.2933;-999 03/01/2003 05:00;-999;4.402;-999;-999;-999;-999;-999;-15.5187;-999 03/01/2003 05:30;-999;3.47;-999;-999;-999;-999;-999;-15.3473;-999 03/01/2003 06:00;-999;4.092;-999;-999;-999;-999;-999;-15.3279;-999 03/01/2003 06:30;-999;5.565;-999;-999;-999;-999;-999;-15.3803;-999 03/01/2003 07:00;-999;5.777;-999;-999;-999;-999;-999;-15.2326;-999 03/01/2003 07:30;-999;4.618;-999;-999;-999;-999;-999;-15.1447;-999 03/01/2003 08:00;-999;4.616;-999;-999;-999;-999;-999;-14.9972;-999 03/01/2003 08:30;-999;6.38;-999;-999;-999;-999;-999;-15.369;-999 03/01/2003 09:00;-999;5.324;-999;-999;-999;-999;-999;-15.315;-999 03/01/2003 09:30;-999;4.744;-999;-999;-999;-999;-999;-15.0946;-999 03/01/2003 10:00;-999;4.444;-999;-999;-999;-999;-999;-14.514;-999 03/01/2003 10:30;-999;3.713;-999;-999;-999;-999;-999;-14.3807;-999 03/01/2003 11:00;-999;3.171;-999;-999;-999;-999;-999;-14.3681;-999 03/01/2003 11:30;-999;2.923;-999;-999;-999;-999;-999;-14.2006;-999 03/01/2003 12:00;-999;2.04;-999;-999;-999;-999;-999;-14.0012;-999 03/01/2003 12:30;-999;1.711;-999;-999;-999;-999;-999;-13.8631;-999 03/01/2003 13:00;-999;1.485;-999;-999;-999;-999;-999;-13.5422;-999 03/01/2003 13:30;-999;2.472;-999;-999;-999;-999;-999;-12.9713;-999 03/01/2003 14:00;-999;-0.979;-999;-999;-999;-999;-999;-12.6348;-999 03/01/2003 14:30;-999;-3.337;-999;-999;-999;-999;-999;-12.4723;-999 03/01/2003 15:00;-999;-4.93;-999;-999;-999;-999;-999;-12.3302;-999 03/01/2003 15:30;-999;-6.501;-999;-999;-999;-999;-999;-12.1321;-999 03/01/2003 16:00;-999;-7.167;-999;-999;-999;-999;-999;-11.7714;-999 03/01/2003 16:30;-999;-8.401;-999;-999;-999;-999;-999;-11.5842;-999 03/01/2003 17:00;-999;-9.235;-999;-999;-999;-999;-999;-11.4755;-999 03/01/2003 17:30;-999;-8.463;-999;-999;-999;-999;-999;-11.5404;-999 03/01/2003 18:00;-999;-9.759;-999;-999;-999;-999;-999;-11.112;-999 03/01/2003 18:30;-999;-9.869;-999;-999;-999;-999;-999;-10.776;-999 03/01/2003 19:00;-999;-14.542;-999;-999;-999;-999;-999;-10.5862;-999 03/01/2003 19:30;-999;-17.769;-999;-999;-999;-999;-999;-10.5716;-999 03/01/2003 20:00;-999;-18.228;-999;-999;-999;-999;-999;-10.5174;-999 03/01/2003 20:30;-999;-17.93;-999;-999;-999;-999;-999;-10.1817;-999 03/01/2003 21:00;-999;-18.893;-999;-999;-999;-999;-999;-9.98274;-999 03/01/2003 21:30;-999;-20.777;-999;-999;-999;-999;-999;-9.90765;-999 03/01/2003 22:00;-999;-27.32;-999;-999;-999;-999;-999;-9.91262;-999 03/01/2003 22:30;-999;-32.044;-999;-999;-999;-999;-999;-9.88397;-999 03/01/2003 23:00;-999;-37.289;-999;-999;-999;-999;-999;-9.71604;-999 03/01/2003 23:30;-999;-39.398;-999;-999;-999;-999;-999;-9.62151;-999 04/01/2003 00:00;-999;-39.729;-999;-999;-999;-999;-999;-9.57609;-999 04/01/2003 00:30;-999;-40.198;-999;-999;-999;-999;-999;-9.55679;-999 04/01/2003 01:00;-999;-43.056;-999;-999;-999;-999;-999;-9.21375;-999 04/01/2003 01:30;-999;-42.466;-999;-999;-999;-999;-999;-9.07762;-999 04/01/2003 02:00;-999;-38.953;-999;-999;-999;-999;-999;-9.1115;-999 04/01/2003 02:30;-999;-25.883;-999;-999;-999;-999;-999;-8.69306;-999 04/01/2003 03:00;-999;-11.089;-999;-999;-999;-999;-999;-8.40209;-999 04/01/2003 03:30;-999;-29.248;-999;-999;-999;-999;-999;-8.15214;-999 04/01/2003 04:00;-999;-43.467;-999;-999;-999;-999;-999;-8.26551;-999 04/01/2003 04:30;-999;-38.188;-999;-999;-999;-999;-999;-8.41406;-999 04/01/2003 05:00;-999;-27.488;-999;-999;-999;-999;-999;-8.09833;-999 04/01/2003 05:30;-999;-21.59;-999;-999;-999;-999;-999;-7.78882;-999 04/01/2003 06:00;-999;-17.32;-999;-999;-999;-999;-999;-7.51847;-999 04/01/2003 06:30;-999;-20.089;-999;-999;-999;-999;-999;-7.58812;-999 04/01/2003 07:00;-999;-36.228;-999;-999;-999;-999;-999;-7.59382;-999 04/01/2003 07:30;-999;-37.486;-999;-999;-999;-999;-999;-7.64159;-999 04/01/2003 08:00;-999;-37.864;-999;-999;-999;-999;-999;-7.48568;-999 04/01/2003 08:30;-999;-35.798;-999;-999;-999;-999;-999;-6.88853;-999 04/01/2003 09:00;-999;-19.985;-999;-999;-999;-999;-999;-6.32035;-999 04/01/2003 09:30;-999;-26.062;-999;-999;-999;-999;-999;-6.20742;-999 04/01/2003 10:00;-999;-22.699;-999;-999;-999;-999;-999;-5.8874;-999 04/01/2003 10:30;-999;-21.043;-999;-999;-999;-999;-999;-6.58083;-999 04/01/2003 11:00;-999;-13.678;-999;-999;-999;-999;-999;-7.25704;-999 04/01/2003 11:30;-999;-6.388;-999;-999;-999;-999;-999;-8.50532;-999 04/01/2003 12:00;-999;-3.586;-999;-999;-999;-999;-999;-9.01084;-999 04/01/2003 12:30;-999;-1.107;-999;-999;-999;-999;-999;-8.43873;-999 04/01/2003 13:00;-999;2.152;-999;-999;-999;-999;-999;-7.98568;-999 04/01/2003 13:30;-999;-3.88;-999;-999;-999;-999;-999;-7.98738;-999 04/01/2003 14:00;-999;-8.461;-999;-999;-999;-999;-999;-7.88919;-999 04/01/2003 14:30;-999;-7.87;-999;-999;-999;-999;-999;-7.95434;-999 04/01/2003 15:00;-999;-0.109;-999;-999;-999;-999;-999;-7.59583;-999 04/01/2003 15:30;-999;-9.274;-999;-999;-999;-999;-999;-7.63399;-999 04/01/2003 16:00;-999;-6.716;-999;-999;-999;-999;-999;-7.26186;-999 04/01/2003 16:30;-999;-3.971;-999;-999;-999;-999;-999;-7.49239;-999 04/01/2003 17:00;-999;-0.68;-999;-999;-999;-999;-999;-7.80337;-999 04/01/2003 17:30;-999;-13.152;-999;-999;-999;-999;-999;-8.05643;-999 04/01/2003 18:00;-999;-12.25;-999;-999;-999;-999;-999;-8.53737;-999 04/01/2003 18:30;-999;-0.723;-999;-999;-999;-999;-999;-8.56423;-999 04/01/2003 19:00;-999;-1.017;-999;-999;-999;-999;-999;-8.30735;-999 04/01/2003 19:30;-999;0.369;-999;-999;-999;-999;-999;-7.83291;-999 04/01/2003 20:00;-999;-0.085;-999;-999;-999;-999;-999;-7.67665;-999 04/01/2003 20:30;-999;-3.396;-999;-999;-999;-999;-999;-7.7831;-999 04/01/2003 21:00;-999;-12.228;-999;-999;-999;-999;-999;-7.50991;-999 04/01/2003 21:30;-999;-20.358;-999;-999;-999;-999;-999;-7.33738;-999 04/01/2003 22:00;-999;-6.162;-999;-999;-999;-999;-999;-6.5397;-999 04/01/2003 22:30;-999;-1.559;-999;-999;-999;-999;-999;-5.76714;-999 04/01/2003 23:00;-999;-6.702;-999;-999;-999;-999;-999;-5.72089;-999 04/01/2003 23:30;-999;-3.886;-999;-999;-999;-999;-999;-7.14382;-999 05/01/2003 00:00;-999;-1.836;-999;-999;-999;-999;-999;-7.826;-999 05/01/2003 00:30;-999;-12.897;-999;-999;-999;-999;-999;-8.09855;-999 05/01/2003 01:00;-999;-43.195;-999;-999;-999;-999;-999;-8.45621;-999 05/01/2003 01:30;-999;-20.592;-999;-999;-999;-999;-999;-8.43516;-999 05/01/2003 02:00;-999;-8.119;-999;-999;-999;-999;-999;-8.4813;-999 05/01/2003 02:30;-999;-14.152;-999;-999;-999;-999;-999;-8.77314;-999 05/01/2003 03:00;-999;-12.44;-999;-999;-999;-999;-999;-9.0161;-999 05/01/2003 03:30;-999;-12.398;-999;-999;-999;-999;-999;-9.35764;-999 05/01/2003 04:00;-999;-34.218;-999;-999;-999;-999;-999;-9.81627;-999 05/01/2003 04:30;-999;-33.337;-999;-999;-999;-999;-999;-10.5331;-999 05/01/2003 05:00;-999;-27.582;-999;-999;-999;-999;-999;-11.0403;-999 05/01/2003 05:30;-999;-24.849;-999;-999;-999;-999;-999;-11.4485;-999 05/01/2003 06:00;-999;-23.931;-999;-999;-999;-999;-999;-12.212;-999 05/01/2003 06:30;-999;-18.736;-999;-999;-999;-999;-999;-12.8766;-999 05/01/2003 07:00;-999;-21.467;-999;-999;-999;-999;-999;-12.7913;-999 05/01/2003 07:30;-999;-21.508;-999;-999;-999;-999;-999;-13.1613;-999 05/01/2003 08:00;-999;-18.298;-999;-999;-999;-999;-999;-13.4711;-999 05/01/2003 08:30;-999;-14.89;-999;-999;-999;-999;-999;-13.8012;-999 05/01/2003 09:00;-999;-6.133;-999;-999;-999;-999;-999;-14.4988;-999 05/01/2003 09:30;-999;-7.869;-999;-999;-999;-999;-999;-14.5459;-999 05/01/2003 10:00;-999;-10.216;-999;-999;-999;-999;-999;-14.842;-999 05/01/2003 10:30;-999;-12.659;-999;-999;-999;-999;-999;-15.1625;-999 05/01/2003 11:00;-999;-8.062;-999;-999;-999;-999;-999;-15.3372;-999 05/01/2003 11:30;-999;-5.823;-999;-999;-999;-999;-999;-15.0971;-999 05/01/2003 12:00;-999;-4.162;-999;-999;-999;-999;-999;-15.0324;-999 05/01/2003 12:30;-999;-4.337;-999;-999;-999;-999;-999;-14.9367;-999 05/01/2003 13:00;-999;0.802;-999;-999;-999;-999;-999;-14.8149;-999 05/01/2003 13:30;-999;2.383;-999;-999;-999;-999;-999;-14.6448;-999 05/01/2003 14:00;-999;0.323;-999;-999;-999;-999;-999;-14.6748;-999 05/01/2003 14:30;-999;-0.169;-999;-999;-999;-999;-999;-14.7472;-999 05/01/2003 15:00;-999;-0.604;-999;-999;-999;-999;-999;-14.8819;-999 05/01/2003 15:30;-999;-1.197;-999;-999;-999;-999;-999;-14.986;-999 05/01/2003 16:00;-999;-2.36;-999;-999;-999;-999;-999;-15.1826;-999 05/01/2003 16:30;-999;-2.985;-999;-999;-999;-999;-999;-15.3111;-999 05/01/2003 17:00;-999;-3.525;-999;-999;-999;-999;-999;-15.4604;-999 05/01/2003 17:30;-999;-3.863;-999;-999;-999;-999;-999;-15.8248;-999 05/01/2003 18:00;-999;-4.46;-999;-999;-999;-999;-999;-16.0109;-999 05/01/2003 18:30;-999;-4.524;-999;-999;-999;-999;-999;-16.5484;-999 05/01/2003 19:00;-999;-4.514;-999;-999;-999;-999;-999;-16.8749;-999 05/01/2003 19:30;-999;-4.535;-999;-999;-999;-999;-999;-17.043;-999 05/01/2003 20:00;-999;-4.472;-999;-999;-999;-999;-999;-17.2043;-999 05/01/2003 20:30;-999;-4.502;-999;-999;-999;-999;-999;-17.3777;-999 05/01/2003 21:00;-999;-4.587;-999;-999;-999;-999;-999;-17.5759;-999 05/01/2003 21:30;-999;-4.918;-999;-999;-999;-999;-999;-17.5128;-999 05/01/2003 22:00;-999;-4.827;-999;-999;-999;-999;-999;-17.5863;-999 05/01/2003 22:30;-999;-4.303;-999;-999;-999;-999;-999;-17.7534;-999 05/01/2003 23:00;-999;-5.104;-999;-999;-999;-999;-999;-17.9167;-999 05/01/2003 23:30;-999;-3.251;-999;-999;-999;-999;-999;-18.0318;-999 06/01/2003 00:00;-999;-4.498;-999;-999;-999;-999;-999;-18.2869;-999 06/01/2003 00:30;-999;-2.935;-999;-999;-999;-999;-999;-18.3242;-999 06/01/2003 01:00;-999;-3.717;-999;-999;-999;-999;-999;-18.5274;-999 06/01/2003 01:30;-999;-3.637;-999;-999;-999;-999;-999;-18.6392;-999 06/01/2003 02:00;-999;-3.246;-999;-999;-999;-999;-999;-18.6072;-999 06/01/2003 02:30;-999;-3.922;-999;-999;-999;-999;-999;-18.695;-999 06/01/2003 03:00;-999;-3.533;-999;-999;-999;-999;-999;-18.8296;-999 06/01/2003 03:30;-999;-3.814;-999;-999;-999;-999;-999;-18.9449;-999 06/01/2003 04:00;-999;-3.942;-999;-999;-999;-999;-999;-19.0118;-999 06/01/2003 04:30;-999;-4.03;-999;-999;-999;-999;-999;-19.0895;-999 06/01/2003 05:00;-999;-3.999;-999;-999;-999;-999;-999;-19.1702;-999 06/01/2003 05:30;-999;-4.315;-999;-999;-999;-999;-999;-19.207;-999 06/01/2003 06:00;-999;-4.112;-999;-999;-999;-999;-999;-19.2562;-999 06/01/2003 06:30;-999;-4.006;-999;-999;-999;-999;-999;-19.314;-999 06/01/2003 07:00;-999;-4.461;-999;-999;-999;-999;-999;-19.3676;-999 06/01/2003 07:30;-999;-3.722;-999;-999;-999;-999;-999;-19.4657;-999 06/01/2003 08:00;-999;-4.531;-999;-999;-999;-999;-999;-19.4981;-999 06/01/2003 08:30;-999;-5.02;-999;-999;-999;-999;-999;-19.5257;-999 06/01/2003 09:00;-999;-4.429;-999;-999;-999;-999;-999;-19.5865;-999 06/01/2003 09:30;-999;-4.127;-999;-999;-999;-999;-999;-19.5733;-999 06/01/2003 10:00;-999;-4.957;-999;-999;-999;-999;-999;-19.5184;-999 06/01/2003 10:30;-999;-4.978;-999;-999;-999;-999;-999;-19.4892;-999 06/01/2003 11:00;-999;-4.588;-999;-999;-999;-999;-999;-19.4621;-999 06/01/2003 11:30;-999;-5.369;-999;-999;-999;-999;-999;-19.5665;-999 06/01/2003 12:00;-999;-5.813;-999;-999;-999;-999;-999;-19.6302;-999 06/01/2003 12:30;-999;-5.401;-999;-999;-999;-999;-999;-19.6707;-999 06/01/2003 13:00;-999;-3.434;-999;-999;-999;-999;-999;-19.8542;-999 06/01/2003 13:30;-999;-3.554;-999;-999;-999;-999;-999;-19.9712;-999 06/01/2003 14:00;-999;-2.66;-999;-999;-999;-999;-999;-20.1536;-999 06/01/2003 14:30;-999;-3.829;-999;-999;-999;-999;-999;-20.3142;-999 06/01/2003 15:00;-999;-5.244;-999;-999;-999;-999;-999;-20.5037;-999 06/01/2003 15:30;-999;-6.483;-999;-999;-999;-999;-999;-20.7062;-999 06/01/2003 16:00;-999;-7.996;-999;-999;-999;-999;-999;-20.8855;-999 06/01/2003 16:30;-999;-10.708;-999;-999;-999;-999;-999;-21.2667;-999 06/01/2003 17:00;-999;-7.584;-999;-999;-999;-999;-999;-21.495;-999 06/01/2003 17:30;-999;-5.182;-999;-999;-999;-999;-999;-21.6218;-999 06/01/2003 18:00;-999;-2.462;-999;-999;-999;-999;-999;-21.7768;-999 06/01/2003 18:30;-999;-2.68;-999;-999;-999;-999;-999;-21.9018;-999 06/01/2003 19:00;-999;-2.056;-999;-999;-999;-999;-999;-21.9661;-999 06/01/2003 19:30;-999;-1.666;-999;-999;-999;-999;-999;-22.0224;-999 06/01/2003 20:00;-999;-1.516;-999;-999;-999;-999;-999;-22.2401;-999 06/01/2003 20:30;-999;-1.707;-999;-999;-999;-999;-999;-22.419;-999 06/01/2003 21:00;-999;-1.713;-999;-999;-999;-999;-999;-22.5115;-999 06/01/2003 21:30;-999;-1.841;-999;-999;-999;-999;-999;-22.5012;-999 06/01/2003 22:00;-999;-1.61;-999;-999;-999;-999;-999;-22.7069;-999 06/01/2003 22:30;-999;-0.272;-999;-999;-999;-999;-999;-22.8928;-999 06/01/2003 23:00;-999;0.893;-999;-999;-999;-999;-999;-23.2428;-999 06/01/2003 23:30;-999;-0.198;-999;-999;-999;-999;-999;-23.9252;-999 07/01/2003 00:00;-999;-0.496;-999;-999;-999;-999;-999;-24.4933;-999 07/01/2003 00:30;-999;-0.245;-999;-999;-999;-999;-999;-24.7158;-999 07/01/2003 01:00;-999;-0.735;-999;-999;-999;-999;-999;-25.0725;-999 07/01/2003 01:30;-999;-0.606;-999;-999;-999;-999;-999;-25.3066;-999 07/01/2003 02:00;-999;0.829;-999;-999;-999;-999;-999;-25.7177;-999 07/01/2003 02:30;-999;1.43;-999;-999;-999;-999;-999;-26.1037;-999 07/01/2003 03:00;-999;1.776;-999;-999;-999;-999;-999;-26.205;-999 07/01/2003 03:30;-999;1.337;-999;-999;-999;-999;-999;-26.1944;-999 07/01/2003 04:00;-999;1.639;-999;-999;-999;-999;-999;-26.1497;-999 07/01/2003 04:30;-999;-0.277;-999;-999;-999;-999;-999;-25.8406;-999 07/01/2003 05:00;-999;-0.771;-999;-999;-999;-999;-999;-25.6599;-999 07/01/2003 05:30;-999;-1.306;-999;-999;-999;-999;-999;-25.5218;-999 07/01/2003 06:00;-999;1.364;-999;-999;-999;-999;-999;-25.7242;-999 07/01/2003 06:30;-999;1.074;-999;-999;-999;-999;-999;-25.9422;-999 07/01/2003 07:00;-999;0.472;-999;-999;-999;-999;-999;-26.1568;-999 07/01/2003 07:30;-999;0.11;-999;-999;-999;-999;-999;-26.675;-999 07/01/2003 08:00;-999;-1.111;-999;-999;-999;-999;-999;-27.6411;-999 07/01/2003 08:30;-999;-2.194;-999;-999;-999;-999;-999;-27.2999;-999 07/01/2003 09:00;-999;-3.548;-999;-999;-999;-999;-999;-27.0873;-999 07/01/2003 09:30;-999;0.4;-999;-999;-999;-999;-999;-27.6412;-999 07/01/2003 10:00;-999;-0.15;-999;-999;-999;-999;-999;-27.9518;-999 07/01/2003 10:30;-999;1.474;-999;-999;-999;-999;-999;-27.9582;-999 07/01/2003 11:00;-999;1.05;-999;-999;-999;-999;-999;-27.9835;-999 07/01/2003 11:30;-999;-0.93;-999;-999;-999;-999;-999;-27.5947;-999 07/01/2003 12:00;-999;-2.168;-999;-999;-999;-999;-999;-26.9244;-999 07/01/2003 12:30;-999;-2.698;-999;-999;-999;-999;-999;-26.5007;-999 07/01/2003 13:00;-999;-4.078;-999;-999;-999;-999;-999;-26.496;-999 07/01/2003 13:30;-999;-0.415;-999;-999;-999;-999;-999;-26.336;-999 07/01/2003 14:00;-999;-4.332;-999;-999;-999;-999;-999;-26.188;-999 07/01/2003 14:30;-999;-5.594;-999;-999;-999;-999;-999;-26.0331;-999 07/01/2003 15:00;-999;-4.403;-999;-999;-999;-999;-999;-26.3734;-999 07/01/2003 15:30;-999;-1.489;-999;-999;-999;-999;-999;-26.9748;-999 07/01/2003 16:00;-999;-4.91;-999;-999;-999;-999;-999;-27.5729;-999 07/01/2003 16:30;-999;1.245;-999;-999;-999;-999;-999;-28.2429;-999 07/01/2003 17:00;-999;4.538;-999;-999;-999;-999;-999;-29.4347;-999 07/01/2003 17:30;-999;4.991;-999;-999;-999;-999;-999;-30.636;-999 07/01/2003 18:00;-999;5.102;-999;-999;-999;-999;-999;-31.325;-999 07/01/2003 18:30;-999;5.075;-999;-999;-999;-999;-999;-31.2937;-999 07/01/2003 19:00;-999;3.937;-999;-999;-999;-999;-999;-31.4484;-999 07/01/2003 19:30;-999;3.918;-999;-999;-999;-999;-999;-33.0548;-999 07/01/2003 20:00;-999;3.027;-999;-999;-999;-999;-999;-32.0494;-999 07/01/2003 20:30;-999;4.638;-999;-999;-999;-999;-999;-31.4482;-999 07/01/2003 21:00;-999;4.849;-999;-999;-999;-999;-999;-31.6008;-999 07/01/2003 21:30;-999;3.717;-999;-999;-999;-999;-999;-32.0835;-999 07/01/2003 22:00;-999;3.685;-999;-999;-999;-999;-999;-31.4286;-999 07/01/2003 22:30;-999;3.337;-999;-999;-999;-999;-999;-30.5144;-999 07/01/2003 23:00;-999;3.993;-999;-999;-999;-999;-999;-30.9088;-999 07/01/2003 23:30;-999;2.188;-999;-999;-999;-999;-999;-32.4719;-999 08/01/2003 00:00;-999;0.55;-999;-999;-999;-999;-999;-33.6432;-999 08/01/2003 00:30;-999;-0.515;-999;-999;-999;-999;-999;-33.6487;-999 08/01/2003 01:00;-999;0.735;-999;-999;-999;-999;-999;-34.3622;-999 08/01/2003 01:30;-999;1.044;-999;-999;-999;-999;-999;-34.2979;-999 08/01/2003 02:00;-999;-0.036;-999;-999;-999;-999;-999;-33.9964;-999 08/01/2003 02:30;-999;-0.069;-999;-999;-999;-999;-999;-33.2764;-999 08/01/2003 03:00;-999;0.296;-999;-999;-999;-999;-999;-33.1029;-999 08/01/2003 03:30;-999;-0.239;-999;-999;-999;-999;-999;-32.7975;-999 08/01/2003 04:00;-999;-0.689;-999;-999;-999;-999;-999;-30.9802;-999 08/01/2003 04:30;-999;-0.458;-999;-999;-999;-999;-999;-29.2581;-999 08/01/2003 05:00;-999;-0.73;-999;-999;-999;-999;-999;-27.6578;-999 08/01/2003 05:30;-999;-1.111;-999;-999;-999;-999;-999;-25.5206;-999 08/01/2003 06:00;-999;-1.078;-999;-999;-999;-999;-999;-24.3591;-999 08/01/2003 06:30;-999;-0.818;-999;-999;-999;-999;-999;-22.4274;-999 08/01/2003 07:00;-999;-0.029;-999;-999;-999;-999;-999;-21.8175;-999 08/01/2003 07:30;-999;-0.433;-999;-999;-999;-999;-999;-21.7854;-999 08/01/2003 08:00;-999;-0.253;-999;-999;-999;-999;-999;-21.6536;-999 08/01/2003 08:30;-999;-0.596;-999;-999;-999;-999;-999;-21.0257;-999 08/01/2003 09:00;-999;-0.608;-999;-999;-999;-999;-999;-20.815;-999 08/01/2003 09:30;-999;-0.754;-999;-999;-999;-999;-999;-20.5499;-999 08/01/2003 10:00;-999;-0.582;-999;-999;-999;-999;-999;-20.4474;-999 08/01/2003 10:30;-999;-0.373;-999;-999;-999;-999;-999;-20.2758;-999 08/01/2003 11:00;-999;-0.869;-999;-999;-999;-999;-999;-19.992;-999 08/01/2003 11:30;-999;-1.533;-999;-999;-999;-999;-999;-19.1792;-999 08/01/2003 12:00;-999;-1.655;-999;-999;-999;-999;-999;-18.9065;-999 08/01/2003 12:30;-999;-2.455;-999;-999;-999;-999;-999;-18.7731;-999 08/01/2003 13:00;-999;-3.563;-999;-999;-999;-999;-999;-18.4898;-999 08/01/2003 13:30;-999;-4.158;-999;-999;-999;-999;-999;-18.4289;-999 08/01/2003 14:00;-999;-4.596;-999;-999;-999;-999;-999;-18.4128;-999 08/01/2003 14:30;-999;-2.616;-999;-999;-999;-999;-999;-18.1774;-999 08/01/2003 15:00;-999;-2.267;-999;-999;-999;-999;-999;-18.0032;-999 08/01/2003 15:30;-999;-3.567;-999;-999;-999;-999;-999;-17.8487;-999 08/01/2003 16:00;-999;-3.492;-999;-999;-999;-999;-999;-17.5727;-999 08/01/2003 16:30;-999;-3.648;-999;-999;-999;-999;-999;-17.4927;-999 08/01/2003 17:00;-999;-3.441;-999;-999;-999;-999;-999;-17.5401;-999 08/01/2003 17:30;-999;-4.055;-999;-999;-999;-999;-999;-17.3676;-999 08/01/2003 18:00;-999;-4.343;-999;-999;-999;-999;-999;-17.4829;-999 08/01/2003 18:30;-999;-4.844;-999;-999;-999;-999;-999;-17.2842;-999 08/01/2003 19:00;-999;-5.727;-999;-999;-999;-999;-999;-16.8325;-999 08/01/2003 19:30;-999;-5.945;-999;-999;-999;-999;-999;-16.4214;-999 08/01/2003 20:00;-999;-7.023;-999;-999;-999;-999;-999;-16.1271;-999 08/01/2003 20:30;-999;-7.303;-999;-999;-999;-999;-999;-16.0465;-999 08/01/2003 21:00;-999;-8.421;-999;-999;-999;-999;-999;-15.7038;-999 08/01/2003 21:30;-999;-9.266;-999;-999;-999;-999;-999;-15.4794;-999 08/01/2003 22:00;-999;-10.055;-999;-999;-999;-999;-999;-15.4177;-999 08/01/2003 22:30;-999;-11.324;-999;-999;-999;-999;-999;-15.1055;-999 08/01/2003 23:00;-999;-11.594;-999;-999;-999;-999;-999;-15.1802;-999 08/01/2003 23:30;-999;-9.792;-999;-999;-999;-999;-999;-14.94;-999 09/01/2003 00:00;-999;-9.854;-999;-999;-999;-999;-999;-14.5553;-999 09/01/2003 00:30;-999;-17.212;-999;-999;-999;-999;-999;-14.4251;-999 09/01/2003 01:00;-999;-19.428;-999;-999;-999;-999;-999;-14.1119;-999 09/01/2003 01:30;-999;-16.496;-999;-999;-999;-999;-999;-14.0729;-999 09/01/2003 02:00;-999;-15.506;-999;-999;-999;-999;-999;-13.617;-999 09/01/2003 02:30;-999;-16.442;-999;-999;-999;-999;-999;-13.4771;-999 09/01/2003 03:00;-999;-23.312;-999;-999;-999;-999;-999;-13.6387;-999 09/01/2003 03:30;-999;-25.386;-999;-999;-999;-999;-999;-13.5799;-999 09/01/2003 04:00;-999;-22.643;-999;-999;-999;-999;-999;-13.4793;-999 09/01/2003 04:30;-999;-22.647;-999;-999;-999;-999;-999;-13.6597;-999 09/01/2003 05:00;-999;-25.961;-999;-999;-999;-999;-999;-13.2527;-999 09/01/2003 05:30;-999;-26.782;-999;-999;-999;-999;-999;-13.3219;-999 09/01/2003 06:00;-999;-28.017;-999;-999;-999;-999;-999;-13.4864;-999 09/01/2003 06:30;-999;-28.577;-999;-999;-999;-999;-999;-13.4963;-999
_______________________________________________ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/mailman/listinfo/numpy-discussion