I have a dateTime variable, and I want to convert it to a decimal value of epoch. How can this be done?

I tried using:

seconds-from-duration($time, xs:dateTime('1970-01-01T00:00:00'))

but it just returns 0.

Please advice. Thanks.

link|improve this question

How is "epoch" defined? – Dimitre Novatchev Aug 12 '10 at 13:04
The answer to your question is: 0. seconds-from-duration() just extracts the value of the seconds component from the supplied xs:duration. You obviously want to convert the duration to all seconds and then to calculate whatever "epoch" may be. Please, correct your question. – Dimitre Novatchev Aug 12 '10 at 13:10
See the following for a definition of epoch: en.wikipedia.org/wiki/Unix_time. Basically, it's the number of seconds from 1/1/1970 (UTC) – Anna Aug 12 '10 at 13:12
See my answer for the solution. :) +1 for your question. – Dimitre Novatchev Aug 12 '10 at 13:29
feedback

1 Answer

up vote 5 down vote accepted

This transformation:

<xsl:stylesheet version="2.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xsl:output method="text"/>

 <xsl:template match="/">
   <xsl:sequence select="current-dateTime()"/>

   <xsl:sequence select=
   "( current-dateTime() - xs:dateTime('1970-01-01T00:00:00') )
    div
     xs:dayTimeDuration('PT1S')
     "/>
 </xsl:template>
</xsl:stylesheet>

when applied on any XML document (not used), produces the wanted result -- the current date-time and its Unix epoch (the number of seconds since 1/1/1970 ):

2010-08-12T06:26:54.273-07:00    1281594414.273
link|improve this answer
This is great! works like magic. Thanks a lot. – Anna Aug 12 '10 at 13:50
+1 for divide by xs:duration (I was extracting each component, so I've deleted the answer). But I keep thinking if time zone is defined for *nix epoch. – user357812 Aug 12 '10 at 13:51
+1 for clear concise answer. Very tidy. – tatlar Oct 12 '11 at 22:15
@tatlar: You are welcome. – Dimitre Novatchev Oct 12 '11 at 23:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.