No subject


Fri Jul 2 11:13:49 CEST 2010


read data file with a formatted timestamp, from Nicolas it might be a
feature for the future.

I have tried to change the comment indicator to remove /.
I'm however afraid that this did not solve the problem. When I load the
file, I still get a vector with all 2010's. It does solve the interpretation
of the next columns (actual values).

I have made an example to show what I see.
The file temp_rt_plot_file_0.txt contains the data set:
*2010/06/24 09:54:32.761 32.84130859375000 32.21429443359375 *
*2010/06/24 09:54:33.763 35.84130859375000 31.90078735351562 *
*2010/06/24 09:54:34.762 37.84130859375000 32.21429443359375 *
*2010/06/24 09:54:35.762 39.84130859375000 31.90078735351562 *
*2010/06/24 09:54:36.761 31.84130859375000 31.90078735351562 *
*2010/06/24 09:54:37.760 33.84130859375000 31.58731079101562 *
*2010/06/24 09:54:37.768 34.84130859375000 31.58731079101562 *

The file tst_tmpp_kst_script.js contains a very simple version of the java
script I use.
*// grab the window*
*var w = Kst.windows[0];*
*
*
*// add a plot to the window*
*var p = new Plot(w);*
*
*
*// create new (editable) vectors.*
*// these could also be loaded from files.*
*//var v1 = new Vector(); var v2 = new Vector(); var v3 = new Vector();*
*
*
*var s = new DataSource("temp_rt_plot_file_0.txt");//specify a data source
file system. See the DataSource Class for details*
*
*
*s.setConfiguration("commentindicators","#")*
*
*
*v1 = new DataVector(s,"1");//construct a new vector v and set its value
from field 1 of the source file*
*v1.tagName = "vector1"; //give the vector a name in the Data Manager*
*
*
*v2 = new DataVector(s,"2");//construct a new vector v and set its value
from field 1 of the source file*
*v2.tagName = "vector2"; //give the vector a name in the Data Manager*
*
*
*v3 = new DataVector(s,"3");//construct a new vector v and set its value
from field 1 of the source file*
*v3.tagName = "vector3"; //give the vector a name in the Data Manager*
*
*
*c = new Curve(v3,v2); // to construct a new curve using xv and yv*
*c.tagName = "v3 vs v2"; //define the name for the curve in the data manager
*
*
*
*// using the append method in the CurveCollection Class to show the curve
in plot*
*p.curves.append(c);*
*
*
*// label the x-axis of our plot*
*p.xAxis.label = "Time (s)";*
*
*
*p.xAxis.interpretation.input = 0;*
*p.xAxis.interpretation.output = 0; //  the ?time? vector needs to be shown
in*
*//the format: DD/MM/YY HH:MM:SS.*
*p.xAxis.interpretation.active = true; //Active the interpretation*

If I load the javascript, then I can see 3 data vectors as expected. The
first one contains all 0's, the second all 9's, the third contains the
correct values.

What I would want is to have only 2 data vectors, the date and time in 1,
the data in 2. Does anyone know how I can achieve this?

All help is most welcome!

Thank you,

Stijn



2010/7/2 <kst-request at kde.org>

