JiscMail Logo
Email discussion lists for the UK Education and Research communities

Help for STARDEV Archives


STARDEV Archives

STARDEV Archives


STARDEV@JISCMAIL.AC.UK


View:

Message:

[

First

|

Previous

|

Next

|

Last

]

By Topic:

[

First

|

Previous

|

Next

|

Last

]

By Author:

[

First

|

Previous

|

Next

|

Last

]

Font:

Proportional Font

LISTSERV Archives

LISTSERV Archives

STARDEV Home

STARDEV Home

STARDEV  December 2005

STARDEV December 2005

Options

Subscribe or Unsubscribe

Subscribe or Unsubscribe

Log In

Log In

Get Password

Get Password

Subject:

sla_DAT

From:

Patrick Wallace <[log in to unmask]>

Reply-To:

Starlink development <[log in to unmask]>

Date:

Fri, 16 Dec 2005 11:50:57 +0000

Content-Type:

MULTIPART/MIXED

Parts/Attachments:

Parts/Attachments

TEXT/PLAIN (18 lines) , dat.f (1 lines)

A SLALIB user reports that the version of sla_DAT which he downloaded
from the software store has the 1999 leap second but not the 2006 one.   I

I though SLALIB had been frozen after this point.  Am I mistaken?

The latest version of dat.f is attached, in case there is provision for
including it in the collection.  I shall also shortly have a revised
SUN/67 if anyone is interested.


Patrick Wallace
____________________________________________________________________________
SSTD/HMNAO                                   Internet:  [log in to unmask]
Rutherford Appleton Laboratory                    Tel:       +44-1235-445372
Chilton, Didcot,                                  Fax:       +44-1235-446362
Oxon OX11 0QX, UK
____________________________________________________________________________


DOUBLE PRECISION FUNCTION sla_DAT (UTC) *+ * - - - - * D A T * - - - - * * Increment to be applied to Coordinated Universal Time UTC to give * International Atomic Time TAI (double precision) * * Given: * UTC d UTC date as a modified JD (JD-2400000.5) * * Result: TAI-UTC in seconds * * Notes: * * 1 The UTC is specified to be a date rather than a time to indicate * that care needs to be taken not to specify an instant which lies * within a leap second. Though in most cases UTC can include the * fractional part, correct behaviour on the day of a leap second * can only be guaranteed up to the end of the second 23:59:59. * * 2 For epochs from 1961 January 1 onwards, the expressions from the * file ftp://maia.usno.navy.mil/ser7/tai-utc.dat are used. * * 3 The 5ms time step at 1961 January 1 is taken from 2.58.1 (p87) of * the 1992 Explanatory Supplement. * * 4 UTC began at 1960 January 1.0 (JD 2436934.5) and it is improper * to call the routine with an earlier epoch. However, if this * is attempted, the TAI-UTC expression for the year 1960 is used. * * * :-----------------------------------------: * : : * : IMPORTANT : * : : * : This routine must be updated on each : * : occasion that a leap second is : * : announced : * : : * : Latest leap second: 2006 January 1 : * : : * :-----------------------------------------: * * Last revision: 11 July 2005 * * Copyright P.T.Wallace. All rights reserved. * * License: * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program (see SLA_CONDITIONS); if not, write to the * Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307 USA * *- IMPLICIT NONE DOUBLE PRECISION UTC DOUBLE PRECISION DT IF (.FALSE.) THEN * - - - - - - - - - - - - - - - - - - - - - - * * Add new code here on each occasion that a * * leap second is announced, and update the * * preamble comments appropriately. * * - - - - - - - - - - - - - - - - - - - - - - * * 2006 January 1 ELSE IF (UTC.GE.53736D0) THEN DT=33D0 * 1999 January 1 ELSE IF (UTC.GE.51179D0) THEN DT=32D0 * 1997 July 1 ELSE IF (UTC.GE.50630D0) THEN DT=31D0 * 1996 January 1 ELSE IF (UTC.GE.50083D0) THEN DT=30D0 * 1994 July 1 ELSE IF (UTC.GE.49534D0) THEN DT=29D0 * 1993 July 1 ELSE IF (UTC.GE.49169D0) THEN DT=28D0 * 1992 July 1 ELSE IF (UTC.GE.48804D0) THEN DT=27D0 * 1991 January 1 ELSE IF (UTC.GE.48257D0) THEN DT=26D0 * 1990 January 1 ELSE IF (UTC.GE.47892D0) THEN DT=25D0 * 1988 January 1 ELSE IF (UTC.GE.47161D0) THEN DT=24D0 * 1985 July 1 ELSE IF (UTC.GE.46247D0) THEN DT=23D0 * 1983 July 1 ELSE IF (UTC.GE.45516D0) THEN DT=22D0 * 1982 July 1 ELSE IF (UTC.GE.45151D0) THEN DT=21D0 * 1981 July 1 ELSE IF (UTC.GE.44786D0) THEN DT=20D0 * 1980 January 1 ELSE IF (UTC.GE.44239D0) THEN DT=19D0 * 1979 January 1 ELSE IF (UTC.GE.43874D0) THEN DT=18D0 * 1978 January 1 ELSE IF (UTC.GE.43509D0) THEN DT=17D0 * 1977 January 1 ELSE IF (UTC.GE.43144D0) THEN DT=16D0 * 1976 January 1 ELSE IF (UTC.GE.42778D0) THEN DT=15D0 * 1975 January 1 ELSE IF (UTC.GE.42413D0) THEN DT=14D0 * 1974 January 1 ELSE IF (UTC.GE.42048D0) THEN DT=13D0 * 1973 January 1 ELSE IF (UTC.GE.41683D0) THEN DT=12D0 * 1972 July 1 ELSE IF (UTC.GE.41499D0) THEN DT=11D0 * 1972 January 1 ELSE IF (UTC.GE.41317D0) THEN DT=10D0 * 1968 February 1 ELSE IF (UTC.GE.39887D0) THEN DT=4.2131700D0+(UTC-39126D0)*0.002592D0 * 1966 January 1 ELSE IF (UTC.GE.39126D0) THEN DT=4.3131700D0+(UTC-39126D0)*0.002592D0 * 1965 September 1 ELSE IF (UTC.GE.39004D0) THEN DT=3.8401300D0+(UTC-38761D0)*0.001296D0 * 1965 July 1 ELSE IF (UTC.GE.38942D0) THEN DT=3.7401300D0+(UTC-38761D0)*0.001296D0 * 1965 March 1 ELSE IF (UTC.GE.38820D0) THEN DT=3.6401300D0+(UTC-38761D0)*0.001296D0 * 1965 January 1 ELSE IF (UTC.GE.38761D0) THEN DT=3.5401300D0+(UTC-38761D0)*0.001296D0 * 1964 September 1 ELSE IF (UTC.GE.38639D0) THEN DT=3.4401300D0+(UTC-38761D0)*0.001296D0 * 1964 April 1 ELSE IF (UTC.GE.38486D0) THEN DT=3.3401300D0+(UTC-38761D0)*0.001296D0 * 1964 January 1 ELSE IF (UTC.GE.38395D0) THEN DT=3.2401300D0+(UTC-38761D0)*0.001296D0 * 1963 November 1 ELSE IF (UTC.GE.38334D0) THEN DT=1.9458580D0+(UTC-37665D0)*0.0011232D0 * 1962 January 1 ELSE IF (UTC.GE.37665D0) THEN DT=1.8458580D0+(UTC-37665D0)*0.0011232D0 * 1961 August 1 ELSE IF (UTC.GE.37512D0) THEN DT=1.3728180D0+(UTC-37300D0)*0.001296D0 * 1961 January 1 ELSE IF (UTC.GE.37300D0) THEN DT=1.4228180D0+(UTC-37300D0)*0.001296D0 * Before that ELSE DT=1.4178180D0+(UTC-37300D0)*0.001296D0 END IF sla_DAT=DT END

Top of Message | Previous Page | Permalink

JiscMail Tools


RSS Feeds and Sharing


Advanced Options


Archives

December 2023
January 2023
December 2022
July 2022
June 2022
April 2022
March 2022
December 2021
October 2021
July 2021
April 2021
January 2021
October 2020
September 2020
August 2020
May 2020
November 2019
October 2019
July 2019
June 2019
February 2019
January 2019
December 2018
November 2018
August 2018
July 2018
May 2018
April 2018
March 2018
February 2018
December 2017
October 2017
August 2017
July 2017
May 2017
April 2017
February 2017
January 2017
December 2016
November 2016
October 2016
September 2016
August 2016
July 2016
May 2016
April 2016
March 2016
February 2016
January 2016
December 2015
October 2015
September 2015
August 2015
April 2015
March 2015
February 2015
January 2015
December 2014
November 2014
October 2014
September 2014
August 2014
July 2014
June 2014
May 2014
April 2014
March 2014
February 2014
January 2014
December 2013
November 2013
October 2013
September 2013
August 2013
July 2013
June 2013
May 2013
April 2013
March 2013
February 2013
January 2013
December 2012
November 2012
October 2012
September 2012
August 2012
July 2012
June 2012
May 2012
April 2012
March 2012
February 2012
January 2012
December 2011
November 2011
October 2011
September 2011
August 2011
July 2011
June 2011
May 2011
April 2011
March 2011
February 2011
January 2011
December 2010
November 2010
October 2010
September 2010
August 2010
July 2010
June 2010
May 2010
April 2010
March 2010
February 2010
January 2010
December 2009
November 2009
October 2009
September 2009
August 2009
July 2009
June 2009
May 2009
April 2009
March 2009
February 2009
January 2009
December 2008
November 2008
October 2008
September 2008
August 2008
July 2008
June 2008
May 2008
April 2008
March 2008
February 2008
January 2008
December 2007
November 2007
October 2007
September 2007
August 2007
July 2007
June 2007
May 2007
April 2007
March 2007
February 2007
January 2007
December 2006
November 2006
October 2006
September 2006
August 2006
July 2006
June 2006
May 2006
April 2006
March 2006
February 2006
January 2006
December 2005
November 2005
October 2005
September 2005
August 2005
July 2005
June 2005
May 2005
April 2005
March 2005
February 2005
January 2005
December 2004
November 2004
October 2004
September 2004
August 2004
July 2004
June 2004
May 2004
April 2004
March 2004
February 2004
January 2004
2004
April 2003
2003


JiscMail is a Jisc service.

View our service policies at https://www.jiscmail.ac.uk/policyandsecurity/ and Jisc's privacy policy at https://www.jisc.ac.uk/website/privacy-notice

For help and support help@jisc.ac.uk

Secured by F-Secure Anti-Virus CataList Email List Search Powered by the LISTSERV Email List Manager