> Send Kst mailing list submissions to
>        kst at kde.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
>        https://mail.kde.org/mailman/listinfo/kst
> or, via email, send a message with subject or body 'help' to
>        kst-request at kde.org
>
> You can reach the person managing the list at
>        kst-owner at kde.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Kst digest..."
>
>
> Today's Topics:
>
>   1. Problem with ASCII containing Date/Time (Stijn Ilsen)
>   2. Re: Problem with ASCII containing Date/Time (Andrew Walker)
>   3. Re: Problem with ASCII containing Date/Time (Brisset, Nicolas)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Thu, 1 Jul 2010 15:36:44 +0200
> From: Stijn Ilsen <stijn.ilsen at googlemail.com>
> Subject: [Kst] Problem with ASCII containing Date/Time
> To: kst at kde.org
> Message-ID:
>        <AANLkTinzprPcSxtuIi11FRcXzunPWFdauxcwZ9tzSMhj at mail.gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Hi,
>
> I have a very simple problem question on which i have been searching the
> internet, the kst handbook, etc...
> I am using kst 1.9 and I cannot get it to make a plot of the attached file.
> The format is:
>
> YYYY/MM/DD HH:MM:SS.ms PARAMETER1 PARAMETER2 PARAMETER3
>
> If I use the Data Wizard to load the file, and afterwards look at the
> vectors loaded into the data manager, then the first vector contains 2010,
> all the rest is empty.
> What am I doing wrong, can I use a js with the correct settings for the
> files I'm using?
>
> Thank you very much!
>
> Kind Regards,
>
> Stijn
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> http://mail.kde.org/pipermail/kst/attachments/20100701/c19f795e/attachment.html
>
> ------------------------------
>
> Message: 2
> Date: Thu, 1 Jul 2010 08:43:25 -0700
> From: "Andrew Walker" <arwalker at sumusltd.com>
> Subject: Re: [Kst] Problem with ASCII containing Date/Time
> To: <kst at kde.org>
> Message-ID: <5960C696A4894E5BBC4B27424A29119D at pisces>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Hi Stijn,
>
> By default the "/" character is used as a comment marker, so everything
> that appears after that on a line is simply discarded.
>
> To change this you can start the Data Wizard, select you data source, and
> then click on Configure.
> Then in the "Configure Data Source Dialog" simply delete the "/" character
> from the "Comment indicators" field and hit OK.
>
>  If you're working from javaScript then you can do something like:
> ds.setConfiguration("commentindicators", "#")
>
> Hope that helps,
>
> Andrew
>  ----- Original Message -----
>  From: Stijn Ilsen
>  To: kst at kde.org
>  Sent: Thursday, July 01, 2010 6:36 AM
>  Subject: [Kst] Problem with ASCII containing Date/Time
>
>
>  Hi,
>
>
>  I have a very simple problem question on which i have been searching the
> internet, the kst handbook, etc...
>  I am using kst 1.9 and I cannot get it to make a plot of the attached
> file.
>  The format is:
>
>
>  YYYY/MM/DD HH:MM:SS.ms PARAMETER1 PARAMETER2 PARAMETER3
>
>
>  If I use the Data Wizard to load the file, and afterwards look at the
> vectors loaded into the data manager, then the first vector contains 2010,
> all the rest is empty.
>  What am I doing wrong, can I use a js with the correct settings for the
> files I'm using?
>
>
>  Thank you very much!
>
>
>  Kind Regards,
>
>
>  Stijn
>
>
>
> ------------------------------------------------------------------------------
>
>
>  _______________________________________________
>  Kst mailing list
>  Kst at kde.org
>  https://mail.kde.org/mailman/listinfo/kst
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> http://mail.kde.org/pipermail/kst/attachments/20100701/a4395ba1/attachment-0001.htm
>
> ------------------------------
>
> Message: 3
> Date: Thu, 1 Jul 2010 18:01:05 +0200
> From: "Brisset, Nicolas" <Nicolas.Brisset at eurocopter.com>
> Subject: Re: [Kst] Problem with ASCII containing Date/Time
> To: <kst at kde.org>
> Message-ID:
>        <5FB77C9EB8044848B6CBFCACE17100630E590237 at sma2900.cr.eurocopter.corp
> >
> Content-Type: text/plain; charset="us-ascii"
>
> Hi,
>
>
>
> I personally don't use the "interpret as time" feature (plot dialog,
> X-axis properties) but my understanding is that currently kst will
> always read numbers from the file, but can as an option interpret them
> as time data and display them nicely formatted in the axis labels if you
> tell it what format/conversion to use.
>
> In other words, if your first column contained the number of ms since
> Jan. 1st 1970 (or whatever the Unix time reference is) it would probably
> be possible to have nice time-based curves. But for now reading a number
> from YYYY/MM/DD will stop  at the / and hence always give 2010.
>
> I think it would be a nice feature to be able to read in
> string-formatted times and use them for plots. We could add options for
> that in the UI (like one or two columns to use for date and time), and
> when reading use Qt classes to convert that to a numeric format that we
> can then convert back to date upon display, as currently possible. I'd
> suggest creating a wishlist for that in bugzilla...
>
> As I'm not familiar with the feature, maybe someone else can add to or
> correct my statements.
>
> In the meantime I fear the only option for you is to find a way (awk,
> ruby, python, ...) to convert the first columns to numbers which mean
> something that kst can then interpret.
>
>
>
> Nicolas
>
>
>
> ________________________________
>
> Von: Stijn Ilsen [mailto:stijn.ilsen at googlemail.com]
> Gesendet: Donnerstag, 1. Juli 2010 15:37
> An: kst at kde.org
> Betreff: [Kst] Problem with ASCII containing Date/Time
>
>
>
> Hi,
>
>
>
> I have a very simple problem question on which i have been searching the
> internet, the kst handbook, etc...
>
> I am using kst 1.9 and I cannot get it to make a plot of the attached
> file.
>
> The format is:
>
>
>
> YYYY/MM/DD HH:MM:SS.ms PARAMETER1 PARAMETER2 PARAMETER3
>
>
>
> If I use the Data Wizard to load the file, and afterwards look at the
> vectors loaded into the data manager, then the first vector contains
> 2010, all the rest is empty.
>
> What am I doing wrong, can I use a js with the correct settings for the
> files I'm using?
>
>
>
> Thank you very much!
>
>
>
> Kind Regards,
>
>
>
> Stijn
>
>
>
> Eurocopter Deutschland GmbH
> Sitz der Gesellschaft/Registered Office: Donauwoerth
> Registergericht/Registration Court: Amtsgericht Augsburg HRB 16508
> Vorsitzender des Aufsichtsrates/Chairman of the Supervisory Board: Dr. Lutz
> Bertling
> Geschaeftsfuehrung/Board of Management:
> Dr. Wolfgang Schoder, Vorsitzender/CEO; Friedrich-Wilhelm Hormel; Ralf
> Barnscheidt
>
> CONFIDENTIALITY NOTICE
>
> This communication and the information it contains is intended for the
> addressee(s) named above and for no other persons or organizations. It is
> confidential and may be legally privileged and protected by law. The
> unauthorized use, copying or disclosure of this communication or any part of
> it is prohibited and may be unlawful.
> If you have received this communication in error, kindly notify us by
> return e-mail and discard and/or delete the communication. Thank you very
> much.
> It is possible for e-mails to be intercepted or affected by viruses. Whilst
> we maintain virus checks on our e-mails, we accept no liability for viruses
> or other material which might be introduced with this message.
>
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> http://mail.kde.org/pipermail/kst/attachments/20100701/ad474026/attachment-0001.htm
>
> ------------------------------
>
> _______________________________________________
> Kst mailing list
> Kst at kde.org
> https://mail.kde.org/mailman/listinfo/kst
>
>
> End of Kst Digest, Vol 87, Issue 1
> **********************************
>

--000e0cd29cfa096e6c048a65833f
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

Hi all,<div><br></div><div>Thank you for the replies.</div><div>From the an=
swer from Andrew I understand that it is perfectly possible to read data fi=
le with a formatted timestamp, from Nicolas it might be a feature for the f=
uture.</div>
<div><br></div><div>I have tried to change the comment indicator to remove =
/.</div><div>I&#39;m however afraid that this did not solve the problem. Wh=
en I load the file, I still get a vector with all 2010&#39;s. It does solve=
 the interpretation of the next columns (actual values).</div>
<div><br></div><div>I have made an example to show what I see.</div><div>Th=
e file=A0temp_rt_plot_file_0.txt contains the data set:</div><div><div><i>2=
010/06/24 09:54:32.761 32.84130859375000 32.21429443359375=A0</i></div><div=
>
<i>2010/06/24 09:54:33.763 35.84130859375000 31.90078735351562=A0</i></div>=
<div><i>2010/06/24 09:54:34.762 37.84130859375000 32.21429443359375=A0</i><=
/div><div><i>2010/06/24 09:54:35.762 39.84130859375000 31.90078735351562=A0=
</i></div>
<div><i>2010/06/24 09:54:36.761 31.84130859375000 31.90078735351562=A0</i><=
/div><div><i>2010/06/24 09:54:37.760 33.84130859375000 31.58731079101562=A0=
</i></div><div><i>2010/06/24 09:54:37.768 34.84130859375000 31.587310791015=
62=A0</i></div>
</div><div><br></div><div>The file=A0tst_tmpp_kst_script.js contains a very=
 simple version of the java script I use.=A0</div><div><div><i>// grab the =
window</i></div><div><i>var w =3D Kst.windows[0];</i></div><div><i><br></i>=
</div>
<div><i>// add a plot to the window</i></div><div><i>var p =3D new Plot(w);=
</i></div><div><i><br></i></div><div><i>// create new (editable) vectors.</=
i></div><div><i>// these could also be loaded from files.</i></div><div><i>=
//var v1 =3D new Vector(); var v2 =3D new Vector(); var v3 =3D new Vector()=
;</i></div>
<div><i><br></i></div><div><i>var s =3D new DataSource(&quot;temp_rt_plot_f=
ile_0.txt&quot;);//specify a data source file system. See the DataSource Cl=
ass for details</i></div><div><i><br></i></div><div><i>s.setConfiguration(&=
quot;commentindicators&quot;,&quot;#&quot;)</i></div>
<div><i><br></i></div><div><i>v1 =3D new DataVector(s,&quot;1&quot;);//cons=
truct a new vector v and set its value from field 1 of the source file</i><=
/div><div><i>v1.tagName =3D &quot;vector1&quot;; //give the vector a name i=
n the Data Manager</i></div>
<div><i><br></i></div><div><i>v2 =3D new DataVector(s,&quot;2&quot;);//cons=
truct a new vector v and set its value from field 1 of the source file</i><=
/div><div><i>v2.tagName =3D &quot;vector2&quot;; //give the vector a name i=
n the Data Manager</i></div>
<div><i><br></i></div><div><i>v3 =3D new DataVector(s,&quot;3&quot;);//cons=
truct a new vector v and set its value from field 1 of the source file</i><=
/div><div><i>v3.tagName =3D &quot;vector3&quot;; //give the vector a name i=
n the Data Manager</i></div>
<div><i><br></i></div><div><i>c =3D new Curve(v3,v2); // to construct a new=
 curve using xv and yv</i></div><div><i>c.tagName =3D &quot;v3 vs v2&quot;;=
 //define the name for the curve in the data manager</i></div><div><i><br><=
/i></div>
<div><i>// using the append method in the CurveCollection Class to show the=
 curve in plot</i></div><div><i>p.curves.append(c);</i></div><div><i><br></=
i></div><div><i>// label the x-axis of our plot</i></div><div><i>p.xAxis.la=
bel =3D &quot;Time (s)&quot;;</i></div>
<div><i><br></i></div><div><i>p.xAxis.interpretation.input =3D 0;</i></div>=
<div><i>p.xAxis.interpretation.output =3D 0; // =A0the ?time? vector needs =
to be shown in</i></div><div><i>//the format: DD/MM/YY HH:MM:SS.</i></div><=
div>
<i>p.xAxis.interpretation.active =3D true; //Active the interpretation</i><=
/div></div><div><br></div><div>If I load the javascript, then I can see 3 d=
ata vectors as expected. The first one contains all 0&#39;s, the second all=
 9&#39;s, the third contains the correct values.</div>
<div><br></div><div>What I would want is to have only 2 data vectors, the d=
ate and time in 1, the data in 2. Does anyone know how I can achieve this?<=
/div><div><br></div><div>All help is most welcome!</div><div><br></div>
<div>Thank you,</div><div><br></div><div>Stijn</div><div><br></div><div><br=
><br><div class=3D"gmail_quote">2010/7/2  <span dir=3D"ltr">&lt;<a href=3D"=
mailto:kst-request at kde.org">kst-request at kde.org</a>&gt;</span><br><blockquo=
te class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1px #ccc so=
lid;padding-left:1ex;">
Send Kst mailing list submissions to<br>
 =A0 =A0 =A0 =A0<a href=3D"mailto:kst at kde.org">kst at kde.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
 =A0 =A0 =A0 =A0<a href=3D"https://mail.kde.org/mailman/listinfo/kst" targe=
t=3D"_blank">https://mail.kde.org/mailman/listinfo/kst</a><br>
or, via email, send a message with subject or body &#39;help&#39; to<br>
 =A0 =A0 =A0 =A0<a href=3D"mailto:kst-request at kde.org">kst-request at kde.org<=
/a><br>
<br>
You can reach the person managing the list at<br>
 =A0 =A0 =A0 =A0<a href=3D"mailto:kst-owner at kde.org">kst-owner at kde.org</a><=
br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than &quot;Re: Contents of Kst digest...&quot;<br>
<br>
<br>
Today&#39;s Topics:<br>
<br>
 =A0 1. Problem with ASCII containing Date/Time (Stijn Ilsen)<br>
 =A0 2. Re: Problem with ASCII containing Date/Time (Andrew Walker)<br>
 =A0 3. Re: Problem with ASCII containing Date/Time (Brisset, Nicolas)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Thu, 1 Jul 2010 15:36:44 +0200<br>
From: Stijn Ilsen &lt;<a href=3D"mailto:stijn.ilsen at googlemail.com">stijn.i=
lsen at googlemail.com</a>&gt;<br>
Subject: [Kst] Problem with ASCII containing Date/Time<br>
To: <a href=3D"mailto:kst at kde.org">kst at kde.org</a><br>
Message-ID:<br>
 =A0 =A0 =A0 =A0&lt;<a href=3D"mailto:AANLkTinzprPcSxtuIi11FRcXzunPWFdauxcw=
Z9tzSMhj at mail.gmail.com">AANLkTinzprPcSxtuIi11FRcXzunPWFdauxcwZ9tzSMhj at mail=
.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=3D&quot;iso-8859-1&quot;<br>
<br>
Hi,<br>
<br>
I have a very simple problem question on which i have been searching the<br=
>
internet, the kst handbook, etc...<br>
I am using kst 1.9 and I cannot get it to make a plot of the attached file.=
<br>
The format is:<br>
<br>
YYYY/MM/DD HH:MM:SS.ms PARAMETER1 PARAMETER2 PARAMETER3<br>
<br>
If I use the Data Wizard to load the file, and afterwards look at the<br>
vectors loaded into the data manager, then the first vector contains 2010,<=
br>
all the rest is empty.<br>
What am I doing wrong, can I use a js with the correct settings for the<br>
files I&#39;m using?<br>
<br>
Thank you very much!<br>
<br>
Kind Regards,<br>
<br>
Stijn<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href=3D"http://mail.kde.org/pipermail/kst/attachments/20100701/c19f=
795e/attachment.html" target=3D"_blank">http://mail.kde.org/pipermail/kst/a=
ttachments/20100701/c19f795e/attachment.html</a><br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Thu, 1 Jul 2010 08:43:25 -0700<br>
From: &quot;Andrew Walker&quot; &lt;<a href=3D"mailto:arwalker at sumusltd.com=
">arwalker at sumusltd.com</a>&gt;<br>
Subject: Re: [Kst] Problem with ASCII containing Date/Time<br>
To: &lt;<a href=3D"mailto:kst at kde.org">kst at kde.org</a>&gt;<br>
Message-ID: &lt;5960C696A4894E5BBC4B27424A29119D at pisces&gt;<br>
Content-Type: text/plain; charset=3D&quot;iso-8859-1&quot;<br>
<br>
Hi Stijn,<br>
<br>
By default the &quot;/&quot; character is used as a comment marker, so ever=
ything that appears after that on a line is simply discarded.<br>
<br>
To change this you can start the Data Wizard, select you data source, and t=
hen click on Configure.<br>
Then in the &quot;Configure Data Source Dialog&quot; simply delete the &quo=
t;/&quot; character from the &quot;Comment indicators&quot; field and hit O=
K.<br>
<br>
=A0If you&#39;re working from javaScript then you can do something like:<br=
>
ds.setConfiguration(&quot;commentindicators&quot;, &quot;#&quot;)<br>
<br>
Hope that helps,<br>
<br>
Andrew<br>
 =A0----- Original Message -----<br>
 =A0From: Stijn Ilsen<br>
 =A0To: <a href=3D"mailto:kst at kde.org">kst at kde.org</a><br>
 =A0Sent: Thursday, July 01, 2010 6:36 AM<br>
 =A0Subject: [Kst] Problem with ASCII containing Date/Time<br>
<br>
<br>
 =A0Hi,<br>
<br>
<br>
 =A0I have a very simple problem question on which i have been searching th=
e internet, the kst handbook, etc...<br>
 =A0I am using kst 1.9 and I cannot get it to make a plot of the attached f=
ile.<br>
 =A0The format is:<br>
<br>
<br>
 =A0YYYY/MM/DD HH:MM:SS.ms PARAMETER1 PARAMETER2 PARAMETER3<br>
<br>
<br>
 =A0If I use the Data Wizard to load the file, and afterwards look at the v=
ectors loaded into the data manager, then the first vector contains 2010, a=
ll the rest is empty.<br>
 =A0What am I doing wrong, can I use a js with the correct settings for the=
 files I&#39;m using?<br>
<br>
<br>
 =A0Thank you very much!<br>
<br>
<br>
 =A0Kind Regards,<br>
<br>
<br>
 =A0Stijn<br>
<br>
<br>
---------------------------------------------------------------------------=
---<br>
<br>
<br>
 =A0_______________________________________________<br>
 =A0Kst mailing list<br>
 =A0<a href=3D"mailto:Kst at kde.org">Kst at kde.org</a><br>
 =A0<a href=3D"https://mail.kde.org/mailman/listinfo/kst" target=3D"_blank"=
>https://mail.kde.org/mailman/listinfo/kst</a><br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href=3D"http://mail.kde.org/pipermail/kst/attachments/20100701/a439=
5ba1/attachment-0001.htm" target=3D"_blank">http://mail.kde.org/pipermail/k=
st/attachments/20100701/a4395ba1/attachment-0001.htm</a><br>
<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Thu, 1 Jul 2010 18:01:05 +0200<br>
From: &quot;Brisset, Nicolas&quot; &lt;<a href=3D"mailto:Nicolas.Brisset at eu=
rocopter.com">Nicolas.Brisset at eurocopter.com</a>&gt;<br>
Subject: Re: [Kst] Problem with ASCII containing Date/Time<br>
To: &lt;<a href=3D"mailto:kst at kde.org">kst at kde.org</a>&gt;<br>
Message-ID:<br>
 =A0 =A0 =A0 =A0&lt;5FB77C9EB8044848B6CBFCACE17100630E590237 at sma2900.cr.eur=
ocopter.corp&gt;<br>
Content-Type: text/plain; charset=3D&quot;us-ascii&quot;<br>
<br>
Hi,<br>
<br>
<br>
<br>
I personally don&#39;t use the &quot;interpret as time&quot; feature (plot =
dialog,<br>
X-axis properties) but my understanding is that currently kst will<br>
always read numbers from the file, but can as an option interpret them<br>
as time data and display them nicely formatted in the axis labels if you<br=
>
tell it what format/conversion to use.<br>
<br>
In other words, if your first column contained the number of ms since<br>
Jan. 1st 1970 (or whatever the Unix time reference is) it would probably<br=
>
be possible to have nice time-based curves. But for now reading a number<br=
>
from YYYY/MM/DD will stop =A0at the / and hence always give 2010.<br>
<br>
I think it would be a nice feature to be able to read in<br>
string-formatted times and use them for plots. We could add options for<br>
that in the UI (like one or two columns to use for date and time), and<br>
when reading use Qt classes to convert that to a numeric format that we<br>
can then convert back to date upon display, as currently possible. I&#39;d<=
br>
suggest creating a wishlist for that in bugzilla...<br>
<br>
As I&#39;m not familiar with the feature, maybe someone else can add to or<=
br>
correct my statements.<br>
<br>
In the meantime I fear the only option for you is to find a way (awk,<br>
ruby, python, ...) to convert the first columns to numbers which mean<br>
something that kst can then interpret.<br>
<br>
<br>
<br>
Nicolas<br>
<br>
<br>
<br>
________________________________<br>
<br>
Von: Stijn Ilsen [mailto:<a href=3D"mailto:stijn.ilsen at googlemail.com">stij=
n.ilsen at googlemail.com</a>]<br>
Gesendet: Donnerstag, 1. Juli 2010 15:37<br>
An: <a href=3D"mailto:kst at kde.org">kst at kde.org</a><br>
Betreff: [Kst] Problem with ASCII containing Date/Time<br>
<br>
<br>
<br>
Hi,<br>
<br>
<br>
<br>
I have a very simple problem question on which i have been searching the<br=
>
internet, the kst handbook, etc...<br>
<br>
I am using kst 1.9 and I cannot get it to make a plot of the attached<br>
file.<br>
<br>
The format is:<br>
<br>
<br>
<br>
YYYY/MM/DD HH:MM:SS.ms PARAMETER1 PARAMETER2 PARAMETER3<br>
<br>
<br>
<br>
If I use the Data Wizard to load the file, and afterwards look at the<br>
vectors loaded into the data manager, then the first vector contains<br>
2010, all the rest is empty.<br>
<br>
What am I doing wrong, can I use a js with the correct settings for the<br>
files I&#39;m using?<br>
<br>
<br>
<br>
Thank you very much!<br>
<br>
<br>
<br>
Kind Regards,<br>
<br>
<br>
<br>
Stijn<br>
<br>
<br>
<br>
Eurocopter Deutschland GmbH<br>
Sitz der Gesellschaft/Registered Office: Donauwoerth<br>
Registergericht/Registration Court: Amtsgericht Augsburg HRB 16508<br>
Vorsitzender des Aufsichtsrates/Chairman of the Supervisory Board: Dr. Lutz=
 Bertling<br>
Geschaeftsfuehrung/Board of Management:<br>
Dr. Wolfgang Schoder, Vorsitzender/CEO; Friedrich-Wilhelm Hormel; Ralf Barn=
scheidt<br>
<br>
CONFIDENTIALITY NOTICE<br>
<br>
This communication and the information it contains is intended for the addr=
essee(s) named above and for no other persons or organizations. It is confi=
dential and may be legally privileged and protected by law. The unauthorize=
d use, copying or disclosure of this communication or any part of it is pro=
hibited and may be unlawful.<br>

If you have received this communication in error, kindly notify us by retur=
n e-mail and discard and/or delete the communication. Thank you very much.<=
br>
It is possible for e-mails to be intercepted or affected by viruses. Whilst=
 we maintain virus checks on our e-mails, we accept no liability for viruse=
s or other material which might be introduced with this message.<br>
<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href=3D"http://mail.kde.org/pipermail/kst/attachments/20100701/ad47=
4026/attachment-0001.htm" target=3D"_blank">http://mail.kde.org/pipermail/k=
st/attachments/20100701/ad474026/attachment-0001.htm</a><br>
<br>
------------------------------<br>
<br>
_______________________________________________<br>
Kst mailing list<br>
<a href=3D"mailto:Kst at kde.org">Kst at kde.org</a><br>
<a href=3D"https://mail.kde.org/mailman/listinfo/kst" target=3D"_blank">htt=
ps://mail.kde.org/mailman/listinfo/kst</a><br>
<br>
<br>
End of Kst Digest, Vol 87, Issue 1<br>
**********************************<br>
</blockquote></div><br></div>

--000e0cd29cfa096e6c048a65833f--


More information about the Kst mailing list